-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
37 lines (37 loc) · 1.01 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
{
"name": "c33s/symfony-config-manipulator-bundle",
"type": "symfony-bundle",
"description": "Utilities to automatically organize Symfony2 YAML config files",
"homepage": "https://github.com/vworldat/C33sSymfonyConfigManipulatorBundle",
"license": [
"MIT"
],
"authors": [
{
"name": "David",
"email": "[email protected]",
"homepage": "http://web-emerge.com/"
}
],
"autoload": {
"psr-4": {
"C33s\\SymfonyConfigManipulatorBundle\\": ""
}
},
"minimum-stability": "stable",
"require": {
"php": ">=5.4.0",
"symfony/framework-bundle": "~2.6|~3.0",
"symfony/yaml": "~2.2|~3.0",
"psr/log": "~1.0"
},
"require-dev": {
"phpunit/phpunit": "~4.8",
"fabpot/php-cs-fixer": "~1.10"
},
"extra": {
"c33s-building-blocks": [
"C33s\\SymfonyConfigManipulatorBundle\\BuildingBlock\\ConfigManipulatorBuildingBlock"
]
}
}