forked from bestit/flagception-bundle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
56 lines (56 loc) · 1.61 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
{
"name": "flagception/flagception-bundle",
"type": "symfony-bundle",
"description": "Feature toggle bundle on steroids.",
"keywords": ["feature", "feature-toggle", "feature-flags", "flags", "flagception", "symfony", "bundle", "rollout", "testing", "toggle"],
"license": "MIT",
"authors": [
{
"name": "Michel Chowanski",
"email": "[email protected]"
}
],
"require": {
"php": "^7.1.3 | ^8",
"symfony/dependency-injection": "^4.4 | ^5.0 | ^6.0",
"symfony/yaml": "^4.4 | ^5.0 | ^6.0",
"symfony/config": "^4.4 | ^5.0 | ^6.0",
"symfony/http-kernel": "^4.4 | ^5.0 | ^6.0",
"twig/twig": "^1.18|^2.0|^3.0",
"doctrine/annotations": "^1.7|^2.0",
"flagception/flagception": "^1.5"
},
"require-dev": {
"symfony/phpunit-bridge": "^5.0 | ^6.0",
"symfony/twig-bridge": "^4.4 | ^5.0 | ^6.0",
"flagception/database-activator": "^1.0",
"squizlabs/php_codesniffer": "^3.3.1",
"php-coveralls/php-coveralls": "^2.0"
},
"autoload": {
"psr-4": {
"Flagception\\Bundle\\FlagceptionBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Flagception\\Tests\\FlagceptionBundle\\": "tests"
}
},
"extra": {
"thanks": {
"name": "flagception/flagception",
"url": "https://github.com/bestit/flagception-sdk"
}
},
"suggest": {
"flagception/contentful-activator": "Fetch feature flags from contentful.",
"flagception/database-activator": "Fetch feature flags from a database."
},
"scripts": {
"tests": [
"./vendor/bin/phpcs",
"./vendor/bin/simple-phpunit --coverage-text"
]
}
}