-
Notifications
You must be signed in to change notification settings - Fork 5
/
composer.json
74 lines (74 loc) · 1.91 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
{
"name": "scn/evalanche-reporting-api-connector",
"homepage": "https://github.com/SC-Networks/evalanche-reporting-api-connector",
"description": "Official PHP client for Evalanche Reporting API",
"license": "MIT",
"type": "library",
"keywords": [
"evalanche",
"reporting",
"email marketing",
"api",
"connector"
],
"authors": [
{
"name": "Johannes Vogt",
"homepage": "https://www.sc-networks.com"
},
{
"name": "Daniel Jakob",
"homepage": "https://www.sc-networks.com"
}
],
"require": {
"php": "^8.1||^8.2||^8.3",
"ext-json": "*",
"psr/http-client": "^1",
"php-http/discovery": "^1.13",
"psr/http-message": "^1||^2",
"psr/http-factory": "^1||^2"
},
"require-dev": {
"phpunit/phpunit": "^9",
"phpstan/phpstan": "^1.3",
"phpstan/phpstan-strict-rules": "^1.1",
"friendsofphp/php-cs-fixer": "^3.0",
"rector/rector": "^1",
"guzzlehttp/guzzle": "^7.4"
},
"autoload": {
"psr-4": {
"Scn\\EvalancheReportingApiConnector\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Scn\\EvalancheReportingApiConnector\\": "tests/"
}
},
"scripts": {
"tests": "phpunit -c phpunit.xml.dist tests",
"stan": "phpstan",
"check-cs": "php-cs-fixer fix --dry-run --diff",
"fix-cs": "php-cs-fixer fix",
"qa": "composer check-cs && composer tests && composer stan",
"coverage": "phpunit --warm-coverage-cache tests && XDEBUG_MODE=coverage phpunit --coverage-html build/coverage tests"
},
"scripts-descriptions": {
"qa": "Runs all QA related scripts",
"check-cs": "Executes code style checks",
"fix-cs": "Apply the code style rules onto the codebase",
"tests": "Runs the unittests",
"stan": "Runs phpstan code analysis",
"coverage": "Runs the code coverage generation"
},
"config": {
"platform": {
"php": "8.1"
},
"allow-plugins": {
"php-http/discovery": true
}
}
}