From cee897727acd54ce977be4510f06bfdf6f4577a0 Mon Sep 17 00:00:00 2001 From: Naveen Gopala Date: Fri, 19 Feb 2016 13:56:59 -0800 Subject: [PATCH] Updated the composer and readme files --- README.md | 8 ++++++-- composer.json | 4 ++-- 2 files changed, 8 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 8aae2832..7e7144b9 100644 --- a/README.md +++ b/README.md @@ -14,13 +14,17 @@ Installation You can install the bindings via Composer. Run the following command: - composer require docusign/docusign-esign + composer require docusign/docusign-esign + +To use the bindings, use Composer's autoload: + + require_once('vendor/autoload.php'); ### Manual Install If you do not wish to use Composer, you can download the latest release. Then, to use the bindings, include the init.php file. - require_once('/path/to/docusign-esign/autoload.php'); + require_once('/path/to/docusign-esign-client/autoload.php'); #### Dependencies diff --git a/composer.json b/composer.json index 10e7bac8..7ec51b02 100644 --- a/composer.json +++ b/composer.json @@ -1,5 +1,5 @@ { - "name": "DocuSign/DocuSign-eSign", + "name": "DocuSign/eSign-client", "version": "2.0.0", "description": "The DocuSign PHP library makes integrating DocuSign into your websites a super fast and painless process. The library is open sourced on GitHub, look for the docusign-php-client repository. Join the eSign revolution!", "keywords": [ @@ -28,6 +28,6 @@ "squizlabs/php_codesniffer": "~2.0" }, "autoload": { - "files": [ "autoload.php" ] + "psr-4": { "DocuSign\\eSign\\" : "src/" } } }