forked from zhooravell/skrill-php-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
36 lines (36 loc) · 799 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
36
{
"name": "zhooravell/skrill-php-client",
"description": "Skrill api wrapper.",
"license": "MIT",
"type": "library",
"require": {
"php": ">=7.2",
"ext-mbstring": "*",
"ext-json": "*",
"ext-SimpleXML": "*",
"ext-filter": "*",
"guzzlehttp/guzzle": "6.*",
"moneyphp/money": "^3.2"
},
"require-dev": {
"infection/infection": "^0.15.3",
"phpunit/phpunit": "^7.0"
},
"autoload": {
"files": [
"src/helpers.php"
],
"psr-4": {
"Skrill\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Skrill\\Tests\\": "tests/"
}
},
"config": {
"sort-packages": true,
"optimize-autoloader": true
}
}