-
Notifications
You must be signed in to change notification settings - Fork 27
/
composer.json
47 lines (47 loc) · 1.48 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
{
"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": "[email protected]"
},
{
"name": "Qandidate.com",
"homepage": "http://labs.qandidate.com"
}
],
"autoload": {
"psr-4": {
"Qandidate\\Bundle\\ToggleBundle\\": ""
},
"exclude-from-classmap": [
"/Tests/"
]
},
"require": {
"php": ">=7.2",
"qandidate/toggle": "^2.0",
"symfony/framework-bundle": "^4.4||^5.0",
"symfony/http-foundation": "^4.4.7||^5.0.7",
"symfony/http-kernel": "^4.4.13||^5.1.5",
"symfony/security-bundle": "^4.4||^5.0",
"doctrine/common":"^2.13||^3.0",
"doctrine/annotations": "^1.13"
},
"require-dev": {
"symfony/browser-kit": "^4.4||^5.0",
"twig/twig": "^3.0",
"symfony/twig-bundle": "^4.4||^5.0",
"phpunit/phpunit": "^9.5",
"matthiasnoback/symfony-dependency-injection-test": "^4.0",
"matthiasnoback/symfony-config-test": "^4.0",
"broadway/coding-standard": "^1.2",
"phpstan/phpstan": "^1.0"
},
"suggest": {
"twig/twig": "For using the twig helper"
}
}