forked from artistas/laravel-pagseguro
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
34 lines (34 loc) · 1.03 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
{
"name": "tratofeito/laravel-pagseguro",
"description": "PagSeguro Checkout Transparente e Pagamento Recorrente(Assinaturas) no Laravel",
"type": "library",
"license": "MIT",
"keywords": ["laravel", "pagseguro", "transparente", "recorrente", "assinaturas"],
"authors": [
{
"name": "Fernando Henrique Bandeira",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"Artistas\\PagSeguro\\": "src/Artistas/"
}
},
"minimum-stability": "dev",
"require": {
"php": ">=5.5.9"
},
"extra": {
"laravel": {
"providers": [
"Artistas\\PagSeguro\\PagSeguroServiceProvider"
],
"aliases": {
"PagSeguro": "Artistas\\PagSeguro\\PagSeguroFacade",
"PagSeguroRecorrente": "Artistas\\PagSeguro\\PagSeguroRecorrenteFacade",
"PagSeguroBoleto": "Artistas\\PagSeguro\\PagSeguroBoletoFacade"
}
}
}
}