forked from gpupo/mercadolivre-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
42 lines (42 loc) · 1.05 KB
/
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
39
40
41
42
{
"name": "gpupo/mercadolivre-sdk",
"description": "SDK Não Oficial para integração a partir de aplicações PHP com APIs Mercadolivre",
"homepage": "https://opensource.gpupo.com/mercadolivre-sdk/",
"authors": [
{
"name": "Gilmar Pupo",
"email": "contact@gpupo.com"
}
],
"keywords": ["mercadolivre", "marketplace", "sdk", "api"],
"license": "MIT",
"require": {
"php": ">=7.4 || ^8.0",
"gpupo/common-sdk": "^5.4 || ^6.5"
},
"require-dev": {
"gpupo/common-dev": "*"
},
"autoload": {
"psr-4": {
"Gpupo\\MercadolivreSdk\\": "src"
},
"classmap": [
"Resources/3rd/mercadolibre/"
]
},
"autoload-dev": {
"psr-4": {
"Gpupo\\MercadolivreSdk\\Tests\\": "tests"
}
},
"bin": ["bin/mercadolivre-sdk"],
"scripts": {
"test": "phpunit"
},
"config": {
"preferred-install": "dist"
},
"minimum-stability": "dev",
"prefer-stable": true
}