-
Notifications
You must be signed in to change notification settings - Fork 72
1. Instalação
Fernando Henrique Bandeira edited this page May 9, 2018
·
15 revisions
Execute o seguinte comando:
composer require artistas/laravel-pagseguro:1.7.*
Adicione os parâmetros de configuração no seu arquivo .env
PAGSEGURO_SANDBOX=true
PAGSEGURO_EMAIL=
PAGSEGURO_TOKEN=
PAGSEGURO_NOTIFICATION=
Caso esteja usando uma versão do Laravel anterior à 5.5 ou o Lumen, você vai precisar registrar manualmente o service worker e as facades:
Service Worker
Artistas\PagSeguro\PagSeguroServiceProvider::class,
Facades
'PagSeguro' => Artistas\PagSeguro\PagSeguroFacade::class,
'PagSeguroRecorrente' => Artistas\PagSeguro\PagSeguroRecorrenteFacade::class,
'PagSeguroBoleto' => Artistas\PagSeguro\PagSeguroBoletoFacade::class,
Se preferir/precisar também pode publicar o arquivo de configuração da biblioteca, caso não queira utilizar o .env:
php artisan vendor:publish --tag=config