diff options
author | Hannes Kindströmmer <hannes@kindstrommer.se> | 2017-03-21 10:36:56 +0100 |
---|---|---|
committer | Hannes Kindströmmer <hannes@kindstrommer.se> | 2017-03-21 10:36:56 +0100 |
commit | 98f1fa60caa2cd4ab81439b79cdc3a421604c94b (patch) | |
tree | 3e4f8b4a869581c548d877451179ff257c91d255 | |
parent | 461b0e87833c6fcfb630c6320409ca75bcad1d5f (diff) | |
download | ip1-php-sdk-98f1fa60caa2cd4ab81439b79cdc3a421604c94b.zip ip1-php-sdk-98f1fa60caa2cd4ab81439b79cdc3a421604c94b.tar.gz ip1-php-sdk-98f1fa60caa2cd4ab81439b79cdc3a421604c94b.tar.bz2 |
Add Composer dependency
Signed-off-by: Hannes Kindströmmer <hannes@kindstrommer.se>
-rw-r--r-- | composer.json | 3 | ||||
-rw-r--r-- | composer.lock | 55 |
2 files changed, 55 insertions, 3 deletions
diff --git a/composer.json b/composer.json index ae4ae00..6709dad 100644 --- a/composer.json +++ b/composer.json @@ -18,7 +18,8 @@ } }, "require" : { - "php" : "^7.1.1" + "php" : "^7.1.1", + "nategood/httpful": "*" }, "require-dev": { "squizlabs/php_codesniffer": "2.*", diff --git a/composer.lock b/composer.lock index d4b423e..b1325e5 100644 --- a/composer.lock +++ b/composer.lock @@ -4,8 +4,59 @@ "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#composer-lock-the-lock-file", "This file is @generated automatically" ], - "content-hash": "bd5729524fefc76877a8e06a11224b98", - "packages": [], + "content-hash": "32bf8c165d4db4daab3cbe9d077d8359", + "packages": [ + { + "name": "nategood/httpful", + "version": "0.2.20", + "source": { + "type": "git", + "url": "https://github.com/nategood/httpful.git", + "reference": "c1cd4d46a4b281229032cf39d4dd852f9887c0f6" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/nategood/httpful/zipball/c1cd4d46a4b281229032cf39d4dd852f9887c0f6", + "reference": "c1cd4d46a4b281229032cf39d4dd852f9887c0f6", + "shasum": "" + }, + "require": { + "ext-curl": "*", + "php": ">=5.3" + }, + "require-dev": { + "phpunit/phpunit": "*" + }, + "type": "library", + "autoload": { + "psr-0": { + "Httpful": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Nate Good", + "email": "me@nategood.com", + "homepage": "http://nategood.com" + } + ], + "description": "A Readable, Chainable, REST friendly, PHP HTTP Client", + "homepage": "http://github.com/nategood/httpful", + "keywords": [ + "api", + "curl", + "http", + "requests", + "rest", + "restful" + ], + "time": "2015-10-26T16:11:30+00:00" + } + ], "packages-dev": [ { "name": "doctrine/instantiator", |