forked from rvanlaak/SettingsBundle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
47 lines (47 loc) · 1.46 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
{
"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": "^5.5.9|^7.0",
"psr/cache": "^1.0",
"symfony/framework-bundle": "^2.7|^3.0",
"symfony/form": "^2.7|^3.0",
"doctrine/orm": "^2.2.3"
},
"require-dev": {
"phpunit/phpunit": "^4.6",
"mockery/mockery": "^0.9",
"doctrine/doctrine-bundle": "~1.2",
"polishsymfonycommunity/symfony-mocker-container": "^1.0",
"matthiasnoback/symfony-dependency-injection-test": "^0.7"
},
"autoload": {
"psr-4": { "Dmishh\\SettingsBundle\\": "" }
},
"extra": {
"branch-alias": {
"dev-master": "2.0.x-dev"
}
},
"suggest": {
"cache/adapter-bundle": "This bundle will help you to add your PSR-6 cache implementations as Symfony services"
}
}