-
Notifications
You must be signed in to change notification settings - Fork 4
/
composer.json
51 lines (51 loc) · 1.4 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": "teqneers/ext-direct-bundle",
"type": "library",
"description": "A Symfony bundle to integrate Sencha Ext JS Ext.direct into a Symfony application",
"homepage": "https://github.com/teqneers/ext-direct-bundle",
"license": "MIT",
"authors": [
{
"name": "Stefan Gehrig",
"email": "[email protected]",
"homepage": "https://www.teqneers.de/"
},
{
"name": "Erik Theoboldt",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"TQ\\Bundle\\ExtDirectBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"TQ\\Bundle\\ExtDirectBundle\\Tests\\": "tests/"
}
},
"require": {
"php": "8.0.*|8.1.*",
"jms/serializer-bundle": "~4.0",
"symfony/config": "~5.0",
"symfony/dependency-injection": "~5.0",
"symfony/http-kernel": "~5.0",
"symfony/routing": "~5.0",
"symfony/yaml": "~5.0",
"teqneers/ext-direct": "^5.0",
"twig/twig": "~3.3"
},
"require-dev": {
"phpunit/phpunit": "^9.5",
"symfony/framework-bundle": "~5.0",
"symfony/phpunit-bridge": "~5.0",
"symfony/security-bundle": "~5.0",
"symfony/templating": "~5.0"
},
"extra": {
"branch-alias": {
"dev-master": "5.0.x-dev"
}
}
}