-
Notifications
You must be signed in to change notification settings - Fork 9
/
composer.json
45 lines (45 loc) · 1.06 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": "alma/alma-php-client",
"description": "PHP API client for the Alma payments API",
"version": "2.4.0",
"type": "library",
"require": {
"php": "^5.6 || ~7.0 || ~7.1 || ~7.2 || ~7.3 || ~7.4 || ~8.0 || ~8.1 || ~8.2 || ~8.3",
"psr/log": "^1 || ^2 || ^3",
"ext-curl": "*",
"ext-json": "*",
"ext-simplexml": "*",
"ext-iconv": "*"
},
"require-dev": {
"dealerdirect/phpcodesniffer-composer-installer": "^1.0.0",
"phpcompatibility/php-compatibility": "^9.0",
"phpunit/phpunit": "^5 || ^6 || ^7 || ^8 || ^9 || ^10 || ^11",
"roave/security-advisories": "@dev",
"squizlabs/php_codesniffer": "^3.3",
"mockery/mockery": "^1.3"
},
"license": "MIT",
"authors": [
{
"name": "Alma",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"Alma\\API\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Alma\\API\\Tests\\": "tests/"
}
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
},
"lock": false
}
}