Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/nucleos/nucleossetlistfmbundle
🔌 This bundle provides services for using the setlist.fm API with symfony.
https://github.com/nucleos/nucleossetlistfmbundle
api bundle hacktoberfest php setlist setlistfm symfony symfony-bundle webservice-client
Last synced: 24 days ago
JSON representation
🔌 This bundle provides services for using the setlist.fm API with symfony.
- Host: GitHub
- URL: https://github.com/nucleos/nucleossetlistfmbundle
- Owner: nucleos
- License: mit
- Created: 2019-01-18T16:18:54.000Z (almost 6 years ago)
- Default Branch: 1.4.x
- Last Pushed: 2024-11-12T05:29:13.000Z (about 2 months ago)
- Last Synced: 2024-12-16T03:10:48.966Z (24 days ago)
- Topics: api, bundle, hacktoberfest, php, setlist, setlistfm, symfony, symfony-bundle, webservice-client
- Language: PHP
- Homepage: https://nucleos.rocks
- Size: 1.07 MB
- Stars: 3
- Watchers: 2
- Forks: 3
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- Funding: .github/FUNDING.yml
- License: LICENSE.md
- Codeowners: .github/CODEOWNERS
Awesome Lists containing this project
README
NucleosSetlistFmBundle
======================
[![Latest Stable Version](https://poser.pugx.org/nucleos/setlistfm-bundle/v/stable)](https://packagist.org/packages/nucleos/setlistfm-bundle)
[![Latest Unstable Version](https://poser.pugx.org/nucleos/setlistfm-bundle/v/unstable)](https://packagist.org/packages/nucleos/setlistfm-bundle)
[![License](https://poser.pugx.org/nucleos/setlistfm-bundle/license)](https://packagist.org/packages/nucleos/setlistfm-bundle)[![Total Downloads](https://poser.pugx.org/nucleos/setlistfm-bundle/downloads)](https://packagist.org/packages/nucleos/setlistfm-bundle)
[![Monthly Downloads](https://poser.pugx.org/nucleos/setlistfm-bundle/d/monthly)](https://packagist.org/packages/nucleos/setlistfm-bundle)
[![Daily Downloads](https://poser.pugx.org/nucleos/setlistfm-bundle/d/daily)](https://packagist.org/packages/nucleos/setlistfm-bundle)[![Continuous Integration](https://github.com/nucleos/NucleosSetlistFmBundle/actions/workflows/continuous-integration.yml/badge.svg?event=push)](https://github.com/nucleos/NucleosSetlistFmBundle/actions?query=workflow%3A"Continuous+Integration"+event%3Apush)
[![Code Coverage](https://codecov.io/gh/nucleos/NucleosSetlistFmBundle/graph/badge.svg)](https://codecov.io/gh/nucleos/NucleosSetlistFmBundle)
[![Type Coverage](https://shepherd.dev/github/nucleos/NucleosSetlistFmBundle/coverage.svg)](https://shepherd.dev/github/nucleos/NucleosSetlistFmBundle)This library provides a symfony bundle for [Setlist.fm PHP API](https://github.com/nucleos/setlistfm-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 nucleos/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:
```php
// config/bundles.phpreturn [
// ...
Nucleos\SetlistFmBundle\NucleosSetlistFmBundle::class => ['all' => true],
];
```## Configure the Bundle
Create a configuration file called `nucleos_setlistfm.yaml`:
```yaml
# config/packages/nucleos_setlistfm.yamlnucleos_setlistfm:
api:
key: "%setlistfm_api.key%"http:
client: 'httplug.client'
message_factory: 'nyholm.psr7.psr17_factory'
```## License
This library is under the [MIT license](LICENSE.md).
[Setlist.fm API]: https://api.setlist.fm