-
Notifications
You must be signed in to change notification settings - Fork 60
/
Copy pathcomposer.json
51 lines (51 loc) · 1.67 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
{
"name": "dmishh/settings-bundle",
"description": "Database centric Symfony configuration management. Global and per-user settings supported.",
"keywords": ["symfony", "bundle", "config", "configuration", "settings"],
"homepage": "https://github.com/dmishh/SettingsBundle",
"type": "symfony-bundle",
"license": "MIT",
"authors": [
{
"name": "Dmitriy Scherbina",
"homepage": "http://dmishh.com"
},
{
"name": "Tobias Nyholm",
"homepage": "https://github.com/Nyholm"
},
{
"name": "Richard van Laak",
"homepage": "https://github.com/rvanlaak"
}
],
"require": {
"php": "^7.2|^8.0",
"psr/cache": "^1.0",
"symfony/framework-bundle": "^3.4 || ^4.3 || ^5.0",
"symfony/form": "^3.4 || ^4.3 || ^5.0",
"doctrine/orm": "^2.6.3|^2.7"
},
"require-dev": {
"phpunit/phpunit": "^8.5",
"mockery/mockery": "^1.3",
"doctrine/doctrine-bundle": "^1.12 || ^2.0",
"polishsymfonycommunity/symfony-mocker-container": "^1.0",
"matthiasnoback/symfony-dependency-injection-test": "^4.1",
"nyholm/symfony-bundle-test": "^1.6",
"symfony/translation": "^4.4 || ^5.0",
"symfony/security-core": "^4.4 || ^5.0",
"twig/twig": "^2.0 || ^3.0"
},
"autoload": {
"psr-4": { "Dmishh\\SettingsBundle\\": "" }
},
"extra": {
"branch-alias": {
"dev-master": "3.0.x-dev"
}
},
"suggest": {
"cache/adapter-bundle": "This bundle will help you to add your PSR-6 cache implementations as Symfony services"
}
}