forked from bestit/flagception-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
43 lines (43 loc) · 1.11 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
{
"name": "flagception/flagception",
"type": "lib",
"description": "Feature toggle on steroids.",
"keywords": ["feature", "feature-toggle", "feature-flags", "flags", "flagception", "rollout", "testing", "toggle"],
"license": "MIT",
"authors": [
{
"name": "Michel Chowanski",
"email": "michel.chowanski@bestit-online.de"
}
],
"require": {
"php": "^5.6||^7.0||^8.0",
"symfony/expression-language": ">=2.7",
"psr/cache": "^1.0"
},
"require-dev": {
"phpunit/phpunit": "*",
"php-coveralls/php-coveralls": "^2.4.3",
"squizlabs/php_codesniffer": "^3.5"
},
"autoload": {
"psr-4": {
"Flagception\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Flagception\\Tests\\": "tests"
}
},
"suggest": {
"flagception/contentful-activator": "Fetch feature flags from contentful.",
"flagception/database-activator": "Fetch feature flags from database."
},
"scripts": {
"phpunit": "phpunit --coverage-text -c ./build/phpunit.xml",
"checkstyle": "phpcs --standard=./build/phpcs.xml ./src",
"analyze": "@checkstyle",
"test": "@phpunit"
}
}