-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathcomposer.json
More file actions
61 lines (61 loc) · 1.47 KB
/
composer.json
File metadata and controls
61 lines (61 loc) · 1.47 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
{
"name": "postpay/postpay-php",
"description": "Postpay SDK for PHP",
"keywords": ["api", "client", "graphql", "payments", "postpay", "rest", "sdk"],
"type": "library",
"homepage": "https://github.com/postpayio/postpay-php",
"license": "MIT",
"authors": [
{
"name": "mongkok",
"email": "dani@postpay.io",
"homepage": "https://github.com/mongkok"
}
],
"support": {
"docs": "https://php.postpay.io",
"source": "https://github.com/postpay.io/postpay-php",
"issues": "https://github.com/postpay.io/postpay-php/issues"
},
"require": {
"php": ">=5.6"
},
"require-dev": {
"guzzlehttp/guzzle": "~6.0",
"phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.4 || ^7.0",
"squizlabs/php_codesniffer": "*"
},
"suggest": {
"guzzlehttp/guzzle": "Required for using Guzzle HTTP client"
},
"autoload": {
"psr-4": {
"Postpay\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Postpay\\Tests\\": "tests/"
}
},
"scripts": {
"test": [
"phpunit"
],
"coverage": [
"phpunit --coverage-text"
],
"phpcs": [
"phpcs -s -p"
],
"phpcbf": [
"phpcbf -p"
],
"analyse": [
"phpstan analyse"
],
"fix": [
"php-cs-fixer fix"
]
}
}