-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathcomposer.json
More file actions
75 lines (75 loc) · 1.87 KB
/
Copy pathcomposer.json
File metadata and controls
75 lines (75 loc) · 1.87 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "codetech/laravel-eupago",
"description": "Eupago payment gateway integration for Laravel — Multibanco, MB WAY, PayShop and PaysafeCard payments.",
"keywords": [
"laravel",
"eupago",
"payment",
"payment-gateway",
"multibanco",
"mbway",
"payshop",
"paysafecard",
"portugal"
],
"authors": [
{
"name": "José Osório",
"email": "jfrosorio@gmail.com",
"role": "Developer"
}
],
"license": "MIT",
"require": {
"php": "^8.1",
"guzzlehttp/guzzle": "^7.0",
"illuminate/broadcasting": "^10.0|^11.0|^12.0|^13.0",
"illuminate/cache": "^10.0|^11.0|^12.0|^13.0",
"illuminate/database": "^10.0|^11.0|^12.0|^13.0",
"illuminate/http": "^10.0|^11.0|^12.0|^13.0",
"illuminate/log": "^10.0|^11.0|^12.0|^13.0",
"illuminate/queue": "^10.0|^11.0|^12.0|^13.0",
"illuminate/routing": "^10.0|^11.0|^12.0|^13.0",
"illuminate/support": "^10.0|^11.0|^12.0|^13.0",
"illuminate/validation": "^10.0|^11.0|^12.0|^13.0",
"nesbot/carbon": "^2.0|^3.0"
},
"autoload": {
"psr-4": {
"CodeTech\\EuPago\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"CodeTech\\EuPago\\Tests\\": "tests/"
}
},
"minimum-stability": "stable",
"prefer-stable": true,
"extra": {
"laravel": {
"providers": [
"CodeTech\\EuPago\\Providers\\EuPagoServiceProvider"
]
}
},
"require-dev": {
"doctrine/dbal": "^3.6",
"larastan/larastan": "^2.9|^3.0",
"laravel/pint": "^1.0",
"orchestra/testbench": "^8.0|^9.0|^10.0|^11.0",
"pestphp/pest": "^2.36|^3.0"
},
"config": {
"allow-plugins": {
"pestphp/pest-plugin": true
},
"sort-packages": true
},
"scripts": {
"analyse": "vendor/bin/phpstan analyse --memory-limit=1G",
"format": "vendor/bin/pint",
"lint": "vendor/bin/pint --test",
"test": "vendor/bin/pest"
}
}