diff options
author | Elmer Thomas <elmer@thinkingserious.com> | 2016-03-20 17:52:51 -0700 |
---|---|---|
committer | Elmer Thomas <elmer@thinkingserious.com> | 2016-03-20 17:52:51 -0700 |
commit | 3e52d93ef8aa82067761aceaa42d1df6cf0ac71d (patch) | |
tree | 4cdb046f8c547a52f6c276842f46ec3c6d3d4375 | |
parent | d1891f42dff89bf85f558680199c3e9871ac8a0e (diff) | |
download | php-http-client-3e52d93ef8aa82067761aceaa42d1df6cf0ac71d.zip php-http-client-3e52d93ef8aa82067761aceaa42d1df6cf0ac71d.tar.gz php-http-client-3e52d93ef8aa82067761aceaa42d1df6cf0ac71d.tar.bz2 |
Update for Packagist
-rw-r--r-- | .gitignore | 3 | ||||
-rw-r--r-- | composer.json | 66 |
2 files changed, 31 insertions, 38 deletions
@@ -1,3 +1,4 @@ .env *.lock -vendor/
\ No newline at end of file +vendor/ +*.old diff --git a/composer.json b/composer.json index cd4a1b6..90e2e12 100644 --- a/composer.json +++ b/composer.json @@ -1,39 +1,31 @@ - { - "name": "sendgrid/php-http-client", - "description": "HTTP REST client, simplified for Python", - "type": "library", - "version": "1.0.0", - "homepage": "http://github.com/sendgrid/php-http-client", - "license": "MIT", - "keywords": ["SendGrid", "HTTP", "REST", "API", "Fluent"], - "require": { - "php": ">=5.3" - }, - "authors": [ - { + "name": "sendgrid/php-http-client", + "description": "HTTP REST client, simplified for Python", + "type": "library", + "version": "1.0.0", + "require-dev": { + "phpunit/phpunit": "^5.2", + "squizlabs/php_codesniffer": "^2.5" + }, + "homepage": "http://github.com/sendgrid/php-http-client", + "keywords": ["SendGrid", "HTTP", "REST", "API", "Fluent"], + "license": "MIT", + "authors": [ + { "name": "Matt Bernier", - "email": "dx@sendgrid.com", - "homepage": "https://www.sendgrid.com", - "role": "Product Manager" - }, - { - "name": "Elmer Thomas", - "email": "dx@sendgrid.com", - "homepage": "https://www.sendgrid.com", - "role": "Developer" - } - ], - "support": { - "email": "dx@sendgrid.com", - "issues": "https://github.com/sendgrid/php-http-client/issues", - "source": "https://github.com/php-http-client" - }, - "require-dev": { - "phpunit/phpunit": "~4.4", - "squizlabs/php_codesniffer": "2.*" - }, - "autoload": { - "psr-0": {"SendGrid": "lib/"} - } -}
\ No newline at end of file + "email": "dx@sendgrid.com" + }, + { + "name": "Elmer Thomas", + "email": "elmer@thinkingserious.com" + } + ], + "require": { + "php": ">=5.3" + }, + "autoload": { + "psr-0": { + "SendGrid": "lib/" + } + } +} |