-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
46 lines (46 loc) · 1000 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
38
39
40
41
42
43
44
45
46
{
"name": "addgod/laravel-omnipay",
"description": "A larvel integration for Omnipay",
"type": "library",
"keywords": [
"gateway",
"merchant",
"omnipay",
"pay",
"payment",
"transfer",
"laravel"
],
"minimum-stability": "dev",
"require": {
"laravel/framework": "~5|~6|~7|~8|~9",
"league/omnipay": "~3"
},
"autoload": {
"psr-4": {
"Addgod\\Omnipay\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Addgod\\Omnipay\\Tests\\": "tests/"
}
},
"extra": {
"laravel": {
"providers": [
"Addgod\\Omnipay\\ServiceProvider"
],
"aliases": {
"Omnipay": "Addgod\\Omnipay\\Facade"
}
}
},
"license": "MIT",
"authors": [
{
"name": "Jesper Kold-Hansen",
"email": "[email protected]"
}
]
}