forked from xsolla/xsolla-sdk-php
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
37 lines (37 loc) · 1.1 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
{
"name": "xsolla/xsolla-sdk-php",
"type": "library",
"description":"Xsolla SDK for PHP. Xsolla is the authorized reseller and merchant providing e-commerce services for online games.",
"keywords": ["sdk", "xsolla", "api", "payment", "games"],
"homepage": "http://xsolla.com",
"license": "MIT",
"support": {
"email": "[email protected]",
"issues": "https://github.com/xsolla/xsolla-sdk-php/issues",
"docs": "http://developers.xsolla.com",
"source": "https://github.com/xsolla/xsolla-sdk-php/releases"
},
"require": {
"php": ">=7.1.3",
"ext-curl": "*",
"ext-json": "*",
"guzzlehttp/guzzle": "~6.0",
"symfony/http-foundation": "~2.3 || ~3.0 || ~4.0"
},
"require-dev": {
"phpunit/phpunit": "~7.3",
"symfony/process": "~4.1",
"friendsofphp/php-cs-fixer": "~2.13",
"mtdowling/burgomaster": "^0.0.3"
},
"autoload": {
"psr-4": {
"Xsolla\\SDK\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Xsolla\\SDK\\Tests\\": "tests"
}
}
}