forked from SC-Networks/evalanche-soap-api-connector
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
54 lines (54 loc) · 1.32 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
{
"name": "scn/evalanche-soap-api-connector",
"homepage": "https://github.com/SC-Networks/evalanche-soap-api-connector",
"description": "Official PHP client for Evalanche SOAP API",
"license": "MIT",
"type": "library",
"keywords": [
"evalanche",
"soap",
"email marketing",
"api",
"connector"
],
"authors": [
{
"name": "Sascha Nützel",
"homepage": "https://www.sc-networks.com"
},
{
"name": "Daniel Jakob",
"homepage": "https://www.sc-networks.com"
}
],
"require": {
"php": "^8.1",
"ext-soap": "*",
"scn/evalanche-soap-api-struct": "^2.3",
"scn/hydrator": "^2|^3",
"scn/hydrator-property-values": "^2.0|^3.0"
},
"require-dev": {
"phpunit/phpunit": "^10",
"friendsofphp/php-cs-fixer": "^3.0",
"phpstan/phpstan": "^1.4",
"phpstan/phpstan-strict-rules": "^1.1"
},
"autoload": {
"psr-4": {
"Scn\\EvalancheSoapApiConnector\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Scn\\EvalancheSoapApiConnector\\": "tests/"
}
},
"scripts": {
"test": "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"
}
}