forked from ratepay/php-library
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
executable file
·45 lines (45 loc) · 1.09 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
{
"name": "ratepay/php-library",
"description": "Ratepay Payment-API PHP Library",
"version": "1.8.2",
"license": "MIT",
"type": "library",
"homepage": "https://ratepay.gitbook.io/docs/",
"support": {
"email": "[email protected]",
"source": "https://github.com/ratepay/php-library"
},
"authors": [
{
"name": "Eduardo Iriarte",
"email": "[email protected]"
}
],
"scripts": {
"test": "vendor/bin/phpunit --coverage-text",
"lint": "vendor/bin/php-cs-fixer fix --dry-run --stop-on-violation --using-cache=no --verbose",
"publish-coverage": "bash <(curl -s https://codecov.io/bash)"
},
"require": {
"php": ">=5.4",
"ext-curl": "*",
"ext-json": "*",
"ext-simplexml": "*"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^2.17@dev",
"donatj/mock-webserver": "dev-master",
"phpunit/phpunit": "^6.5||^7.5||^8.5||^9.0"
},
"minimum-stability": "dev",
"autoload": {
"psr-4": {
"RatePAY\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"RatePAY\\Tests\\": "tests/"
}
}
}