forked from rvanlaak/SettingsBundle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
46 lines (46 loc) · 1.36 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
{
"name": "dmishh/settings-bundle",
"description": "Database centric Symfony2 configuration management. Global and per-user settings supported. It just works.",
"keywords": ["symfony2", "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": "Artem Zhuravlov",
"homepage": "https://github.com/azhuravlov"
}
],
"require": {
"php": ">=5.3.3",
"symfony/framework-bundle": "~2.1,!=2.5.0",
"symfony/security": "~2.1,!=2.5.0",
"symfony/form": "~2.1,!=2.5.0",
"symfony/validator": "~2.1,!=2.5.0",
"symfony/translation": "~2.1,!=2.5.0",
"doctrine/orm": "~2.2,>=2.2.3"
},
"require-dev": {
"phpunit/phpunit": "~4.6",
"mockery/mockery": "0.9.*"
},
"autoload": {
"psr-0": { "": "src/" }
},
"extra": {
"branch-alias": {
"dev-master": "2.0.x-dev"
}
},
"suggest": {
"doctrine/doctrine-cache-bundle": "If you want to add caching to your settings"
}
}