-
Notifications
You must be signed in to change notification settings - Fork 54
/
composer.json
40 lines (40 loc) · 1.18 KB
/
composer.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
{
"name": "coresphere/console-bundle",
"description": "This bundle allows you accessing the symfony2 console via your browser",
"keywords": ["console","javascript","symfony"],
"type": "symfony-bundle",
"license": "MIT",
"authors": [
{
"name": "Laszlo Korte",
"email": "[email protected]"
},
{
"name": "Marmus Ullman",
"email": "[email protected]"
}
],
"require": {
"php": "^5.5|^7.0",
"symfony/console": "~2.7|~3.0|~4.0",
"symfony/dependency-injection": "~2.7|~3.0|~4.0",
"symfony/event-dispatcher": "~2.7|~3.0|~4.0",
"symfony/framework-bundle": "~2.7|~3.0|~4.0",
"symfony/http-kernel": "~2.7|~3.0|~4.0"
},
"require-dev": {
"doctrine/doctrine-fixtures-bundle": "^2.2",
"doctrine/doctrine-migrations-bundle": "^1.0",
"phpunit/phpunit": "^4.8",
"symfony/finder": "^2.7|~4.0",
"symfony/templating": "^3.2|~4.0"
},
"autoload": {
"psr-4": {
"CoreSphere\\ConsoleBundle\\": ""
},
"exclude-from-classmap": [
"Tests/"
]
}
}