forked from ps-engineering/OneSkyBundle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
46 lines (46 loc) · 1.1 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
41
42
43
44
45
46
{
"name": "openclassrooms/onesky-bundle",
"description": "One Sky Bundle",
"minimum-stability": "stable",
"license": "MIT",
"type": "symfony-bundle",
"authors": [
{
"name": "Romain Kuzniak",
"email": "[email protected]"
},
{
"name": "OpenClassrooms",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"OpenClassrooms\\Bundle\\OneSkyBundle\\": ""
}
},
"autoload-dev": {
"psr-4": {
"OpenClassrooms\\Bundle\\OneSkyBundle\\Tests\\": "tests/"
}
},
"require": {
"onesky/api-library-php5": "1.*",
"symfony/dependency-injection": "~2.7|~3.0|~4.0|~5.0",
"symfony/console": "~2.7|~3.0|~4.0|~5.0",
"symfony/config": "~2.7|~3.0|~4.0|~5.0",
"symfony/finder": "~2.7|~3.0|~4.0|~5.0",
"symfony/framework-bundle": "~2.7|~3.0|~4.0|~5.0",
"symfony/http-kernel": "~2.7|~3.0|~4.0|~5.0"
},
"require-dev": {
"fabpot/php-cs-fixer": "1.*",
"phpunit/phpunit": "~5.0",
"satooshi/php-coveralls": "1.*"
},
"extra": {
"branch-alias": {
"dev-master": "1.0.x-dev"
}
}
}