nucleos / setlistfm
Setlist.fm webservice client for php.
3.5.0
2025-10-12 18:12 UTC
Requires
- php: ^8.3
- ext-json: *
- psr/http-client: ^1.0
- psr/http-factory: ^1.0
- psr/http-message: ^1.0 || ^2.0
- psr/log: ^1.0 || ^2.0 || ^3.0
Requires (Dev)
- ergebnis/composer-normalize: ^2.0.1
- nyholm/psr7: ^1.0
- symfony/http-client: ^6.4 || ^7.0
Suggests
- symfony/http-client: Symfony HTTP client implementation
- 3.6.x-dev
- 3.5.x-dev
- 3.5.0
- 3.4.x-dev
- 3.4.0
- 3.3.x-dev
- 3.3.0
- 3.2.x-dev
- 3.2.0
- 3.1.0
- 3.0.0
- 2.0.0
- 1.0.0
- 0.5.0
- 0.4.1
- 0.4.0
- 0.3.0
- 0.2.0
- 0.1.0
- dev-renovate/phpunit-phpunit-13.x
- dev-dependabot/composer/vendor-bin/tools/symfony/process-7.4.5
- dev-dependabot/composer/vendor-bin/tools/phpunit/phpunit-12.5.8
- dev-renovate/major-symfony
This package is auto-updated.
Last update: 2026-03-30 18:32:39 UTC
README
This library provides a wrapper for using the Setlist.fm API inside PHP and a bridge for symfony.
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
# To define a default http client and message factory
composer require symfony/http-client nyholm/psr7
Usage
General usage
// Create connection use Nucleos\SetlistFm\Builder\ArtistSearchBuilder; use Nucleos\SetlistFm\Connection\PsrClientConnection; use Nucleos\SetlistFm\Service\ArtistService; $connection = new PsrClientConnection($httpClient, $requestFactory); $artistApi = new ArtistService($connection); $artists = $artistApi->search(ArtistSearchBuilder::create() ->withArtistName('Slipknot') );
License
This library is under the MIT license.