2017 © Pedro Peláez
 

symfony-bundle fastbill-bundle

Symfony2 Bundle for making calls to fastbill.com API

image

dvelopment/fastbill-bundle

Symfony2 Bundle for making calls to fastbill.com API

  • Tuesday, November 26, 2013
  • by dVelopment
  • Repository
  • 1 Watchers
  • 0 Stars
  • 48 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 1 Forks
  • 0 Open issues
  • 1 Versions
  • 0 % Grown

The README.md

FastBillBundle

Symfony 2 Bundle that registers the DVelopment/FastBill library as a service., (*1)

Installation

Install the bundle using composer (see http://getcomposer.org/ for more information about composer), (*2)

composer require dvelopment/fastbill-bundle dev-master

or add the package directly to your composer.json file and run composer update., (*3)

Then just add the bundle to your AppKernel.php file:, (*4)

<?php
// in AppKernel::registerBundles()
$bundles = array(
    // ...
    new DVelopment\FastBillBundle\DVelopmentFastBillBundle(),
    // ...
);

Configuration

You need to configure your FastBill API credentials in config.yml (you can find the API Key inside the Settings area of your account settings on my.fastbill.com), (*5)

d_velopment_fast_bill:
    # the username is your e-mail address
    # used to sign up to FastBill
    username: %fast_bill_username%
    apiKey:   %fast_bill_api_key%

Usage

The API wrapper is available as d_velopment_fast_bill.api service:, (*6)

<?php
$api = $container->get('d_velopment_fast_bill.api');
$customers = $api->getCustomers();

The Versions

26/11 2013

dev-master

9999999-dev https://github.com/dVelopment/FastBillBundle

Symfony2 Bundle for making calls to fastbill.com API

  Sources   Download

MIT

The Requires

 

The Development Requires

by Daniel Holzmann

symfony fastbill