forked from LerochkaKapito/extjs-bundle
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
executable file
·50 lines (50 loc) · 1.41 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
{
"name": "tpg/extjs-bundle",
"type": "symfony-bundle",
"description": "Use ExtJs with Symfony 2",
"keywords": ["extjs", "bundle", "symfony2"],
"homepage": "",
"license": "MIT",
"authors": [
{
"name": "James Moey",
"email": "[email protected]"
}
],
"require": {
"php": ">=5.3.2",
"symfony/symfony": "2.3.*",
"doctrine/orm": ">=2.2.3,<2.4-dev",
"jms/serializer": ">=0.12,<0.15-dev",
"jms/serializer-bundle": ">=0.12,<0.14-dev",
"jms/di-extra-bundle": "~1.4",
"sensio/generator-bundle": "2.3.*",
"friendsofsymfony/rest-bundle": ">=0.12",
"incenteev/composer-parameter-handler": "~2.0"
},
"require-dev": {
"doctrine/doctrine-bundle": "1.2.*",
"doctrine/mongodb-odm": "1.0.*@dev",
"doctrine/mongodb-odm-bundle": "3.0.*@dev"
},
"scripts": {
"post-install-cmd": [
"Incenteev\\ParameterHandler\\ScriptHandler::buildParameters"
],
"post-update-cmd": [
"Incenteev\\ParameterHandler\\ScriptHandler::buildParameters"
]
},
"autoload": {
"psr-0": { "Tpg\\ExtjsBundle": "" }
},
"target-dir": "Tpg/ExtjsBundle",
"config": {
"bin-dir": "bin/"
},
"extra": {
"incenteev-parameters": {
"file": "Tests/app/config/parameters.yml"
}
}
}