-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
38 lines (38 loc) · 1.01 KB
/
composer.json
File metadata and controls
38 lines (38 loc) · 1.01 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
{
"name": "settle/settle-sdk-php",
"description": "PHP SDK for connecting to the Settle Payment Platform.",
"type": "library",
"license": "apache-2.0",
"authors": [
{
"name": "Daniel Zahariev",
"email": "support+dev@settle.eu"
}
],
"minimum-stability": "stable",
"require": {
"php": "^7.4|^8.0",
"ext-curl": "*",
"ext-json": "*",
"ext-openssl": "*",
"danielz/shape-validator-php": "^1.0"
},
"require-dev": {
"pestphp/pest": "^1.21",
"php-coveralls/php-coveralls": "^2.5",
"vlucas/phpdotenv": "^5.4"
},
"autoload": {
"psr-4": {
"SettleApi\\": "src/"
}
},
"scripts": {
"test": "set -a; source .env; pest",
"coverage": "set -a; source .env; php-coveralls --coverage_clover=coverage/logs/clover.xml --json_path=coverage/logs/coveralls-upload.json -v",
"all": [
"@test",
"@coverage"
]
}
}