-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
33 lines (33 loc) · 883 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
{
"name": "michelmelo/laravel-easypay",
"description": "EasyPay :: Checkout, Transparente e Pagamento Recorrente(Assinaturas) no Laravel 5.*",
"type": "library",
"license": "MIT",
"keywords": ["laravel", "EasyPay", "transparente", "recorrente", "assinaturas"],
"authors": [
{
"name": "Michel Melo",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"MichelMelo\\EasyPay\\": "src/"
}
},
"minimum-stability": "dev",
"require": {
"php": ">=5.5.9",
"illuminate/support": "^5.2|^6.0"
},
"extra": {
"laravel": {
"providers": [
"MichelMelo\\EasyPay\\EasyPayServiceProvider"
],
"aliases": {
"EasyPay": "MichelMelo\\EasyPay\\EasyPayFacade"
}
}
}
}