forked from killbill/killbill-client-php
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
35 lines (35 loc) · 1.11 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
{
"name": "killbill/killbill-client",
"description": "Official PHP client to the Killbill HTTP API",
"type": "library",
"autoload": {
"psr-4": {
"Killbill\\Client\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Killbill\\Client\\": "test/"
}
},
"scripts": {
"test": "ENV=local phpunit",
"test-integration": "phpunit",
"record-mocks": "composer run test-integration && RECORD_REQUESTS=1 phpunit",
"phpcs": "phpcs --standard=vendor/escapestudios/symfony2-coding-standard/Symfony2 ./src/ ./test/ --extensions=php --ignore=src/Type -d memory_limit=1024M",
"phpcs-checkstyle": "phpcs --standard=vendor/escapestudios/symfony2-coding-standard/Symfony2 ./src/ ./test/ --extensions=php --ignore=src/Type -d memory_limit=1024M --report=checkstyle"
},
"license": "Apache",
"require": {
"php": "^5.5 || ^7.0",
"ext-curl": "*",
"psr/log": "^1.0",
"bit3/no-op-logger": "^1.0"
},
"require-dev": {
"phpunit/phpunit": "^4.8",
"squizlabs/php_codesniffer": "^2.0",
"escapestudios/symfony2-coding-standard": "^2.0",
"monolog/monolog": "^1.0"
}
}