forked from SC-Networks/evalanche-soap-api-struct
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
51 lines (51 loc) · 1.17 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
{
"name": "scn/evalanche-soap-api-struct",
"homepage": "https://github.com/SC-Networks/evalanche-soap-struct",
"description": "Evalanche soap api struct component",
"license": "MIT",
"type": "library",
"keywords": [
"evalanche",
"soap",
"email marketing",
"api"
],
"authors": [
{
"name": "Sascha Nützel",
"homepage": "https://www.sc-networks.com"
},
{
"name": "Daniel Jakob",
"homepage": "https://www.sc-networks.com"
}
],
"require": {
"php": ">=7.2"
},
"require-dev": {
"php": ">=8.2",
"phpunit/phpunit": "^11.1",
"friendsofphp/php-cs-fixer": "^3.53",
"phpstan/phpstan": "^1.10",
"phpstan/phpstan-strict-rules": "^1.5",
"rector/rector": "^1.0"
},
"autoload": {
"psr-4": {
"Scn\\EvalancheSoapStruct\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Scn\\EvalancheSoapStruct\\": "tests/"
}
},
"scripts": {
"tests": "vendor/bin/phpunit -c phpunit.xml.dist",
"stan": "vendor/bin/phpstan",
"check-cs": "vendor/bin/php-cs-fixer fix --dry-run --diff",
"fix-cs": "vendor/bin/php-cs-fixer fix",
"qa": "composer check-cs && composer test && composer stan"
}
}