2017 © Pedro Peláez
 

library laravel-affiliate-network

agnostic helpers to use as foundation in packages and other project

image

padosoft/laravel-affiliate-network

agnostic helpers to use as foundation in packages and other project

  • Friday, July 13, 2018
  • by lopadova
  • Repository
  • 7 Watchers
  • 18 Stars
  • 548 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 8 Forks
  • 1 Open issues
  • 100 Versions
  • 14 % Grown

The README.md

Affiliate Networks API wrapper to provide common interface for affiliate networks publish API like Zanoz, Tradedoubler, Commission Junction etc...

Latest Version on Packagist Software License Build Status Quality Score Total Downloads SensioLabsInsight, (*1)

The goal of this Laravel package is to wrap the Publisher Network Affiliate API like Zanox, Tradedoubler, Commission Junction etc.. and provide simple methods to get deals and sales report and return a common interface for your use., (*2)

Overview

Common methods are: - getDeals : get the network deals. - getSales : get the network sales. - getStats : get the network deals stats. - getMerchants : get the network merchants. - checkLogin : check if logged in network. - login : login in into network. - getTrackingParameter : get network tracking params. - loadAvailableNetworks : get all available network. - hasNetwork : check if network are available. - addNetwork : add a network class that implements Network interface., (*3)

Requires

  • php: >=7.0.0
  • illuminate/support
  • padosoft/support

Installation

You can install the package via composer:, (*4)

$ composer require padosoft/laravel-affiliate-network

You must install this service provider., (*5)

``` php // config/app.php 'provider' => [ ... Padosoft\AffiliateNetwork\AffiliateNetworkServiceProvider::class, ... ];, (*6)

You don't need to register the command in app/Console/Kernel.php, because it provides by AffiliateNetworkServiceProvider register() method.

You can publish the config file of this package with this command:
``` bash
php artisan vendor:publish --provider="Padosoft\AffiliateNetwork\AffiliateNetworkServiceProvider"

The following config file will be published in config/laravel-affiliate-network.php ``` php return array( 'zanox' => array( 'username' => env( 'ZANOX_USERNAME', 'padosoft' ), 'password' => env( 'ZANOX_PASSWORD', '' ) ), 'tradedoubler' => array( 'username' => env( 'TRADEDOUBLER_USERNAME', 'padosoft' ), 'password' => env( 'TRADEDOUBLER_PASSWORD', '' ) ), 'commissionjunction' => array( 'username' => env( 'COMMISSIONJUNCTION_USERNAME', 'padosoft' ), 'password' => env( 'COMMISSIONJUNCTION_PASSWORD', '' ) ), );, (*7)


In your app config folder you can copy from src/config/.env.example the settings for yours .env file used in laravel-affiliate-network.php. If you use mathiasgrimm/laravel-env-validator in src/config folder you'll find an example for validate the env settings. ## Networks Supported - CommissionJunction - Effiliation - Netaffiliation - Publicideas.com - TradeDoubler - Zanox - WebGains ## Usage Create new php file, add composer autoload and start using functions. ```php <?php require "vendor/autoload.php"; //if not in laravel need to define this functions if (!function_exists('public_path')){ function public_path(){ return dirname(__FILE__); } } $objNetworkManager= new NetworkManager(); $objNetworkManager->login('Zanox',$_ENV['ZANOX_USERNAME'], $_ENV['ZANOX_PASSWORD']); $isLogged = $objNetworkManager->checkLogin('Zanox'); if ($isLogged){ echo '

Deals

'; $arrDeals = $objNetworkManager->getDeals('Zanox'); echo '
';
    var_dump($arrDeals);
    echo '
'; }

In Laravel:, (*8)


$networkManager=app(NetworkManager::class); $dateFrom=new DateTime(); $dateTo= new DateTime(); //if you want to specify specific Merchant: $arrMerchantID = array( array('cid' => '9716', 'name' => 'Zalando IT') ); $networkManager->login('Zanox',$_ENV['ZANOX_USERNAME'], $_ENV['ZANOX_PASSWORD']); $isLogged = $networkManager->checkLogin('Zanox'); if ($isLogged){ echo '

Transactions

'; $transactions = $networkManager->getSales('Zanox',$dateFrom,$dateTo,$arrMerchantID); echo '

Deals

'; $arrDeals = $networkManager->getDeals('Zanox'); echo '
';
    var_dump($arrDeals);
    echo '
