-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathcomposer.json
More file actions
56 lines (56 loc) · 1.27 KB
/
composer.json
File metadata and controls
56 lines (56 loc) · 1.27 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
48
49
50
51
52
53
54
55
56
{
"name": "potelo/gu-payment",
"description": "GuPayment fornece uma interface para controlar assinaturas do iugu.com",
"keywords": ["laravel", "iugu", "billing", "pagamentos"],
"license": "MIT",
"authors": [
{
"name": "Gabriel Peixoto",
"email": "gabriel@potelo.com.br"
}
],
"repositories": [
{
"type": "git",
"url": "https://github.com/Potelo/iugu-php.git"
}
],
"require": {
"php": ">=7.4",
"iugu/iugu": "dev-master",
"dompdf/dompdf": "^2.0"
},
"require-dev": {
"orchestra/testbench": "7.x"
},
"autoload": {
"psr-4": {
"Potelo\\GuPayment\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Potelo\\GuPayment\\Tests\\": "tests/"
}
},
"extra": {
"laravel": {
"providers": [
"Potelo\\GuPayment\\GuPaymentServiceProvider"
]
}
},
"config": {
"allow-plugins": {
"kylekatarnls/update-helper": true
}
},
"scripts": {
"test": [
"Composer\\Config::disableProcessTimeout",
"phpunit"
]
},
"prefer-stable": true,
"minimum-stability": "dev"
}