-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathcomposer.json
More file actions
50 lines (50 loc) · 1.48 KB
/
composer.json
File metadata and controls
50 lines (50 loc) · 1.48 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
{
"name": "nusje2000/feature-toggle-bundle",
"description": "A bundle for adding and managing feature toggles in your project",
"type": "symfony-bundle",
"autoload": {
"psr-4": {
"Nusje2000\\FeatureToggleBundle\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Nusje2000\\FeatureToggleBundle\\Tests\\": "tests"
}
},
"require": {
"php": "^8.1",
"psr/log": "^1.0|^2.0|^3.0",
"symfony/cache": "^6.2 || ^7.0",
"symfony/config": "^6.2 || ^7.0",
"symfony/console": "^6.2 || ^7.0",
"symfony/dependency-injection": "^6.2 || ^7.0",
"symfony/event-dispatcher": "^6.2 || ^7.0",
"symfony/filesystem": "^6.2 || ^7.0",
"symfony/http-client": "^6.2 || ^7.0",
"symfony/http-foundation": "^6.2 || ^7.0",
"symfony/http-kernel": "^6.2 || ^7.0",
"symfony/polyfill-php80": "^1.22"
},
"require-dev": {
"phpstan/phpstan": "^1.10",
"phpstan/phpstan-phpunit": "^1.3",
"phpstan/phpstan-symfony": "^1.3",
"phpunit/phpunit": "^9.5",
"psalm/plugin-phpunit": "^0.18",
"psalm/plugin-symfony": "^5.0",
"twig/twig": "^3.0",
"vimeo/psalm": "^5.0"
},
"license": "MIT",
"authors": [
{
"name": "Maarten Nusteling",
"email": "maarten.nusteling@gmail.com"
}
],
"config": {
"sort-packages": true
},
"minimum-stability": "stable"
}