-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathcomposer.json
47 lines (47 loc) · 1.41 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
{
"name": "instapago/instapago",
"description": "Instapago is a technological solution designed for the market of electronic commerce (eCommerce) in Venezuela and Latin America, with the intention of offering a premium product category, which allows people and companies leverage their expansion capabilities, facilitating payment mechanisms for customers with a friendly integration into systems currently used.",
"keywords": [
"Instapago",
"instapago"
],
"homepage": "https://github.com/abr4xas/instapago",
"license": "MIT",
"authors": [
{
"name": "Angel Cruz",
"email": "[email protected]",
"role": "Developer"
}
],
"require": {
"php": "^8.2|^8.3|^8.4",
"guzzlehttp/guzzle": "^7.9.2"
},
"require-dev": {
"laravel/pint": "^1.18.3",
"mockery/mockery": "^1.6",
"pestphp/pest": "^3.7"
},
"autoload": {
"psr-4": {
"Instapago\\Instapago\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Instapago\\Instapago\\Tests\\": "tests"
}
},
"scripts": {
"test": "vendor/bin/pest",
"test-coverage": "vendor/bin/pest --coverage",
"format": "vendor/bin/pint"
},
"config": {
"sort-packages": true,
"allow-plugins": true
},
"minimum-stability": "dev",
"prefer-stable": true
}