-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathcomposer.json
More file actions
57 lines (57 loc) · 1.74 KB
/
composer.json
File metadata and controls
57 lines (57 loc) · 1.74 KB
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
{
"name": "ajgarlag/feature-flag-bundle",
"type": "symfony-bundle",
"description": "Provides a feature flag mechanism",
"keywords": ["feature", "flag", "flags", "toggle", "ab test", "rollout", "canary", "blue green", "kill switch"],
"homepage": "https://github.com/ajgarlag/feature-flag-bundle",
"license": "MIT",
"authors": [
{
"name": "Adrien Roches",
"email": "adrien@roc-it.tech",
"homepage": "https://github.com/Neirda24"
},
{
"name": "Hubert Lenoir",
"homepage": "https://github.com/Jean-Beru"
},
{
"name": "Community",
"homepage": "https://github.com/ajgarlag/feature-flag-bundle/contributors"
}
],
"require": {
"php": ">=8.1",
"psr/container": "^1.1|^2.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.80",
"phpunit/phpunit": "^10.5|^11.5|^12.1",
"symfony/framework-bundle": "^6.4|^7.4|^8.0",
"symfony/http-kernel": "^6.4|^7.4|^8.0",
"symfony/phpunit-bridge": "^7.4|^8.0",
"symfony/twig-bundle": "^6.4|^7.4|^8.0",
"symfony/var-dumper": "^6.4|^7.4|^8.0",
"symfony/yaml": "^6.4|^7.4|^8.0",
"twig/twig": "^2.12|^3.0"
},
"autoload": {
"psr-4": { "Ajgarlag\\FeatureFlagBundle\\": "src/" }
},
"autoload-dev": {
"psr-4": { "Ajgarlag\\FeatureFlagBundle\\Tests\\": "tests/" }
},
"minimum-stability": "dev",
"config": {
"preferred-install": {
"symfony/framework-bundle": "source",
"*": "dist"
},
"sort-packages": true
},
"extra": {
"branch-alias": {
"dev-main": "0.3.x-dev"
}
}
}