This repository has been archived by the owner on Jul 7, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathcomposer.json
executable file
·62 lines (62 loc) · 1.75 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
52
53
54
55
56
57
58
59
60
61
62
{
"name": "amstaffix/extjs-bundle",
"type": "symfony-bundle",
"description": "Use ExtJs with Symfony 2",
"keywords": ["extjs", "bundle", "symfony2"],
"homepage": "https://github.com/AmsTaFFix/extjs-bundle",
"license": "MIT",
"authors": [
{
"name": "James Moey",
"email": "[email protected]"
},
{
"name": "Nikita Sapogov",
"email": "[email protected]"
},
{
"name": "Community",
"homepage": "https://github.com/AmsTaFFix/extjs-bundle/graphs/contributors"
}
],
"require": {
"php": "~5.4",
"doctrine/orm": "^2.2.3",
"doctrine/doctrine-bundle": "~1.0",
"symfony/framework-bundle": "~2.3",
"symfony/twig-bundle": "~2.3",
"jms/serializer": "~1.0",
"jms/serializer-bundle": "~1.0",
"jms/di-extra-bundle": "~1.4",
"sensio/generator-bundle": "~2.3",
"friendsofsymfony/rest-bundle": "~1.0",
"incenteev/composer-parameter-handler": "~2.0"
},
"require-dev": {
"doctrine/mongodb-odm": "~1.0",
"doctrine/mongodb-odm-bundle": "~3.0",
"symfony/symfony": "~2.3"
},
"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"
}
}
}