https://github.com/chrismou/php-musicbrainz-wrapper
A simple MusicBrainz API wrapper for PHP, with Guzzle 6 support
https://github.com/chrismou/php-musicbrainz-wrapper
Last synced: 2 months ago
JSON representation
A simple MusicBrainz API wrapper for PHP, with Guzzle 6 support
- Host: GitHub
- URL: https://github.com/chrismou/php-musicbrainz-wrapper
- Owner: chrismou
- License: mit
- Created: 2016-03-23T17:44:15.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2016-03-25T18:41:06.000Z (about 9 years ago)
- Last Synced: 2025-01-28T02:44:48.411Z (4 months ago)
- Language: PHP
- Size: 13.7 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE.md
Awesome Lists containing this project
README
# PHP MusicBrainz API Wrapper
### This package is being actively developed. Only the lookup method has been completely implemented.
[](https://travis-ci.org/chrismou/php-musicbrainz-wrapper)
[](https://codeclimate.com/github/chrismou/php-musicbrainz-wrapper/coverage)
[](https://codeclimate.com/github/chrismou/php-musicbrainz-wrapper)
[](https://www.paypal.me/chrismou)A simple wrapper class for the MusicBrainz API.
## Installation
Once the library is stable, it'll be added to packagist. Until then, you can access it by setting a custom repository in your composer.json.
First, add a reference to the package:
```
"require": {
"chrismou/musicbrainz": "dev-master"
}
```Next, add a custom repository:
```
"repositories": [
{
"type": "vcs",
"name": "chrismou/musicbrainz",
"url": "https://github.com/chrismou/php-musicbrainz-wrapper"
}
]
```Now, running `composer update` should pull in the development package
## Usage
Docs to followw
## Tests
To run the unit test suite:
```
curl -s https://getcomposer.org/installer | php
php composer.phar install
./vendor/bin/phpunit
```If you use docker, you can also run the test suite against all supported PHP versions:
```
./vendor/bin/dunit
```## License
Released under the MIT License. See [LICENSE](LICENSE.md).