forked from qandidate-labs/qandidate-toggle-api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
63 lines (63 loc) · 1.32 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
52
53
54
55
56
57
58
59
60
61
62
63
{
"name": "qandidate/toggle-api",
"description": "Api interface for your toggles.",
"keywords": [
"feature",
"flipping",
"flip",
"switch",
"bits",
"trigger",
"toggle",
"api"
],
"license": "MIT",
"authors": [
{
"name": "Alexander",
"email": "[email protected]"
},
{
"name": "othillo",
"email": "[email protected]"
},
{
"name": "Willem-Jan",
"email": "[email protected]"
},
{
"name": "Qandidate.com",
"homepage": "http://labs.qandidate.com/"
}
],
"require": {
"php": ">=7.2",
"ext-json": "*",
"qandidate/toggle": "^2.0",
"asm89/stack-cors": "^2.0",
"symfony/http-foundation": "^5.2",
"symfony/http-kernel": "^5.2",
"symfony/framework-bundle": "^5.2",
"qandidate/toggle-bundle": "^1.4.1",
"symfony/security-bundle": "^5.2",
"predis/predis": "^1.1||^2.0",
"symfony/dotenv": "^5.2",
"symfony/dependency-injection": "^5.2"
},
"require-dev": {
"symfony/browser-kit": "^5.2",
"phpunit/phpunit": "^8.0",
"broadway/coding-standard": "^1.2",
"phpstan/phpstan": "^1.0"
},
"autoload": {
"psr-4": {
"Qandidate\\Application\\Toggle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Qandidate\\Application\\Toggle\\": "test/"
}
}
}