-
Notifications
You must be signed in to change notification settings - Fork 10
/
composer.json
43 lines (43 loc) · 1.07 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/database-activator",
"type": "lib",
"description": "Activator for manage feature toggles via database",
"keywords": ["flagception", "database-extension", "mysql", "database", "doctrine", "sqlite", "pssql", "postgres", "sql", "dbal"],
"license": "MIT",
"authors": [
{
"name": "Michel Chowanski",
"email": "[email protected]"
}
],
"require": {
"php": "^7.3||^8.0",
"flagception/flagception": "^1.7",
"doctrine/dbal": "^2.12",
"symfony/options-resolver": ">=2.7"
},
"require-dev": {
"ext-pdo": "*",
"phing/phing": "^2.16",
"symfony/phpunit-bridge": "^5.2",
"phpunit/phpunit": "^9.5",
"squizlabs/php_codesniffer": "^3.5",
"php-coveralls/php-coveralls": "^v2.4"
},
"autoload": {
"psr-4": {
"Flagception\\Database\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Flagception\\Database\\Tests\\": "tests"
}
},
"extra": {
"thanks": {
"name": "flagception/flagception",
"url": "https://github.com/bestit/flagception-sdk"
}
}
}