-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcomposer.json
64 lines (64 loc) · 1.81 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
{
"name": "solidworx/toggler",
"type": "library",
"description": "Feature toggle library",
"keywords": [
"feature toggle",
"feature switch",
"feature library",
"toggle",
"switch",
"feature"
],
"license": "MIT",
"authors": [
{
"name": "Pierre du Plessis",
"email": "[email protected]"
}
],
"require": {
"php": ">=7.3",
"symfony/polyfill-php80": "^1.20"
},
"require-dev": {
"mikey179/vfsstream": "^1.6",
"phpstan/extension-installer": "^1.0",
"phpstan/phpstan": "^1.10",
"phpstan/phpstan-deprecation-rules": "^1.1",
"phpstan/phpstan-phpunit": "^1.3",
"phpstan/phpstan-strict-rules": "^1.5",
"phpstan/phpstan-symfony": "^1.2",
"phpunit/phpunit": "^9.5",
"predis/predis": "^1.1 || ^2.0",
"symfony/console": "^4.4 || ^5.0",
"symfony/expression-language": "^4.4 || ^5.0",
"symfony/framework-bundle": "^4.1 || ^5.0",
"symfony/security-core": "^4.4 || ^5.0",
"symfony/yaml": "^4.4 || ^5.0",
"twig/twig": "^2.7 || ^3.0"
},
"suggest": {
"symfony/expression-language": "To use expressions for conditions",
"symfony/framework-bundle": "To enable Symfony integration",
"symfony/yaml": "To pass yml files to the config",
"twig/twig": "To use the twig extension"
},
"extra": {
"branch-alias": {
"dev-master": "2.0-dev"
}
},
"autoload": {
"psr-4": {
"SolidWorx\\Toggler\\": "./src",
"SolidWorx\\Toggler\\Tests\\": "./tests"
}
},
"config": {
"sort-packages": true,
"allow-plugins": {
"phpstan/extension-installer": true
}
}
}