-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
49 lines (49 loc) · 1.21 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
43
44
45
46
47
48
49
{
"name": "tepuilabs/mini-meli",
"description": "Genera access token para poder tener acceso a los recursos disponibles de Mercado libre",
"keywords": [
"mercado libre"
],
"homepage": "https://github.com/mini-meli/mini-meli",
"license": "MIT",
"authors": [
{
"name": "Angel",
"email": "[email protected]",
"role": "Developer"
}
],
"require": {
"php": "^8.2",
"guzzlehttp/guzzle": "^7.8.1"
},
"require-dev": {
"laravel/pint": "^1.14",
"pestphp/pest": "^3.0.6",
"spatie/ray": "^1.41.1"
},
"autoload": {
"psr-4": {
"Tepuilabs\\MeliServices\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Tepuilabs\\MeliServices\\Tests\\": "tests"
}
},
"scripts": {
"test": "vendor/bin/pest",
"test-coverage": "vendor/bin/pest --coverage",
"format": "vendor/bin/pint"
},
"config": {
"sort-packages": true,
"allow-plugins": {
"pestphp/pest-plugin": true,
"phpstan/extension-installer": true
}
},
"minimum-stability": "dev",
"prefer-stable": true
}