From e82e910b97960a8cd65be69fe67745786f154bf5 Mon Sep 17 00:00:00 2001 From: Eugene Terentev Date: Mon, 29 Jan 2018 11:53:43 +0200 Subject: [PATCH] composer.json fix --- README.md | 2 +- composer.json | 10 +++++----- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index cd14703..5dd8774 100644 --- a/README.md +++ b/README.md @@ -24,4 +24,4 @@ $client->getGlobals(); ``` # License -See [LICENSE](https://github.com/rentberry/coinmarketcap-api-php/blob/master/LICENSE) +MIT. See [LICENSE](https://github.com/rentberry/coinmarketcap-api-php/blob/master/LICENSE) diff --git a/composer.json b/composer.json index c169734..5a557f4 100644 --- a/composer.json +++ b/composer.json @@ -3,8 +3,13 @@ "description": "Coinmarketcap API PHP client", "type": "library", "require": { + "php": "^7.1", + "ext-bcmath": "@stable", "guzzlehttp/guzzle": "^6.3" }, + "require-dev": { + "phpunit/phpunit": "^6.5" + }, "license": "MIT", "minimum-stability": "stable", "autoload": { @@ -12,11 +17,6 @@ "Rentberry\\Coinmarketcap\\": "src/" } }, - "require-dev": { - "php": "^7.1", - "ext-bcmath": "@stable", - "phpunit/phpunit": "^6.5" - }, "autoload-dev": { "psr-4": { "Rentberry\\Coinmarketcap\\Tests\\": "tests/"