core23/setlistfm-bundle

This package is abandoned and no longer maintained. The author suggests using the nucleos/setlistfm-bundle package instead.

This bundle provides services for using the setlist.fm API inside the symfony.

dev-master / 0.x-dev 2020-06-22 06:07 UTC

This package is auto-updated.

Last update: 2020-06-28 15:01:07 UTC


README

Latest Stable Version Latest Unstable Version License

Total Downloads Monthly Downloads Daily Downloads

Continuous Integration Code Coverage

This library provides a symfony bundle for Setlist.fm PHP API.

Installation

Open a command console, enter your project directory and execute the following command to download the latest stable version of this library:

composer require core23/setlistfm-bundle
# To define a default http client and message factory
composer require symfony/http-client nyholm/psr7

Enable the Bundle

Then, enable the bundle by adding it to the list of registered bundles in config/bundles.php file of your project:

// config/bundles.php

return [
    // ...
    Core23\SetlistFmBundle\Core23SetlistFmBundle::class => ['all' => true],
];

Configure the Bundle

Create a configuration file called core23_setlistfm.yaml:

# config/packages/core23_setlistfm.yaml

core23_setlistfm:
    api:
        key:    "%setlistfm_api.key%"

    http:
        client: 'httplug.client'
        message_factory: 'nyholm.psr7.psr17_factory'

License

This library is under the MIT license.