nucleos/lastfm-bundle

This bundle provides services for using the last.fm API with symfony.

Installs: 890

Dependents: 0

Suggesters: 0

Security: 0

Stars: 2

Watchers: 1

Forks: 2

Open Issues: 2

Type:symfony-bundle

pkg:composer/nucleos/lastfm-bundle

1.4.0 2024-08-14 16:26 UTC

README

Latest Stable Version Latest Unstable Version License

Total Downloads Monthly Downloads Daily Downloads

Continuous Integration Code Coverage

This bundle provides a wrapper for using the Last.fm API inside symfony.

Installation

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

composer require nucleos/lastfm-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 [
    // ...
    Nucleos\LastFmBundle\NucleosLastFmBundle::class => ['all' => true],
];

Configure the Bundle

Define the API credentials in your configuration.

# config/packages/nucleos_lastfm.yaml

nucleos_lastfm:
    api:
        app_id:         "%lastfm_api.id%"
        shared_secret:  "%lastfm_api.secret%"

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

License

This bundle is under the MIT license.