-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
56 lines (54 loc) · 1.71 KB
/
composer.json
File metadata and controls
56 lines (54 loc) · 1.71 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
53
54
55
56
{
"name": "d3/oxlogiq_http_api",
"description": "",
"type": "oxideshop-component",
"keywords": [
"oxid",
"eShop",
"logger",
"monolog",
"alerting",
"d3",
"HTTP API"
],
"authors": [
{
"name": "D3 Data Development (Inh. Thomas Dartsch)",
"email": "info@shopmodule.com",
"homepage": "https://www.d3data.de",
"role": "Owner"
}
],
"homepage": "https://www.oxidmodule.com/",
"license": [
"MIT"
],
"require": {
"d3/oxlogiq": "^1.2",
"guzzlehttp/guzzle": "^7.9"
},
"require-dev": {
"d3/testingtools": "^1.2",
"phpunit/phpunit": "^11.0",
"friendsofphp/php-cs-fixer": "^3.75",
"phpstan/phpstan": "^1.10"
},
"autoload": {
"psr-4": {
"D3\\OxLogIQ_HttpApi\\": "./"
}
},
"autoload-dev": {
"psr-4": {
"D3\\OxLogIQ_HttpApi\\Tests": "./Tests"
}
},
"scripts": {
"php-cs-fixer": "./vendor/bin/php-cs-fixer fix --config=vendor/d3/oxlogiq_http_api/.php-cs-fixer.php",
"phpstan": "./vendor/bin/phpstan --configuration=vendor/d3/oxlogiq_http_api/phpstan.neon analyse",
"phpstan-report": "./vendor/bin/phpstan --configuration=vendor/d3/oxlogiq_http_api/phpstan.neon analyse --error-format=json > reports/phpstan/oxlogiq_http_api/phpstan.report.json",
"phpunit": "XDEBUG_MODE=coverage ./vendor/bin/phpunit --config=vendor/d3/oxlogiq_http_api --no-coverage",
"phpunit-coverage": "XDEBUG_MODE=coverage ./vendor/bin/phpunit --config=vendor/d3/oxlogiq_http_api --coverage-html=reports/phpunit/oxlogiq_http_api",
"phpunit-path-coverage": "XDEBUG_MODE=coverage ./vendor/bin/phpunit --config=vendor/d3/oxlogiq_http_api --coverage-html=reports/phpunit/oxlogiq_http_api --path-coverage"
}
}