forked from DZunke/FeatureFlagsBundle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
37 lines (37 loc) · 1.04 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
{
"name": "dzunke/feature-flags-bundle",
"description": "Symfony Bundle to implement Feature Flags to your Application",
"keywords": ["symfony", "bundle", "feature flags"],
"homepage": "https://github.com/DZunke/FeatureFlagsBundle",
"license": "MIT",
"minimum-stability": "stable",
"authors": [
{
"name": "Denis Zunke",
"email": "denis.zunke@gmail.com"
}
],
"require": {
"php": ">=8.1",
"symfony/http-foundation": "^6.1",
"symfony/http-kernel": "^6.1",
"symfony/dependency-injection": "^6.1",
"symfony/config": "^6.1",
"symfony/console": "^6.1",
"symfony/twig-bridge": "^6.1",
"symfony/yaml": "^6.1"
},
"require-dev": {
"twig/twig": "~2.0|~3.0",
"phpunit/phpunit": "~9.4"
},
"autoload": {
"psr-0": { "DZunke\\FeatureFlagsBundle": "" }
},
"target-dir": "DZunke/FeatureFlagsBundle",
"extra": {
"branch-alias": {
"dev-master": "dev-dev"
}
}
}