-
Notifications
You must be signed in to change notification settings - Fork 93
/
composer.json
38 lines (38 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
36
37
38
{
"name": "recurly/recurly-client",
"version": "4.56.0",
"type": "library",
"description": "The PHP client library for the Recurly API",
"keywords": ["recurly", "payments", "pay"],
"homepage": "https://github.com/recurly/recurly-client-php",
"license": "MIT",
"authors": [],
"require": {
"php": ">= 7.2.0",
"psr/log": "^1.1 || ^2.0 || ^3.0"
},
"require-dev": {
"dealerdirect/phpcodesniffer-composer-installer": "^0.7.0",
"phpcompatibility/php-compatibility": "^9.3",
"phpdocumentor/phpdocumentor": "~3.0.0",
"phpstan/phpstan": "^0.12.11",
"phpunit/phpunit": "^8",
"squizlabs/php_codesniffer": "^3.5"
},
"autoload": {
"classmap": ["lib"],
"files": ["lib/recurly.php"]
},
"autoload-dev": {
"classmap": ["tests"]
},
"config": {
"preferred-install": "dist",
"sort-packages": true,
"optimize-autoloader": true,
"allow-plugins": {
"symfony/flex": true,
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}