-
Notifications
You must be signed in to change notification settings - Fork 7
/
composer.json
executable file
·51 lines (51 loc) · 1.7 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
45
46
47
48
49
50
51
{
"name": "hestabit/payments",
"description": "This is simple and easy to use Laravel and Lumen package for using multiple payment gateways in a single place. Now you don't need to install multiple packages for multiple payment gateways. Here we provide 2 of most widely used Payment Gateways (PayPal, Stripe) having easy to use methods such as pay(), invoice(), refund() etc.",
"authors": [
{
"name": "Hestabit",
"email": "[email protected]",
"homepage": "https://github.com/Hestabit"
},
{
"name": "Aman Kumar",
"email": "[email protected]",
"homepage": "https://github.com/amanhestabit",
"role": "Developer"
}
],
"homepage": "https://github.com/Hestabit/payments",
"keywords": ["Laravel", "Payments", "PayPal", "Stripe", "Payment Gateway", "Multi Payment Gateways"],
"require": {
"php": ">=5.3.0",
"illuminate/support": "~5",
"cartalyst/stripe-laravel": ">=4.0.0",
"anouar/paypalpayment": ">=3.0"
},
"require-dev": {
"phpunit/phpunit": "~7.0",
"mockery/mockery": "^1.1",
"orchestra/testbench": "~3.0",
"sempro/phpunit-pretty-print": "^1.0"
},
"autoload": {
"psr-4": {
"Hestabit\\Payments\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Hestabit\\Payments\\Tests\\": "tests"
}
},
"extra": {
"laravel": {
"providers": [
"Hestabit\\Payments\\PaymentsServiceProvider"
],
"aliases": {
"Payments": "Hestabit\\Payments\\Facades\\Payments"
}
}
}
}