k.kirillov/deezer-album-info

There is no license information available for the latest version (1.0.7) of this package.

Get album info by album ID from deezer

1.0.7 2022-02-24 11:31 UTC

This package is auto-updated.

Last update: 2024-09-24 17:19:09 UTC


README

Get album info from deezer by ID and

Requirements

php >= 8.0
'json' php-ext
Guzzle HTTP Client 7.4.x

Installation

composer require k.kirillov/deezer-album-info

Usage

fetch album data:
$service = new GetMainAlbumInfoService();
$info = $service->findInfoByAlbumId($albumId)

fetch tracklist:
$service = new GetTracklistService();
$tracklist = $service->get($albumId);