-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
31 lines (31 loc) · 1.03 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
{
"name": "wemakecustom/directory-loader-bundle",
"type": "symfony-bundle",
"description": "Symfony DirectoryLoaderBundle to recursively import directories of configuration",
"homepage": "http://github.com/wemakecustom/DirectoryLoaderBundle",
"license": "MIT",
"authors": [
{
"name": "Sébastien Lavoie",
"email": "[email protected]",
"homepage": "http://www.wemakecustom.com"
}
],
"require": {
"php": ">=5.3.2"
},
"suggest": {
"symfony/framework-bundle": "Register the loaders inside Symfony",
"symfony/routing": "Compatible with routing configuration files",
"symfony/dependency-injection": "Compatible with DI configuration files",
"wemakecustom/composer-script-utils": "Interactively configure missing parameters recursively"
},
"autoload": {
"psr-4": { "WMC\\DirectoryLoaderBundle\\": "" }
},
"extra": {
"branch-alias": {
"dev-master": "1.0.x-dev"
}
}
}