forked from baileyherbert/envato.php
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
33 lines (33 loc) · 838 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
{
"name": "baileyherbert/envato",
"description": "Complete PHP client for the Envato API.",
"type": "library",
"keywords": ["envato", "envato api", "envato v3", "envato market"],
"homepage": "https://bailey.sh/",
"version": "2.0.4",
"license": "MIT",
"authors": [
{
"name": "Bailey Herbert",
"email": "[email protected]",
"homepage": "https://github.com/baileyherbert"
}
],
"require": {
"php": ">=5.5",
"guzzlehttp/guzzle": "^6.3 || ^7.0"
},
"require-dev": {
"phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.4"
},
"autoload": {
"psr-4": {
"Herbert\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Herbert\\Tests\\Envato\\": "tests/"
}
}
}