-
Notifications
You must be signed in to change notification settings - Fork 6
/
composer.json
36 lines (36 loc) · 966 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": "pitchero/reseller-club",
"description": "A PHP SDK for the ResellerClub API.",
"license": "MIT",
"keywords": ["resellerclub", "reseller-club", "email", "hosting", "api"],
"type": "library",
"authors": [
{
"name": "Robert Rosebury",
"email": "[email protected]"
},
{
"name": "Martin Bean",
"email": "[email protected]"
}
],
"support": {
"issues": "https://github.com/Pitchero/ResellerClub/issues",
"source": "https://github.com/Pitchero/ResellerClub"
},
"require": {
"php": ">=7.0.0",
"guzzlehttp/guzzle": "~6.0",
"nesbot/carbon": "~1.20 || ~2.0",
"moneyphp/money": "~3.0"
},
"require-dev": {
"phpunit/phpunit": "^6.4 || ^8.0",
"symfony/var-dumper": "^3.3"
},
"autoload": {
"psr-4": {
"ResellerClub\\": "src/"
}
}
}