forked from nahid/envato-php
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
47 lines (46 loc) · 1.14 KB
/
composer.json
File metadata and controls
47 lines (46 loc) · 1.14 KB
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
39
40
41
42
43
44
45
46
47
{
"name": "nahid/envato-php",
"description": "Envato PHP is a PHP client for envato API",
"keywords": ["envato", "php", "api", "envato-api", "envato-php-api", "laravel-envato-api", "laravel"],
"type": "library",
"license": "CC(1.0)",
"require": {
"php": ">=5.6",
"guzzlehttp/guzzle": "^7.0.1",
"duncan3dc/sessions": "^1.0"
},
"require-dev": {
"graham-campbell/testbench": "^3.1",
"phpunit/phpunit": "^4.8 || ^5.0"
},
"authors": [
{
"name": "Nahid Bin Azhar",
"email": "nahid.dns@gmail.com"
}
],
"autoload": {
"psr-4": {
"Nahid\\EnvatoPHP\\": "src/"
},
"files": [
]
},
"minimum-stability": "dev",
"prefer-stable": true,
"extra": {
"laravel": {
"providers": [
"Nahid\\EnvatoPHP\\EnvatoServiceProvider"
],
"aliases": {
"Envato": "Nahid\\EnvatoPHP\\Facades\\Envato"
}
}
},
"config": {
"allow-plugins": {
"kylekatarnls/update-helper": true
}
}
}