-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
36 lines (36 loc) · 979 Bytes
/
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
{
"name": "prezent/feature-flag-bundle",
"type": "symfony-bundle",
"description": "Integrates Feature Flags into you Symfony project",
"keywords": ["featureflag", "feature"],
"homepage": "https://www.prezent.nl",
"require": {
"php": "^7.4|^8.0",
"doctrine/annotations": "^1.2|^2.0",
"symfony/framework-bundle": "^5.4|^6.1",
"symfony/twig-bundle": "^5.4|^6.1"
},
"suggest": {
"doctrine/doctrine-migrations-bundle": "To automatically create a feature flag table using a migrations file",
"doctrine/orm": "To use a database to stores the feature flags and permissions in"
},
"license": "MIT",
"authors": [
{
"name": "Robert-Jan Bijl",
"email": "[email protected]"
},
{
"name": "Prezent Internet B.V.",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": { "Prezent\\FeatureFlagBundle\\": "src/" }
},
"extra": {
"branch-alias": {
"dev-master": "2.x-dev"
}
}
}