forked from teqneers/ext-application-bundle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
49 lines (49 loc) · 1.37 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
{
"name": "brickfox/ext-application-bundle",
"type": "library",
"description": "A Symfony 2 bundle to integrate Sencha Ext JS into a Symfony 2 application",
"homepage": "https://github.com/teqneers/ext-application-bundle",
"license": "MIT",
"authors": [
{
"name": "Stefan Gehrig",
"email": "[email protected]",
"homepage": "http://opensource.teqneers.de/"
}
],
"autoload": {
"psr-4": {
"TQ\\Bundle\\ExtJSApplicationBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"TQ\\Bundle\\ExtJSApplicationBundle\\Tests\\": "tests/"
}
},
"require": {
"php": ">=5.3.9",
"symfony/http-kernel": "~2.8|~3.0",
"symfony/config": "~2.8|~3.0",
"symfony/dependency-injection": "~2.8|~3.0",
"symfony/routing": "~2.8|~3.0",
"teqneers/ext-application": "self.version",
"twig/twig": "~1.24|~2.0"
},
"require-dev": {
"phpunit/phpunit": "~4.8,!=4.8.20|~5.1",
"symfony/framework-bundle": "~2.8|~3.0",
"symfony/templating": "~2.8|~3.0"
},
"repositories": [
{
"type": "vcs",
"url": "https://github.com/teqneers/ext-application.git"
}
],
"extra": {
"branch-alias": {
"dev-master": "2.0.x-dev"
}
}
}