-
Notifications
You must be signed in to change notification settings - Fork 23
/
composer.json
38 lines (38 loc) · 931 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
37
38
{
"name": "baileyherbert/envato",
"description": "Client library for the Envato API that supports Personal Tokens and OAuth.",
"type": "library",
"keywords": ["envato", "envato api", "envato v3", "envato market", "envato oauth"],
"homepage": "https://bailey.sh/",
"version": "3.1.0",
"license": "MIT",
"authors": [
{
"name": "Bailey Herbert",
"email": "hello@bailey.sh",
"homepage": "https://bailey.sh/"
}
],
"require": {
"php": ">=5.5",
"guzzlehttp/guzzle": "^6.0 || ^7.0"
},
"require-dev": {
"symfony/phpunit-bridge": "^5.2.12"
},
"autoload": {
"psr-4": {
"Herbert\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Herbert\\Tests\\Envato\\": "tests/"
}
},
"archive": {
"exclude": [
"/stubs"
]
}
}