forked from jtl-software/connector-core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
executable file
·48 lines (48 loc) · 1.39 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
{
"name": "jtl/connector",
"type": "library",
"description": "JTL-Connector protocol library and classes",
"keywords": ["jtl", "connector", "protocol", "model", "data"],
"homepage": "http://www.jtl-software.de",
"license": "MIT",
"authors": [{
"name": "JTL Software GmbH",
"email": "[email protected]",
"homepage": "http://www.jtl-software.de",
"role": "Founder"
}],
"require": {
"php": ">=7.2",
"jms/serializer": "^3.3",
"hassankhan/config": "^2.0",
"monolog/monolog": "^2.0",
"symfony/finder": "*",
"symfony/event-dispatcher": "*",
"doctrine/collections": "^1.4",
"doctrine/annotations": "^1.10",
"doctrine/cache": "^1.10",
"ext-sqlite3": "*",
"php-di/php-di": "^6.0",
"gmo/iso-639": "^1.0",
"jawira/case-converter": "^3.4",
"symfony/http-foundation": "^5.1",
"symfony/filesystem": "^5.1",
"fzaninotto/faker": "^1.9"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^2.15",
"mockery/mockery": "^1.3",
"mikey179/vfsstream": "^1.6",
"phpunit/phpunit": "^9.1"
},
"autoload": {
"psr-4": {
"Jtl\\Connector\\Core\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Jtl\\Connector\\Core\\Test\\": "tests/src"
}
}
}