-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
38 lines (38 loc) · 1.07 KB
/
composer.json
File metadata and controls
38 lines (38 loc) · 1.07 KB
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
{
"name": "lwiesel/feature-checker-bundle",
"type": "symfony-bundle",
"description": "Enable and disable functional features in Symfony2 applications.",
"keywords": ["feature-checker-bundle", "FeatureCheckerBundle"],
"homepage": "https://github.com/lwiesel/FeatureCheckerBundle",
"license": "MIT",
"authors": [
{
"name": "Laurent Wiesel",
"email": "wiesel.laurent@gmail.com"
}
],
"require": {
"php": ">=5.3.2",
"lwiesel/feature-checker": "~1.1",
"symfony/framework-bundle": "~2.3",
"symfony/twig-bundle": "~2.3",
"doctrine/common": "~2.4"
},
"require-dev": {
"phpspec/phpspec": "~2.1",
"phpunit/phpunit" : "4.*",
"henrikbjorn/phpspec-code-coverage": "~1.0",
"scrutinizer/ocular": "~1.1"
},
"autoload": {
"psr-4": { "LWI\\FeatureCheckerBundle\\": "" }
},
"autoload-dev": {
"psr-4": {
"LWI\\FeatureCheckerBundle\\Test\\": "Tests"
}
},
"config": {
"bin-dir": "bin"
}
}