-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
37 lines (37 loc) · 946 Bytes
/
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
{
"name": "laravel-paynamics/paygate",
"description": "Laravel 10 and 11 service provider for Paynamics Paygate SDK",
"type": "library",
"license": "MIT",
"autoload": {
"psr-4": {
"Laravel\\Paynamics\\Paygate\\": "src/"
}
},
"authors": [
{
"name": "Ormel",
"email": "60385109+ormelflores@users.noreply.github.com"
}
],
"require": {
"php": "^8.1|^8.2",
"illuminate/support": "^10.0|^11.0"
},
"extra": {
"frameworks": ["Laravel 10", "Laravel 11"],
"laravel": {
"providers": [
"Laravel\\Paynamics\\Paygate\\Laravel\\ServiceProvider"
]
}
},
"minimum-stability": "stable",
"prefer-stable": true,
"repositories": [
{
"type": "vcs",
"url": "https://github.com/ormelflores/paynamics-paygate.git"
}
]
}