-
Notifications
You must be signed in to change notification settings - Fork 7
/
composer.json
51 lines (51 loc) · 1.37 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
47
48
49
50
51
{
"name": "joshuaestes/feature-toggle",
"homepage": "https://github.com/JoshuaEstes/FeatureToggle",
"description": "Provides feature toggle functionality",
"keywords": ["feature", "flag", "toggle", "bit", "switch", "flipper", "flip"],
"license": "MIT",
"minimum-stability": "stable",
"authors": [
{
"name": "Contributors",
"homepage": "https://github.com/JoshuaEstes/FeatureToggle/graphs/contributors"
}
],
"support": {
"issues": "https://github.com/JoshuaEstes/FeatureToggle/issues",
"wiki": "http://feature-toggle.readthedocs.org/en/latest"
},
"autoload": {
"psr-0": { "": "src/" }
},
"require": {
"symfony/options-resolver": "~2.6|~3.0",
"doctrine/common": "~2.4",
"doctrine/collections": "~1.3"
},
"require-dev": {
"phpunit/phpunit": "~4.8",
"phing/phing": "~2.15",
"codeclimate/php-test-reporter": "^0.3"
},
"extra": {
"branch-alias": {
"dev-master": "0.5.x-dev",
"dev-1.x": "1.0.x-dev"
}
},
"config": {
"bin-dir": "bin"
},
"archive": {
"exclude": [
"/build",
"/docs",
"/examples",
"/tests",
"/vendor",
"/composer.lock",
"/composer.phar"
]
}
}