-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathcomposer.json
45 lines (45 loc) · 1.12 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": "qiwi/bill-payments-php-sdk",
"type": "library",
"version": "0.2.2",
"description": "Universal payments API SDK",
"license": "MIT",
"homepage": "https://github.com/QIWI-API/bill-payments-php-sdk",
"support": {
"issues": "https://github.com/QIWI-API/bill-payments-php-sdk/issues"
},
"require": {
"php": ">=5.6.0",
"ext-curl": "*",
"ext-json": "*"
},
"require-dev": {
"phpdocumentor/phpdocumentor": "2.8.*",
"phpunit/phpunit": "5.7.27",
"squizlabs/php_codesniffer" : "3.5.*",
"php-mock/php-mock-phpunit": "^1.1"
},
"autoload": {
"psr-4": {
"Qiwi\\Api\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Qiwi\\Api\\": "tests/"
}
},
"scripts": {
"code": "phpcs --encoding=utf-8 -s",
"util": "phpunit --testsuite util",
"acceptance": "phpunit --testsuite acceptance",
"test": "phpunit",
"docs": "phpdoc",
"wiki": "phpdocmd docs/structure.xml wiki"
},
"config": {
"platform": {
"php": "5.6.0"
}
}
}