-
Notifications
You must be signed in to change notification settings - Fork 37
/
composer.json
40 lines (40 loc) · 1.14 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
{
"name": "qandidate/toggle",
"description": "Feature toggling for your PHP application.",
"keywords": ["feature", "flipping", "flip", "switch", "bits", "trigger", "toggle"],
"license": "MIT",
"authors": [
{
"name": "Alexander",
"email": "iam.asm89@gmail.com"
},
{
"name": "Qandidate.com",
"homepage": "http://labs.qandidate.com/"
}
],
"require": {
"php": ">=7.2"
},
"require-dev": {
"predis/predis": "^1.1||^2.0",
"symfony/expression-language": "^3.4||^4.4||^5.0",
"phpunit/phpunit": "^9.5",
"broadway/coding-standard": "^1.2",
"phpstan/phpstan": "@stable"
},
"suggest": {
"predis/predis": "To use the PredisCollection to persist toggles in redis",
"symfony/expression-language": "To use the ExpressionCondition to add conditions as a symfony language expression"
},
"autoload": {
"psr-4": {
"Qandidate\\Toggle\\": "lib/Qandidate/Toggle/"
}
},
"autoload-dev": {
"psr-4": {
"Qandidate\\Toggle\\": "test/Qandidate/Toggle/"
}
}
}