-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
59 lines (59 loc) · 1.73 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
57
58
59
{
"name": "trompette/feature-toggles",
"description": "Feature toggle infrastructure enabling continuous deployment",
"keywords": ["feature", "toggle", "flag", "continuous", "deployment"],
"license": "MIT",
"authors": [
{
"name": "Benoît Merlet",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"Trompette\\FeatureToggles\\": "sources/"
}
},
"autoload-dev": {
"psr-4": {
"Test\\Trompette\\FeatureToggles\\": "tests/"
}
},
"require": {
"php": ">=8.1",
"beberlei/assert": ">=3.2",
"doctrine/dbal": ">=3.8",
"psr/log": ">=1.1",
"symfony/config": ">=5.4",
"symfony/console": ">=5.4",
"symfony/expression-language": ">=5.4"
},
"require-dev": {
"ext-sqlite3": "*",
"doctrine/orm": ">=2.19",
"phpunit/phpunit": "^10.5",
"phpspec/prophecy-phpunit": "^2.2",
"symfony/dependency-injection": ">=5.4",
"symfony/http-kernel": ">=5.4",
"phpstan/phpstan": "^1.10",
"phpstan/extension-installer": "^1.3",
"phpstan/phpstan-beberlei-assert": "^1.1",
"jangregor/phpstan-prophecy": "^1.0",
"phpstan/phpstan-symfony": "^1.3",
"phpstan/phpstan-phpunit": "^1.3"
},
"suggest": {
"doctrine/orm": "To benefit from automatic schema creation",
"symfony/dependency-injection": "To use the provided bundle",
"symfony/http-kernel": "To use the provided bundle"
},
"scripts": {
"test": "phpunit",
"stan": "phpstan"
},
"config": {
"allow-plugins": {
"phpstan/extension-installer": true
}
}
}