forked from rakuten-ws/rws-php-sdk
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
36 lines (36 loc) · 904 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": "rakuten-ws/rws-php-sdk",
"type": "library",
"homepage": "http://webservice.rakuten.co.jp",
"description": "The SDK of Rakuten Web Service",
"keywords": ["WebAPI", "Client", "SDK"],
"license": "MIT",
"authors": [
{
"name": "Shogo Kawahara",
"email": "shogo.a.kawahara@mail.rakuten.com"
}
],
"require": {
"php": ">=5.5",
"guzzlehttp/guzzle": "^5.3.1|^6.2.1",
"guzzlehttp/psr7": "~1.3.1",
"guzzlehttp/promises": "~1.0",
"mockery/mockery": "^0.9.7"
},
"require-dev": {
"phpunit/phpunit": "~5.0"
},
"suggest": {
"ext-curl": "*",
"pear-pear/HTTP_Client": "*"
},
"autoload": {
"psr-4": { "RakutenRws\\": "lib/RakutenRws/" }
},
"extra": {
"branch-alias": {
"dev-master": "1.1.x-dev"
}
}
}