-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathcomposer.json
More file actions
37 lines (37 loc) · 812 Bytes
/
composer.json
File metadata and controls
37 lines (37 loc) · 812 Bytes
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
{
"name": "addonpayments/php-sdk",
"description": "SDK de PHP para procesar pagos con su terminal de Addon Payments",
"keywords": [
],
"homepage": "https://desarrolladores.addonpayments.com/",
"license": "GPL-2.0-or-later",
"authors": [
{
"name": "Heartland Payment Systems and Comercia GlobalPayments"
}
],
"require": {
"php": ">= 5.5.9",
"ext-curl": "*",
"ext-dom": "*",
"ext-openssl": "*"
},
"require-dev": {
"phpunit/phpunit": "~5.0",
"squizlabs/php_codesniffer": "2.*",
"phpstan/phpstan-shim": "^0.8.4"
},
"autoload": {
"psr-4": {
"AddonPayments\\Api\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"AddonPayments\\Api\\Tests\\": "test/"
}
},
"config": {
"process-timeout":0
}
}