From 67fef88946cf27907c9e7e8bbe90c66da4905443 Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Mon, 20 Mar 2017 09:18:44 +0100 Subject: php-mikealmond-musicbrainz: backport --- composer.json | 37 +++++++++++++++++++++++++++++++++++++ 1 file changed, 37 insertions(+) create mode 100644 composer.json (limited to 'composer.json') diff --git a/composer.json b/composer.json new file mode 100644 index 0000000..d49f792 --- /dev/null +++ b/composer.json @@ -0,0 +1,37 @@ +{ + "name": "mikealmond/musicbrainz", + "type": "library", + "description": "A PHP library for accessing the MusicBrainz API", + "keywords": ["musicbrainz", "library", "php", "api"], + "homepage": "https://github.com/mikealmond/musicbrainz", + "license": "MIT", + "authors": [ + { + "name": "Mike Almond", + "email": "mike.almond@gmail.com", + "homepage": "http://mikealmond.com", + "role": "Developer" + } + ], + "require": { + "php": ">=5.3.8" + }, + "require-dev": { + "guzzle/guzzle": "~3.8.0", + "phpunit/phpunit": "3.7.*" + }, + "suggest": { + "guzzle/guzzle": "Allows you to use the GuzzleHttpAdapter. You must install one of the supported adapters.", + "rmccue/requests": "Allows you to use the RequestsHttpAdapter. You must install one of the supported adapters." + }, + "autoload": { + "psr-0": { + "MusicBrainz": "src/" + } + }, + "extra": { + "branch-alias": { + "dev-master": "0.2.x-dev" + } + } +} -- cgit