Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/adhenrique/zoop
Zoop package to Laravel 5.3
https://github.com/adhenrique/zoop
ecommerce gateway payment payment-gateway payments wispot
Last synced: 7 days ago
JSON representation
Zoop package to Laravel 5.3
- Host: GitHub
- URL: https://github.com/adhenrique/zoop
- Owner: adhenrique
- License: mit
- Created: 2017-03-27T19:34:01.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2021-09-29T15:16:17.000Z (about 3 years ago)
- Last Synced: 2024-09-14T12:00:01.924Z (2 months ago)
- Topics: ecommerce, gateway, payment, payment-gateway, payments, wispot
- Language: PHP
- Homepage: http://adhenrique.com.br/zoop-laravel
- Size: 56.6 KB
- Stars: 9
- Watchers: 4
- Forks: 18
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# ZOOP Laravel
Zoop-laravel is a package for **Laravel 5.3+**, which consumes ZOOP payments api's.
> Statistics
[![Latest Stable Version](https://poser.pugx.org/adhenrique/zoop/version)](https://packagist.org/packages/adhenrique/zoop)
[![Total Downloads](https://poser.pugx.org/adhenrique/zoop/downloads)](https://packagist.org/packages/adhenrique/zoop)
[![Latest Unstable Version](https://poser.pugx.org/adhenrique/zoop/v/unstable)](//packagist.org/packages/adhenrique/zoop)
[![License](https://poser.pugx.org/adhenrique/zoop/license)](https://packagist.org/packages/adhenrique/zoop)## Requeriments
* Laravel 5.3+
* PHP 5.6+
* PHP ext-curl
* PHP ext-json
* PHP ext-mbstring## Instalation
### 1 - Composer require
Use composer to install the package and automatically update `composer.json`, running:~~~
composer require adhenrique/zoop
~~~### 2 - Update Laravel configuration
Update your application configuration to register the package in `config/app.php` adding the following line in `'providers'` section:~~~
'providers' => [
//...
Zoop\ZoopServiceProvider::class,
//...
],
~~~### 3 - Publish ZOOP Laravel configuration
Use the following command to publish the configuration settings from config.example.php in `zoop/src/resources/config/`:~~~
php artisan vendor:publish --provider "Zoop\ZoopServiceProvider" --tag="config"
~~~This will create the `config/zoopconfig.php` configuration file. Now, change the following lines:
~~~
'defaults' => [
//...
'publishable_key' => 'YOUR_PUBLISHABLE_KEY',
'marketplace_id' => 'YOUR_MARKETPLACE_ID',
//...
]
~~~...enjoy it :D.
## Usage
### 1 - Tokenizer Credit Card
**In your Controller**
```php
namespace App\Http\Controllers;
use Zoop\src\Facades\ZoopTokens;
class HomeController extends Controller{
$ccToken = ZoopTokens::tokenizeCard([
'holder_name' => 'Makeda Swasey',
'expiration_month' => "12",
'expiration_year' => "2015",
'security_code' => "373",
'card_number' => "4532395075641483",
]);
dd($ccToken);
}
```### 2 - Creating a new Individual Seller
**In your Controller**
```php
namespace App\Http\Controllers;
use Zoop\src\Facades\ZoopSellers;
class HomeController extends Controller{
$individualSeller = ZoopSellers::create([
'first_name' => 'Rodrigo',
'last_name' => "Miranda",
'email' => "[email protected]",
'phone_number' => "+12195465432",
'ssn_last4_digits' => "7551",
'birthdate' => "1983-09-11",
'website' => "http://pagzoop.com",
'facebook' => "https://www.facebook.com/rodrigo",
'twitter' => "http://twitter.com/hypercreative",
]);
dd($individualSeller);
}
```### 3 - Creating a new Buyer
**In your Controller**
```php
namespace App\Http\Controllers;
use Zoop\src\Facades\ZoopBuyers;
class HomeController extends Controller{
$buyer = ZoopBuyers::create([
'first_name' => 'Fabiano',
'last_name' => 'Cruz',
'description' => 'Comprador de teste',
'email' => '[email protected]',
]);
dd($buyer);
}
```### 4 - Card Not Present Transaction
**In your Controller**
```php
namespace App\Http\Controllers;
use Zoop\src\Facades\ZoopChargeCNP;
class HomeController extends Controller{
$cnp = ZoopChargesCNP::create([
'currency' => 'BRL',
'amount' => '100',
'payment_type' => 'credit',
'description' => 'Venda de teste, somente!',
'statement_descriptor' => 'Descrição de testes',
'on_behalf_of' => 'bb2a51f1c22a4c30b6bf6819be87ac52',
'installment_plan' => [
'mode' => 'interest_free',
'number_installments' => '1'
],
'customer' => 'bb2a51f1c22a4c30b6bf6819be87ac52', //buyer id
]);
dd($cnp);
}
```## ZOOP Api Reference
[https://docs.zoop.co/v1/reference](https://docs.zoop.co/v1/reference)