'; }

Change log

Please see CHANGELOG for more information what has changed recently., (*9)

Testing

bash $ composer test, (*10)

Contributing

Please see CONTRIBUTING for details., (*11)

Security

If you discover any security related issues, please email instead of using the issue tracker., (*12)

Credits

About Padosoft

Padosoft (https://www.padosoft.com) is a software house based in Florence, Italy. Specialized in E-commerce and web sites., (*13)

License

The MIT License (MIT). Please see License File for more information., (*14)

The Versions

13/07 2018

dev-master

9999999-dev https://github.com/padosoft/laravel-affiliate-network

agnostic helpers to use as foundation in packages and other project

  Sources   Download

MIT

The Requires

 

The Development Requires

wrapper affiliate network padosoft

13/07 2018

2.6.32

2.6.32.0 https://github.com/padosoft/laravel-affiliate-network

agnostic helpers to use as foundation in packages and other project

  Sources   Download

MIT

The Requires

 

The Development Requires

wrapper affiliate network padosoft

09/07 2018

2.6.31

2.6.31.0 https://github.com/padosoft/laravel-affiliate-network

agnostic helpers to use as foundation in packages and other project

  Sources   Download

MIT

The Requires

 

The Development Requires

wrapper affiliate network padosoft

28/06 2018

2.6.30

2.6.30.0 https://github.com/padosoft/laravel-affiliate-network

agnostic helpers to use as foundation in packages and other project

  Sources   Download

MIT

The Requires

 

The Development Requires

wrapper affiliate network padosoft

15/06 2018

2.6.29

2.6.29.0 https://github.com/padosoft/laravel-affiliate-network

agnostic helpers to use as foundation in packages and other project

  Sources   Download

MIT

The Requires

 

The Development Requires

wrapper affiliate network padosoft

14/06 2018

2.6.28

2.6.28.0 https://github.com/padosoft/laravel-affiliate-network

agnostic helpers to use as foundation in packages and other project

  Sources   Download

MIT

The Requires

 

The Development Requires

wrapper affiliate network padosoft

04/06 2018

2.6.27

2.6.27.0 https://github.com/padosoft/laravel-affiliate-network

agnostic helpers to use as foundation in packages and other project

  Sources   Download

MIT

The Requires

 

The Development Requires

wrapper affiliate network padosoft

01/06 2018

2.6.26

2.6.26.0 https://github.com/padosoft/laravel-affiliate-network

agnostic helpers to use as foundation in packages and other project

  Sources   Download

MIT

The Requires

 

The Development Requires

wrapper affiliate network padosoft

26/04 2018

2.6.25

2.6.25.0 https://github.com/padosoft/laravel-affiliate-network

agnostic helpers to use as foundation in packages and other project

  Sources   Download

MIT

The Requires

 

The Development Requires

wrapper affiliate network padosoft

24/04 2018

2.6.24

2.6.24.0 https://github.com/padosoft/laravel-affiliate-network

agnostic helpers to use as foundation in packages and other project

  Sources   Download

MIT

The Requires

 

The Development Requires

wrapper affiliate network padosoft

23/04 2018

2.6.23

2.6.23.0 https://github.com/padosoft/laravel-affiliate-network

agnostic helpers to use as foundation in packages and other project

  Sources   Download

MIT

The Requires

 

The Development Requires

wrapper affiliate network padosoft

20/04 2018

2.6.22

2.6.22.0 https://github.com/padosoft/laravel-affiliate-network

agnostic helpers to use as foundation in packages and other project

  Sources   Download

MIT

The Requires

 

The Development Requires

wrapper affiliate network padosoft

16/04 2018

2.6.21

2.6.21.0 https://github.com/padosoft/laravel-affiliate-network

agnostic helpers to use as foundation in packages and other project

  Sources   Download

MIT

The Requires

 

The Development Requires

wrapper affiliate network padosoft

04/04 2018

2.6.20

2.6.20.0 https://github.com/padosoft/laravel-affiliate-network

agnostic helpers to use as foundation in packages and other project

  Sources   Download

MIT

The Requires

 

The Development Requires

wrapper affiliate network padosoft

26/03 2018

2.6.19

2.6.19.0 https://github.com/padosoft/laravel-affiliate-network

agnostic helpers to use as foundation in packages and other project

  Sources   Download

MIT

The Requires

 

The Development Requires

wrapper affiliate network padosoft

21/03 2018

2.6.18

2.6.18.0 https://github.com/padosoft/laravel-affiliate-network

agnostic helpers to use as foundation in packages and other project

  Sources   Download

MIT

The Requires

 

The Development Requires

wrapper affiliate network padosoft

05/03 2018

2.6.17

2.6.17.0 https://github.com/padosoft/laravel-affiliate-network

agnostic helpers to use as foundation in packages and other project

  Sources   Download

MIT

The Requires

 

The Development Requires

wrapper affiliate network padosoft

27/02 2018

2.6.16

2.6.16.0 https://github.com/padosoft/laravel-affiliate-network

agnostic helpers to use as foundation in packages and other project

  Sources   Download

MIT

The Requires

 

The Development Requires

wrapper affiliate network padosoft

29/01 2018

2.6.15

2.6.15.0 https://github.com/padosoft/laravel-affiliate-network

agnostic helpers to use as foundation in packages and other project

  Sources   Download

MIT

The Requires

 

The Development Requires

wrapper affiliate network padosoft

01/01 2018

2.6.14

2.6.14.0 https://github.com/padosoft/laravel-affiliate-network

agnostic helpers to use as foundation in packages and other project

  Sources   Download

MIT

The Requires

 

The Development Requires

wrapper affiliate network padosoft

01/01 2018

2.6.13

2.6.13.0 https://github.com/padosoft/laravel-affiliate-network

agnostic helpers to use as foundation in packages and other project

  Sources   Download

MIT

The Requires

 

The Development Requires

wrapper affiliate network padosoft

01/01 2018

2.6.12

2.6.12.0 https://github.com/padosoft/laravel-affiliate-network

agnostic helpers to use as foundation in packages and other project

  Sources   Download

MIT

The Requires

 

The Development Requires

wrapper affiliate network padosoft

13/12 2017

2.6.11

2.6.11.0 https://github.com/padosoft/laravel-affiliate-network

agnostic helpers to use as foundation in packages and other project

  Sources   Download

MIT

The Requires

 

The Development Requires

wrapper affiliate network padosoft

13/12 2017

2.6.10

2.6.10.0 https://github.com/padosoft/laravel-affiliate-network

agnostic helpers to use as foundation in packages and other project

  Sources   Download

MIT

The Requires

 

The Development Requires

wrapper affiliate network padosoft

30/11 2017

2.6.9

2.6.9.0 https://github.com/padosoft/laravel-affiliate-network

agnostic helpers to use as foundation in packages and other project

  Sources   Download

MIT

The Requires

 

The Development Requires

wrapper affiliate network padosoft

29/11 2017

2.6.8

2.6.8.0 https://github.com/padosoft/laravel-affiliate-network

agnostic helpers to use as foundation in packages and other project

  Sources   Download

MIT

The Requires

 

The Development Requires

wrapper affiliate network padosoft

29/11 2017

2.6.7

2.6.7.0 https://github.com/padosoft/laravel-affiliate-network

agnostic helpers to use as foundation in packages and other project

  Sources   Download

MIT

The Requires

 

The Development Requires

wrapper affiliate network padosoft

29/11 2017

2.6.6

2.6.6.0 https://github.com/padosoft/laravel-affiliate-network

agnostic helpers to use as foundation in packages and other project

  Sources   Download

MIT

The Requires

 

The Development Requires

wrapper affiliate network padosoft

14/11 2017

2.6.5

2.6.5.0 https://github.com/padosoft/laravel-affiliate-network

agnostic helpers to use as foundation in packages and other project

  Sources   Download

MIT

The Requires

 

The Development Requires

wrapper affiliate network padosoft

14/11 2017

2.6.4

2.6.4.0 https://github.com/padosoft/laravel-affiliate-network

agnostic helpers to use as foundation in packages and other project

  Sources   Download

MIT

The Requires

 

The Development Requires

wrapper affiliate network padosoft

10/11 2017

2.6.3

2.6.3.0 https://github.com/padosoft/laravel-affiliate-network

agnostic helpers to use as foundation in packages and other project

  Sources   Download

MIT

The Requires

 

The Development Requires

wrapper affiliate network padosoft

10/11 2017

2.6.2

2.6.2.0 https://github.com/padosoft/laravel-affiliate-network

agnostic helpers to use as foundation in packages and other project

  Sources   Download

MIT

The Requires

 

The Development Requires

wrapper affiliate network padosoft

24/10 2017

2.6.1

2.6.1.0 https://github.com/padosoft/laravel-affiliate-network

agnostic helpers to use as foundation in packages and other project

  Sources   Download

MIT

The Requires

 

The Development Requires

wrapper affiliate network padosoft

24/10 2017

2.6.0

2.6.0.0 https://github.com/padosoft/laravel-affiliate-network

agnostic helpers to use as foundation in packages and other project

  Sources   Download

MIT

The Requires

 

The Development Requires

wrapper affiliate network padosoft

19/10 2017

2.5.9

2.5.9.0 https://github.com/padosoft/laravel-affiliate-network

agnostic helpers to use as foundation in packages and other project

  Sources   Download

MIT

The Requires

 

The Development Requires

wrapper affiliate network padosoft

19/10 2017

2.5.8

2.5.8.0 https://github.com/padosoft/laravel-affiliate-network

agnostic helpers to use as foundation in packages and other project

  Sources   Download

MIT

The Requires

 

The Development Requires

wrapper affiliate network padosoft

18/10 2017

2.5.7

2.5.7.0 https://github.com/padosoft/laravel-affiliate-network

agnostic helpers to use as foundation in packages and other project

  Sources   Download

MIT

The Requires

 

The Development Requires

wrapper affiliate network padosoft

16/10 2017

2.5.6

2.5.6.0 https://github.com/padosoft/laravel-affiliate-network

agnostic helpers to use as foundation in packages and other project

  Sources   Download

MIT

The Requires

 

The Development Requires

wrapper affiliate network padosoft

12/10 2017

2.5.5

2.5.5.0 https://github.com/padosoft/laravel-affiliate-network

agnostic helpers to use as foundation in packages and other project

  Sources   Download

MIT

The Requires

 

The Development Requires

wrapper affiliate network padosoft

04/10 2017

2.5.4

2.5.4.0 https://github.com/padosoft/laravel-affiliate-network

agnostic helpers to use as foundation in packages and other project

  Sources   Download

MIT

The Requires

 

The Development Requires

wrapper affiliate network padosoft

26/09 2017

2.5.3

2.5.3.0 https://github.com/padosoft/laravel-affiliate-network

agnostic helpers to use as foundation in packages and other project

  Sources   Download

MIT

The Requires

 

The Development Requires

wrapper affiliate network padosoft

22/09 2017

2.5.2

2.5.2.0 https://github.com/padosoft/laravel-affiliate-network

agnostic helpers to use as foundation in packages and other project

  Sources   Download

MIT

The Requires

 

The Development Requires

wrapper affiliate network padosoft

22/09 2017

2.5.1

2.5.1.0 https://github.com/padosoft/laravel-affiliate-network

agnostic helpers to use as foundation in packages and other project

  Sources   Download

MIT

The Requires

 

The Development Requires

wrapper affiliate network padosoft

21/09 2017

2.5.0

2.5.0.0 https://github.com/padosoft/laravel-affiliate-network

agnostic helpers to use as foundation in packages and other project

  Sources   Download

MIT

The Requires

 

The Development Requires

wrapper affiliate network padosoft

18/09 2017

2.4.9

2.4.9.0 https://github.com/padosoft/laravel-affiliate-network

agnostic helpers to use as foundation in packages and other project

  Sources   Download

MIT

The Requires

 

The Development Requires

wrapper affiliate network padosoft

01/09 2017

2.4.8

2.4.8.0 https://github.com/padosoft/laravel-affiliate-network

agnostic helpers to use as foundation in packages and other project

  Sources   Download

MIT

The Requires

 

The Development Requires

wrapper affiliate network padosoft

01/09 2017

2.4.7

2.4.7.0 https://github.com/padosoft/laravel-affiliate-network

agnostic helpers to use as foundation in packages and other project

  Sources   Download

MIT

The Requires

 

The Development Requires

wrapper affiliate network padosoft

05/07 2017

2.4.6

2.4.6.0 https://github.com/padosoft/laravel-affiliate-network

agnostic helpers to use as foundation in packages and other project

  Sources   Download

MIT

The Requires

 

The Development Requires

wrapper affiliate network padosoft

05/07 2017

2.4.5

2.4.5.0 https://github.com/padosoft/laravel-affiliate-network

agnostic helpers to use as foundation in packages and other project

  Sources   Download

MIT

The Requires

 

The Development Requires

wrapper affiliate network padosoft

04/07 2017

2.4.4

2.4.4.0 https://github.com/padosoft/laravel-affiliate-network

agnostic helpers to use as foundation in packages and other project

  Sources   Download

MIT

The Requires

 

The Development Requires

wrapper affiliate network padosoft

04/07 2017

2.4.3

2.4.3.0 https://github.com/padosoft/laravel-affiliate-network

agnostic helpers to use as foundation in packages and other project

  Sources   Download

MIT

The Requires

 

The Development Requires

wrapper affiliate network padosoft

29/06 2017

2.4.2

2.4.2.0 https://github.com/padosoft/laravel-affiliate-network

agnostic helpers to use as foundation in packages and other project

  Sources   Download

MIT

The Requires

 

The Development Requires

wrapper affiliate network padosoft

28/06 2017

2.4.1

2.4.1.0 https://github.com/padosoft/laravel-affiliate-network

agnostic helpers to use as foundation in packages and other project

  Sources   Download

MIT

The Requires

 

The Development Requires

wrapper affiliate network padosoft

27/06 2017

2.4.0

2.4.0.0 https://github.com/padosoft/laravel-affiliate-network

agnostic helpers to use as foundation in packages and other project

  Sources   Download

MIT

The Requires

 

The Development Requires

wrapper affiliate network padosoft

26/06 2017

2.3.9

2.3.9.0 https://github.com/padosoft/laravel-affiliate-network

agnostic helpers to use as foundation in packages and other project

  Sources   Download

MIT

The Requires

 

The Development Requires

wrapper affiliate network padosoft

26/06 2017

2.3.8

2.3.8.0 https://github.com/padosoft/laravel-affiliate-network

agnostic helpers to use as foundation in packages and other project

  Sources   Download

MIT

The Requires

 

The Development Requires

wrapper affiliate network padosoft

22/06 2017

2.3.7

2.3.7.0 https://github.com/padosoft/laravel-affiliate-network

agnostic helpers to use as foundation in packages and other project

  Sources   Download

MIT

The Requires

 

The Development Requires

wrapper affiliate network padosoft

20/06 2017

2.3.6

2.3.6.0 https://github.com/padosoft/laravel-affiliate-network

agnostic helpers to use as foundation in packages and other project

  Sources   Download

MIT

The Requires

 

The Development Requires

wrapper affiliate network padosoft

18/05 2017

2.3.4

2.3.4.0 https://github.com/padosoft/laravel-affiliate-network

agnostic helpers to use as foundation in packages and other project

  Sources   Download

MIT

The Requires

 

The Development Requires

wrapper affiliate network padosoft

18/05 2017

2.3.5

2.3.5.0 https://github.com/padosoft/laravel-affiliate-network

agnostic helpers to use as foundation in packages and other project

  Sources   Download

MIT

The Requires

 

The Development Requires

wrapper affiliate network padosoft

18/05 2017

2.3.3

2.3.3.0 https://github.com/padosoft/laravel-affiliate-network

agnostic helpers to use as foundation in packages and other project

  Sources   Download

MIT

The Requires

 

The Development Requires

wrapper affiliate network padosoft

12/05 2017

2.3.2

2.3.2.0 https://github.com/padosoft/laravel-affiliate-network

agnostic helpers to use as foundation in packages and other project

  Sources   Download

MIT

The Requires

 

The Development Requires

wrapper affiliate network padosoft

11/05 2017

2.3.1

2.3.1.0 https://github.com/padosoft/laravel-affiliate-network

agnostic helpers to use as foundation in packages and other project

  Sources   Download

MIT

The Requires

 

The Development Requires

wrapper affiliate network padosoft

05/05 2017

2.3.0

2.3.0.0 https://github.com/padosoft/laravel-affiliate-network

agnostic helpers to use as foundation in packages and other project

  Sources   Download

MIT

The Requires

 

The Development Requires

wrapper affiliate network padosoft

04/05 2017

2.2.9

2.2.9.0 https://github.com/padosoft/laravel-affiliate-network

agnostic helpers to use as foundation in packages and other project

  Sources   Download

MIT

The Requires

 

The Development Requires

wrapper affiliate network padosoft

03/05 2017

2.2.8

2.2.8.0 https://github.com/padosoft/laravel-affiliate-network

agnostic helpers to use as foundation in packages and other project

  Sources   Download

MIT

The Requires

 

The Development Requires

wrapper affiliate network padosoft

03/05 2017

2.2.7

2.2.7.0 https://github.com/padosoft/laravel-affiliate-network

agnostic helpers to use as foundation in packages and other project

  Sources   Download

MIT

The Requires

 

The Development Requires

wrapper affiliate network padosoft

27/04 2017

2.2.6

2.2.6.0 https://github.com/padosoft/laravel-affiliate-network

agnostic helpers to use as foundation in packages and other project

  Sources   Download

MIT

The Requires

 

The Development Requires

wrapper affiliate network padosoft

27/04 2017

2.2.5

2.2.5.0 https://github.com/padosoft/laravel-affiliate-network

agnostic helpers to use as foundation in packages and other project

  Sources   Download

MIT

The Requires

 

The Development Requires

wrapper affiliate network padosoft

27/04 2017

2.2.4

2.2.4.0 https://github.com/padosoft/laravel-affiliate-network

agnostic helpers to use as foundation in packages and other project

  Sources   Download

MIT

The Requires

 

The Development Requires

wrapper affiliate network padosoft

26/04 2017

2.2.2

2.2.2.0 https://github.com/padosoft/laravel-affiliate-network

agnostic helpers to use as foundation in packages and other project

  Sources   Download

MIT

The Requires

 

The Development Requires

wrapper affiliate network padosoft

26/04 2017

2.2.3

2.2.3.0 https://github.com/padosoft/laravel-affiliate-network

agnostic helpers to use as foundation in packages and other project

  Sources   Download

MIT

The Requires

 

The Development Requires

wrapper affiliate network padosoft

26/04 2017

2.2.1

2.2.1.0 https://github.com/padosoft/laravel-affiliate-network

agnostic helpers to use as foundation in packages and other project

  Sources   Download

MIT

The Requires

 

The Development Requires

wrapper affiliate network padosoft

26/04 2017

2.2.0

2.2.0.0 https://github.com/padosoft/laravel-affiliate-network

agnostic helpers to use as foundation in packages and other project

  Sources   Download

MIT

The Requires

 

The Development Requires

wrapper affiliate network padosoft

26/04 2017

2.1.9

2.1.9.0 https://github.com/padosoft/laravel-affiliate-network

agnostic helpers to use as foundation in packages and other project

  Sources   Download

MIT

The Requires

 

The Development Requires

wrapper affiliate network padosoft

26/04 2017

2.1.8

2.1.8.0 https://github.com/padosoft/laravel-affiliate-network

agnostic helpers to use as foundation in packages and other project

  Sources   Download

MIT

The Requires

 

The Development Requires

wrapper affiliate network padosoft

26/04 2017

2.1.7

2.1.7.0 https://github.com/padosoft/laravel-affiliate-network

agnostic helpers to use as foundation in packages and other project

  Sources   Download

MIT

The Requires

 

The Development Requires

wrapper affiliate network padosoft

26/04 2017

2.1.6

2.1.6.0 https://github.com/padosoft/laravel-affiliate-network

agnostic helpers to use as foundation in packages and other project

  Sources   Download

MIT

The Requires

 

The Development Requires

wrapper affiliate network padosoft

26/04 2017

2.1.5

2.1.5.0 https://github.com/padosoft/laravel-affiliate-network

agnostic helpers to use as foundation in packages and other project

  Sources   Download

MIT

The Requires

 

The Development Requires

wrapper affiliate network padosoft

26/04 2017

2.1.4

2.1.4.0 https://github.com/padosoft/laravel-affiliate-network

agnostic helpers to use as foundation in packages and other project

  Sources   Download

MIT

The Requires

 

The Development Requires

wrapper affiliate network padosoft

24/04 2017

2.1.3

2.1.3.0 https://github.com/padosoft/laravel-affiliate-network

agnostic helpers to use as foundation in packages and other project

  Sources   Download

MIT

The Requires

 

The Development Requires

wrapper affiliate network padosoft

24/04 2017

2.1.2

2.1.2.0 https://github.com/padosoft/laravel-affiliate-network

agnostic helpers to use as foundation in packages and other project

  Sources   Download

MIT

The Requires

 

The Development Requires

wrapper affiliate network padosoft

24/04 2017

2.1.1

2.1.1.0 https://github.com/padosoft/laravel-affiliate-network

agnostic helpers to use as foundation in packages and other project

  Sources   Download

MIT

The Requires

 

The Development Requires

wrapper affiliate network padosoft

21/04 2017

2.1.0

2.1.0.0 https://github.com/padosoft/laravel-affiliate-network

agnostic helpers to use as foundation in packages and other project

  Sources   Download

MIT

The Requires

 

The Development Requires

wrapper affiliate network padosoft

21/04 2017

2.0.9

2.0.9.0 https://github.com/padosoft/laravel-affiliate-network

agnostic helpers to use as foundation in packages and other project

  Sources   Download

MIT

The Requires

 

The Development Requires

wrapper affiliate network padosoft

13/04 2017

2.0.8

2.0.8.0 https://github.com/padosoft/laravel-affiliate-network

agnostic helpers to use as foundation in packages and other project

  Sources   Download

MIT

The Requires

 

The Development Requires

wrapper affiliate network padosoft

12/04 2017

2.0.7

2.0.7.0 https://github.com/padosoft/laravel-affiliate-network

agnostic helpers to use as foundation in packages and other project

  Sources   Download

MIT

The Requires

 

The Development Requires

wrapper affiliate network padosoft

11/04 2017

2.0.6

2.0.6.0 https://github.com/padosoft/laravel-affiliate-network

agnostic helpers to use as foundation in packages and other project

  Sources   Download

MIT

The Requires

 

The Development Requires

wrapper affiliate network padosoft

11/04 2017

2.0.5

2.0.5.0 https://github.com/padosoft/laravel-affiliate-network

agnostic helpers to use as foundation in packages and other project

  Sources   Download

MIT

The Requires

 

The Development Requires

wrapper affiliate network padosoft

11/04 2017

2.0.4

2.0.4.0 https://github.com/padosoft/laravel-affiliate-network

agnostic helpers to use as foundation in packages and other project

  Sources   Download

MIT

The Requires

 

The Development Requires

wrapper affiliate network padosoft

11/04 2017

2.0.3

2.0.3.0 https://github.com/padosoft/laravel-affiliate-network

agnostic helpers to use as foundation in packages and other project

  Sources   Download

MIT

The Requires

 

The Development Requires

wrapper affiliate network padosoft

11/04 2017

2.0.2

2.0.2.0 https://github.com/padosoft/laravel-affiliate-network

agnostic helpers to use as foundation in packages and other project

  Sources   Download

MIT

The Requires

 

The Development Requires

wrapper affiliate network padosoft

11/04 2017

2.0.1

2.0.1.0 https://github.com/padosoft/laravel-affiliate-network

agnostic helpers to use as foundation in packages and other project

  Sources   Download

MIT

The Requires

 

The Development Requires

wrapper affiliate network padosoft

11/04 2017

2.0.0

2.0.0.0 https://github.com/padosoft/laravel-affiliate-network

agnostic helpers to use as foundation in packages and other project

  Sources   Download

MIT

The Requires

 

The Development Requires

wrapper affiliate network padosoft

06/04 2017

1.0.9

1.0.9.0 https://github.com/padosoft/laravel-affiliate-network

agnostic helpers to use as foundation in packages and other project

  Sources   Download

MIT

The Requires

 

The Development Requires

wrapper affiliate network padosoft

24/03 2017

1.0.8

1.0.8.0 https://github.com/padosoft/laravel-affiliate-network

agnostic helpers to use as foundation in packages and other project

  Sources   Download

MIT

The Requires

 

The Development Requires

wrapper affiliate network padosoft

16/03 2017

1.0.7

1.0.7.0 https://github.com/padosoft/laravel-affiliate-network

agnostic helpers to use as foundation in packages and other project

  Sources   Download

MIT

The Requires

 

The Development Requires

wrapper affiliate network padosoft

15/03 2017

1.0.6

1.0.6.0 https://github.com/padosoft/laravel-affiliate-network

agnostic helpers to use as foundation in packages and other project

  Sources   Download

MIT

The Requires

 

The Development Requires

wrapper affiliate network padosoft

14/03 2017

1.0.5

1.0.5.0 https://github.com/padosoft/laravel-affiliate-network

agnostic helpers to use as foundation in packages and other project

  Sources   Download

MIT

The Requires

 

The Development Requires

wrapper affiliate network padosoft

01/03 2017

1.0.4

1.0.4.0 https://github.com/padosoft/laravel-affiliate-network

agnostic helpers to use as foundation in packages and other project

  Sources   Download

MIT

The Requires

 

The Development Requires

wrapper affiliate network padosoft