forked from wisam-alhennawi/JTL-connector
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
executable file
·52 lines (52 loc) · 1.52 KB
/
composer.json
File metadata and controls
executable file
·52 lines (52 loc) · 1.52 KB
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
{
"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": "info@jtl-software.de",
"homepage": "http://www.jtl-software.de",
"role": "Founder"
}],
"require": {
"php": ">=7.2",
"jms/serializer": "^3.3",
"hassankhan/config": "^3.0",
"monolog/monolog": "*",
"symfony/finder": "*",
"symfony/event-dispatcher": "*",
"doctrine/collections": "^1.4",
"doctrine/annotations": "^1.10",
"doctrine/cache": "^1.10",
"ext-json": "*",
"ext-sqlite3": "*",
"ext-zip": "*",
"php-di/php-di": "^6.0",
"jawira/case-converter": "^3.4",
"symfony/http-foundation": "^4.0|^5.0",
"symfony/filesystem": "^4.0|^5.0",
"fakerphp/faker": "^1.13",
"whitecube/lingua": "^1.1"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.0",
"mikey179/vfsstream": "^1.6",
"phpunit/phpunit": "^9.5",
"phpstan/phpstan": "^0.12.65",
"mockery/mockery": "^1.4",
"jtl/unit-test": "^0.1.3"
},
"autoload": {
"psr-4": {
"Jtl\\Connector\\Core\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Jtl\\Connector\\Core\\Test\\": "tests/src"
}
}
}