2017 © Pedro Peláez
 

library chargify-laravel

Laravel service provider for chargifys API using the chargley chargify SDK.

image

andrewlamers/chargify-laravel

Laravel service provider for chargifys API using the chargley chargify SDK.

  • Thursday, October 29, 2015
  • by emaw
  • Repository
  • 1 Watchers
  • 2 Stars
  • 79 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 2 Forks
  • 0 Open issues
  • 5 Versions
  • 1 % Grown

The README.md

Chargify Wrapper for Laravel 4

This is a wrapper using the chargley chargify SDK. It creates a service provider and facade for autoloading into laravel., (*1)

How to Install

Laravel 5.0

  1. Install the andrewlamers/chargify-laravel package, (*2)

    $ composer require andrewlamers/chargify-laravel
    
  2. Update config/app.php to activate ChargifyLaravel, (*3)

    # Add `ChargifyLaravelServiceProvider` to the `providers` array
    'providers' => array(
        ...
        Andrewlamers\ChargifyLaravel\ChargifyLaravelServiceProvider::class,
    )
    
    # Add the `ChargifyLaravelFacade` to the `aliases` array
    'aliases' => array(
        ...
        'Chargify' => Andrewlamers\ChargifyLaravel\ChargifyLaravelFacade::class
    )
    
  3. Generate a template Chargify config file, (*4)

    $ php artisan vendor:publish
    
  4. Update app/config/chargify.php with your chargify API Information, (*5)

    return array(
        'hostname' => 'mysite.chargify.com',
        'api_key' => 'my chargify api key',
        'shared_key' => 'my chargify shared key'
    );
    

Laravel 4.2

  1. Install the andrewlamers/chargify-laravel 1.* version, (*6)

    $ composer require andrewlamers/chargify-laravel:1.*
    
  2. Update config/app.php to activate ChargifyLaravel, (*7)

    # Add `ChargifyLaravelServiceProvider` to the `providers` array
    'providers' => array(
        ...
        'Andrewlamers\ChargifyLaravel\ChargifyLaravelServiceProvider'
    )
    
    # Add the `ChargifyLaravelFacade` to the `aliases` array
    'aliases' => array(
        ...
        'Chargify' => 'Andrewlamers\ChargifyLaravel\ChargifyLaravelFacade'
    )
    
  3. Generate a template Chargify config file, (*8)

    $ php artisan config:publish andrewlamers/chargify-laravel
    
  4. Update app/config/packages/andrewlamers/chargify-laravel/config.php with your chargify API Information, (*9)

    return array(
        'hostname' => 'mysite.chargify.com',
        'api_key' => 'my chargify api key',
        'shared_key' => 'my chargify shared key'
    );
    

The Versions

29/10 2015

dev-master

9999999-dev https://github.com/andrewlamers/chargify-laravel

Laravel service provider for chargifys API using the chargley chargify SDK.

  Sources   Download

Apache 2.0

The Requires

 

by Andrew Lamers

laravel chargify chargley

23/10 2015

v2.0.0

2.0.0.0 https://github.com/andrewlamers/chargify-laravel

Laravel service provider for chargifys API using the chargley chargify SDK.

  Sources   Download

Apache 2.0

The Requires

 

by Andrew Lamers

laravel chargify chargley

22/10 2015

v1.0.2

1.0.2.0

  Sources   Download

The Requires

 

by Andrew Lamers

21/10 2015

v1.0.1

1.0.1.0

  Sources   Download

The Requires

 

by Andrew Lamers

21/10 2015

v1.0.0

1.0.0.0

  Sources   Download

The Requires

 

by Andrew Lamers