2017 © Pedro Peláez
 

library 7digital-bundle

Symfony2 integration of the 7digital php client

image

gquemener/7digital-bundle

Symfony2 integration of the 7digital php client

  • Monday, February 3, 2014
  • by GildasQ
  • Repository
  • 1 Watchers
  • 0 Stars
  • 5 Installations
  • PHP
  • 0 Dependents
  • 1 Suggesters
  • 0 Forks
  • 0 Open issues
  • 4 Versions
  • 0 % Grown

The README.md

7digital API Bundle

This bundle intends to integrate the 7digital API PHP client inside Symfony2., (*1)

Installation

Add the following lines to your composer.json:, (*2)

{
    "require": {
        "gquemener/7digital-bundle": "~1.0"
    }
}

And run php composer.phar update gquemener/7digital-bundle, (*3)

Then, register the bundle in your kernel:, (*4)

# app/AppKernel.php

# ...

class AppKernel extends Kernel
{
    public function registerBundles()
    {
        $bundles = array(
            # ...
            new SevenDigital\SevenDigitalBundle(),
        );

        return $bundles;
    }
}

Configuration

# app/config/config.yml

seven_digital:
    consumer_key: ...
    version: '1.2' # Or any other 7digital API version
    cache:         # A doctrine cache service id

Usage

This bundle provides really basic integration of the 7digital API PHP client, through 5 services:, (*5)

- `7digital_api.client` The configured API client
- `7digital_api.artist` The Artist service
- `7digital_api.track` The Track service
- `7digital_api.release` The Release service
- `7digital_api.tag` The Tag service

Going Further

You can read more about available methods for each service on the 7digital API PHP client repository or on 7digital API Official documentation, (*6)

The Versions

03/02 2014

dev-master

9999999-dev

Symfony2 integration of the 7digital php client

  Sources   Download

MIT

The Requires

 

03/02 2014
31/01 2014
31/01 2014