forked from cubes-doo/nestpay
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
44 lines (44 loc) · 1.13 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
{
"name": "readycmsio/nestpay",
"type": "library",
"description": "Nestpay - Forked and modified by Milos Lukic",
"authors": [
{
"name": "Aleksandar Dimic",
"email": "[email protected]"
},
{
"name": "Aleksa Cvijic",
"email": "[email protected]"
},
{
"name": "Milos Lukic",
"email": "[email protected]"
}
],
"license": "MIT",
"keywords": ["nestpay", "php", "composer", "laravel"],
"homepage": "https://github.com/readycmsio/nestpay",
"require": {
"php": ">=5.6",
"ext-curl": "*"
},
"autoload": {
"psr-4": {
"ReadyCMSIO\\Nestpay\\": "src/"
}
},
"suggest": {
"illuminate/support": "Required to integrate with Laravel framework (^5.4)."
},
"extra": {
"laravel": {
"providers": [
"ReadyCMSIO\\Nestpay\\Laravel\\NestpayServiceProvider"
],
"aliases": {
"Nestpay": "ReadyCMSIO\\Nestpay\\Laravel\\Facade"
}
}
}
}