bodecon/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

Installs: 4

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 1

Forks: 0

pkg:composer/bodecon/deezer-album-info

1.0.7 2022-02-24 11:31 UTC

This package is auto-updated.

Last update: 2025-10-24 19:58:19 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);