-
Notifications
You must be signed in to change notification settings - Fork 3
/
composer.json
56 lines (56 loc) · 1.46 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
{
"name": "teqneers/ext-direct",
"type": "library",
"description": "A base component to integrate Sencha Ext JS Ext.direct into a PHP application",
"homepage": "https://github.com/teqneers/ext-direct",
"license": "MIT",
"authors": [
{
"name": "Stefan Gehrig",
"email": "gehrig@teqneers.de",
"homepage": "https://www.teqneers.de/"
},
{
"name": "Erik Theoboldt",
"email": "theoboldt@teqneers.de"
}
],
"autoload": {
"psr-4": {
"TQ\\ExtDirect\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"TQ\\ExtDirect\\Tests\\": "tests/"
}
},
"require": {
"php": "8.0.*|8.1.*",
"ext-json": "*",
"doctrine/annotations": "~1.13",
"jms/metadata": "~2.6",
"jms/serializer": "~3.17",
"symfony/dependency-injection": "~5.0",
"symfony/event-dispatcher": "~5.0",
"symfony/expression-language": "~5.0",
"symfony/http-foundation": "~5.0",
"symfony/security-core": "~5.0",
"symfony/validator": "~5.0"
},
"require-dev": {
"phpunit/phpunit": "^9.5",
"symfony/phpunit-bridge": "~5.0",
"symfony/stopwatch": "~5.0"
},
"extra": {
"branch-alias": {
"dev-master": "5.0.x-dev"
}
},
"config": {
"allow-plugins": {
"symfony/flex": true
}
}
}