diff options
author | Remi Collet <remi@remirepo.net> | 2018-07-06 08:38:58 +0200 |
---|---|---|
committer | Remi Collet <remi@remirepo.net> | 2018-07-06 08:38:58 +0200 |
commit | 2a78bb8762b2b50ffeeefb1a279f95a16b4282c8 (patch) | |
tree | ff4510da7c4cca4d0ed0154d6298e022c31f6c83 /composer.json | |
parent | 86d522c30cee6ce06dddbc99e3de686147d5412a (diff) |
Diffstat (limited to 'composer.json')
-rw-r--r-- | composer.json | 59 |
1 files changed, 59 insertions, 0 deletions
diff --git a/composer.json b/composer.json new file mode 100644 index 0000000..7abc54b --- /dev/null +++ b/composer.json @@ -0,0 +1,59 @@ +{ + "name": "php-opencloud/openstack", + "description": "PHP SDK for OpenStack APIs. Supports BlockStorage, Compute, Identity, Images, Networking and Metric Gnocchi", + "keywords": [ + "php", + "openstack", + "api", + "sdk" + ], + "homepage": "https://github.com/php-opencloud/openstack", + "license": "Apache-2.0", + "authors": [ + { + "name": "Jamie Hannaford", + "email": "jamie.hannaford@rackspace.com", + "homepage" : "https://github.com/jamiehannaford" + }, + { + "name": "Ha Phan", + "email": "thanhha.work@gmail.com", + "homepage" : "https://github.com/haphan" + } + ], + "autoload": { + "psr-4": { + "OpenStack\\": "src/" + } + }, + "autoload-dev": { + "psr-4": { + "OpenStack\\Test\\": "tests/unit/", + "OpenStack\\Integration\\": "tests/integration/" + } + }, + "repositories": [ + { + "type": "vcs", + "url": "https://github.com/php-opencloud/Sami" + } + ], + "require": { + "php": "~7.0", + "guzzlehttp/guzzle": "~6.1", + "justinrainbow/json-schema": "~5.2" + }, + "require-dev": { + "phpunit/phpunit": "^6.5", + "sami/sami": "dev-master", + "psr/log": "^1.0", + "satooshi/php-coveralls": "^2.0", + "jakub-onderka/php-parallel-lint": "^1.0", + "friendsofphp/php-cs-fixer": "^2.9" + }, + "extra": { + "branch-alias": { + "dev-master": "3.0-dev" + } + } +} |