diff options
author | Elmer Thomas <elmer@thinkingserious.com> | 2016-03-20 17:10:09 -0700 |
---|---|---|
committer | Elmer Thomas <elmer@thinkingserious.com> | 2016-03-20 17:10:09 -0700 |
commit | ef6940c8347fbee99978a7b6b025c5c7bfff38f8 (patch) | |
tree | 91efda71798f9214d54a69ed2ee4114a14dc1c78 | |
parent | 37024f15e09e0df1a6dce98a8893e453df796ede (diff) | |
download | php-http-client-ef6940c8347fbee99978a7b6b025c5c7bfff38f8.zip php-http-client-ef6940c8347fbee99978a7b6b025c5c7bfff38f8.tar.gz php-http-client-ef6940c8347fbee99978a7b6b025c5c7bfff38f8.tar.bz2 |
README update
-rw-r--r-- | README.md | 10 |
1 files changed, 6 insertions, 4 deletions
@@ -47,13 +47,15 @@ Add php-http-client to your `composer.json` file. If you are not using [Composer Then at the top of your PHP script require the autoloader: -```bash -require 'vendor/autoload.php'; +```php +require __DIR__ . '/vendor/autoload.php'; ``` -or +Then from the command line: -`pear install php-http-client` +```bash +`composer install` +``` ## Usage ## |