forked from VAndAl37/extjs-bundle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
executable file
·51 lines (51 loc) · 1.47 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": "tpg/extjs-bundle",
"type": "symfony-bundle",
"description": "Use ExtJs with Symfony 2",
"keywords": ["extjs", "bundle", "symfony2"],
"homepage": "https://github.com/jamesmoey/extjs-bundle",
"license": "MIT",
"authors": [
{
"name": "James Moey",
"email": "[email protected]"
}
],
"require": {
"php": ">=5.4",
"symfony/symfony": ">=2.5",
"doctrine/orm": ">=2.2",
"jms/serializer": ">=0.12,~1.0",
"jms/serializer-bundle": ">=0.12,~1.0",
"jms/di-extra-bundle": ">=1.4",
"sensio/generator-bundle": ">=2.5",
"friendsofsymfony/rest-bundle": ">=1.0",
"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",
"phpunit/phpunit": ">=3.7"
},
"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"
}
}
}