-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathcomposer.json
executable file
·86 lines (86 loc) · 3.07 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"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": ">=8.1",
"jms/serializer": "*",
"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",
"symfony/console": "^4.3|^5.1",
"fakerphp/faker": "^1.13",
"whitecube/lingua": "^1.1",
"ext-fileinfo": "*",
"doctrine/dbal": "^2.5",
"ext-pdo": "*"
},
"require-dev": {
"mikey179/vfsstream": "^1.6",
"phpunit/phpunit": "^9.5",
"jtl/connector-cq": "*",
"phpstan/phpstan": "^1.11",
"squizlabs/php_codesniffer": "^3.10",
"micheh/phpcs-gitlab": "^1.1",
"slevomat/coding-standard": "^8.15",
"mockery/mockery": "^1.4",
"jtl/unit-test": "^0.1.3"
},
"provide": {
"jtl/connector-mapping-tables": "4.0.8",
"jtl/connector-dbc": "v2.1.13"
},
"autoload": {
"psr-4": {
"Jtl\\Connector\\Core\\": "src/",
"Jtl\\Connector\\MappingTables\\": "src/mapping-tables",
"Jtl\\Connector\\Dbc\\": "src/dbc/"
}
},
"autoload-dev": {
"psr-4": {
"Jtl\\Connector\\Core\\Test\\": "tests/src",
"Jtl\\Connector\\MappingTables\\": "tests/src/mapping-tables",
"Jtl\\Connector\\Dbc\\": "tests/src/dbc/"
}
},
"scripts": {
"analyze": "@analyse",
"analyse": [
"@phpcs",
"@phpstan"
],
"phpcs": "phpcs --basepath=. --extensions=php --standard=JtlConnector --report=full src tests",
"phpcs:fix": "phpcbf --basepath=. --extensions=php --standard=JtlConnector src tests",
"phpcs:ci": "phpcs --basepath=. --extensions=php --standard=JtlConnector --report=full --report-\\\\Micheh\\\\PhpCodeSniffer\\\\Report\\\\Gitlab=phpcs-quality-report.json src tests",
"phpstan": "phpstan analyse src tests --level max -c ./vendor/jtl/connector-cq/phpstan.neon",
"phpstan:ci": "phpstan analyse src tests --level max -c ./vendor/jtl/connector-cq/phpstan.neon --error-format gitlab > phpstan-quality-report.json",
"tests": "phpunit",
"tests:ci": "phpunit --log-junit phpunit.xml"
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}