summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorElmer Thomas <elmer@thinkingserious.com>2016-03-20 17:52:51 -0700
committerElmer Thomas <elmer@thinkingserious.com>2016-03-20 17:52:51 -0700
commit3e52d93ef8aa82067761aceaa42d1df6cf0ac71d (patch)
tree4cdb046f8c547a52f6c276842f46ec3c6d3d4375
parentd1891f42dff89bf85f558680199c3e9871ac8a0e (diff)
downloadphp-http-client-3e52d93ef8aa82067761aceaa42d1df6cf0ac71d.zip
php-http-client-3e52d93ef8aa82067761aceaa42d1df6cf0ac71d.tar.gz
php-http-client-3e52d93ef8aa82067761aceaa42d1df6cf0ac71d.tar.bz2
Update for Packagist
-rw-r--r--.gitignore3
-rw-r--r--composer.json66
2 files changed, 31 insertions, 38 deletions
diff --git a/.gitignore b/.gitignore
index 0c1e887..eb4ad22 100644
--- a/.gitignore
+++ b/.gitignore
@@ -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/"
+ }
+ }
+}