forked from qandidate-labs/qandidate-toggle-bundle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
46 lines (46 loc) · 1.42 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": "qandidate/toggle-bundle",
"description": "This Bundle provides the integration with qandidate/toggle. It provides the services and configuration you need to implement feature toggles in your Symfony application.",
"type": "symfony-bundle",
"license": "MIT",
"authors": [
{
"name": "Willem-Jan",
"email": "wjzijderveld@gmail.com"
},
{
"name": "Qandidate.com",
"homepage": "http://labs.qandidate.com"
}
],
"autoload": {
"psr-4": {
"Qandidate\\Bundle\\ToggleBundle\\": ""
}
},
"require": {
"php": ">=7.0",
"qandidate/toggle": "~1.1",
"symfony/framework-bundle": "^2.7||^3.0||^4.0",
"symfony/http-foundation": "^2.7||^3.0||^4.0",
"symfony/http-kernel": "^2.7||^3.0||^4.0",
"symfony/security-bundle": "^2.7||^3.0||^4.0",
"doctrine/common": "~2.2"
},
"require-dev": {
"symfony/browser-kit": "^2.7||^3.0||^4.0",
"twig/twig": "~1.16,>=1.16.2",
"symfony/twig-bundle": "^2.7||^3.0||^4.0",
"phpunit/phpunit": "^5.2",
"matthiasnoback/symfony-dependency-injection-test": "^1.2",
"matthiasnoback/symfony-config-test": "^2.2"
},
"suggest": {
"twig/twig": "For using the twig helper"
},
"extra": {
"branch-alias": {
"dev-master": "1.0.x-dev"
}
}
}