forked from Adyen/adyen-php-api-library
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
35 lines (35 loc) · 791 Bytes
/
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": "adyen/php-api-library",
"type": "library",
"description": "A PHP client library for accessing Adyen APIs",
"keywords": [
"adyen"
],
"homepage": "https://github.com/Adyen/adyen-php-api-library",
"license": "Apache-2.0",
"require": {
"php": ">=5.6",
"monolog/monolog": ">=1.16",
"ext-openssl": "*",
"ext-ctype": "*",
"ext-mbstring": "*"
},
"require-dev": {
"dms/phpunit-arraysubset-asserts": "0.2.0",
"friendsofphp/php-cs-fixer": "*",
"phpunit/phpunit": "9.1.4",
"php-coveralls/php-coveralls": "2.2.0",
"squizlabs/php_codesniffer": "3.5.5",
"ext-json": "*"
},
"autoload": {
"psr-4": {
"Adyen\\": "src/Adyen/"
}
},
"autoload-dev": {
"psr-4": {
"Adyen\\Tests\\": "tests/"
}
}
}