From 2191a87a007dc978d978eb9fb04e70f68b41bf34 Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Mon, 27 Feb 2017 12:28:32 +0100 Subject: php-opencloud: sync with Fedora --- composer.json | 38 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 38 insertions(+) create mode 100644 composer.json (limited to 'composer.json') diff --git a/composer.json b/composer.json new file mode 100644 index 0000000..68d4336 --- /dev/null +++ b/composer.json @@ -0,0 +1,38 @@ +{ + "name": "rackspace/php-opencloud", + "description": "PHP SDK for Rackspace/OpenStack APIs", + "keywords": ["rackspace", "openstack", "opencloud", "swift", "nova"], + "type": "library", + "license": "Apache-2.0", + "authors": [ + { + "name": "Jamie Hannaford", + "email": "jamie.hannaford@rackspace.com", + "homepage" : "https://github.com/jamiehannaford" + } + ], + "autoload": { + "psr-0": { + "OpenCloud": ["lib/"] + } + }, + "autoload-dev": { + "psr-0": { + "OpenCloud": ["tests/"] + } + }, + "require": { + "php" : ">=5.4", + "guzzle/guzzle" : "~3.8", + "psr/log": "~1.0", + "mikemccabe/json-patch-php": "~0.1" + }, + "require-dev" : { + "phpunit/phpunit": "4.3.*", + "phpspec/prophecy": "~1.4", + "satooshi/php-coveralls": "0.6.*@dev", + "jakub-onderka/php-parallel-lint": "0.*", + "fabpot/php-cs-fixer": "1.0.*@dev", + "apigen/apigen": "~4.0" + } +} -- cgit