dev-master
9999999-devProject to use API Cielo Php Sdk with Laravel Framework
MIT
The Requires
- php >=7.0
- developercielo/api-3.0-php dev-master
The Development Requires
by Samuel Martins
laravel api gateway e-commerce cielo
Project to use API Cielo Php Sdk with Laravel Framework
This package just get the credential keys from config/cielo.php
file and create a new instance of Cielo\API30\Ecommerce\CieloEcommerce;
from official Cielo Sdk 3.0 package when you use the facade SMartins\Cielo\Facades\Cielo;
., (*1)
To see the methods available on package go to Cielo Sdk Docs., (*2)
To install via composer run:, (*3)
composer require smartins/cielo-laravel
In Laravel 5.5 the service provider and facade will automatically get registered. In older versions of the framework just add the service provider and facade in config/app.php file:, (*4)
'providers' => [ SMartins\Cielo\CieloServiceProvider::class, ], 'aliases' => [ 'Cielo' => SMartins\Cielo\Facades\Cielo::class, ],
Publish the config/cielo.php
file:, (*5)
php artisan vendor:publish --provider="SMartins\Cielo\CieloServiceProvider"
Set on your .env
the cielo credentials:, (*6)
CIELO_ID=981273423 CIELO_KEY=a9sj8fl4jnlsjfis90js0afja0sdJASDOF90ja CIELO_ENV=sandbox
The values accepted on CIELO_ENV
are sandbox
and production
, (*7)
Project to use API Cielo Php Sdk with Laravel Framework
MIT
laravel api gateway e-commerce cielo