wernerdweight/spotify-api-client-bundle

Symfony bundle wrapper for wernerdweight/spotify-api-client.

0.2.0 2019-12-09 06:45 UTC

README

This bundle wraps SpotifyApiClient into Symfony Bundle.

Build Status Latest Stable Version Total Downloads License

Installation

  1. Download using composer
composer require wernerdweight/spotify-api-client-bundle
  1. Enable the bundle

Enable the bundle in your kernel:

    <?php
    // config/bundles.php
    return [
        // ...
        WernerDweight\SpotifyApiClientBundle\SpotifyApiClientBundle::class => ['all' => true],
    ];
  1. Use in your project
use WernerDweight\SpotifyApiClientBundle\Service\ApiFactory;

class MyService
{
    // TODO:
}

License

This bundle is under the MIT license. See the complete license in the root directiory of the bundle.