-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
composer.json
99 lines (99 loc) · 3.19 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
{
"name": "pheature/symfony-toggle",
"description": "Pheature flags Symfony toggle management bundle.",
"keywords": ["feature-toggle", "feature-flags", "symfony"],
"type": "library",
"license": "BSD-3-Clause",
"authors": [
{
"name": "kpicaza"
},
{
"name": "pcs289"
},
{
"name": "xserrat"
}
],
"require": {
"php": "~8.0.0|~8.1.0|~8.2.0|~8.3.0",
"pheature/toggle-crud-psr11-factories": "^0.8",
"pheature/toggle-model": "^0.8",
"symfony/framework-bundle": "~5.0|~6.0|~7.0",
"webmozart/assert": "^1.11"
},
"require-dev": {
"doctrine/dbal": ">=2.6 || ^3.0",
"icanhazstring/composer-unused": "^0.8",
"pheature/dbal-toggle": "^0.8",
"pheature/inmemory-toggle": "^0.8",
"pheature/toggle-crud": "^0.8",
"pheature/toggle-crud-psr7-api": "^0.8",
"phpcompatibility/php-compatibility": "^9.3",
"phpro/grumphp": "^1.0",
"phpstan/extension-installer": "^1.1",
"phpstan/phpstan": "^1.0",
"phpstan/phpstan-webmozart-assert": "^1.0",
"phpunit/phpunit": "^8.0 || ^9.0",
"roave/infection-static-analysis-plugin": "^1.18",
"squizlabs/php_codesniffer": "^3.4",
"symfony/var-dumper": "^4.2 || ^5.0 || ^6.0 || ^7.0",
"twig/twig": "^2.4.4 || ^3.0",
"vimeo/psalm": "^4.4 || ^5.23"
},
"autoload": {
"psr-4": {
"Pheature\\Community\\Symfony\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Pheature\\Test\\Community\\Symfony\\": "test"
}
},
"scripts": {
"check-all": [
"composer-unused --excludePackage=symfony/framework-bundle ",
"@cs-check",
"@test",
"@inspect",
"@psalm",
"@infection"
],
"cs-check": "phpcs src --colors",
"cs-fix": "phpcbf src --colors",
"inspect": "phpstan analyse src -l9 --ansi",
"test": "phpunit --colors=always",
"psalm": "psalm",
"infection": "XDEBUG_MODE=coverage roave-infection-static-analysis-plugin"
},
"extra": {
"laravel": {
"providers": [
"Pheature\\Community\\Symfony\\ToggleProvider"
],
"aliases": {
"Toggle": "Pheature\\Community\\Symfony\\Toggle"
}
}
},
"suggest": {
"pheature/dbal-toggle": "Allows using Dbal toggle management implementation.",
"pheature/inmemory-toggle": "Allows using Inmemory toggle management implementation.",
"pheature/toggle-crud": "Allows using toggle management CRUD implementation.",
"pheature/toggle-crud-psr7-api": "Allows using toggle management CRUD HTTP API.",
"twig/twig-bundle": "Allows using the twig extension."
},
"conflict": {
"twig/twig": "<2.4.4"
},
"config": {
"sort-packages": true,
"allow-plugins": {
"infection/extension-installer": true,
"icanhazstring/composer-unused": true,
"phpro/grumphp": true,
"phpstan/extension-installer": true
}
}
}