{"id":17085187,"url":"https://github.com/tucker-eric/laravel-docusign","last_synced_at":"2025-04-10T00:19:56.672Z","repository":{"id":8509038,"uuid":"59772280","full_name":"Tucker-Eric/Laravel-Docusign","owner":"Tucker-Eric","description":"A Laravel 6 wrapper for the DocuSign Rest Client","archived":false,"fork":false,"pushed_at":"2024-04-25T21:55:33.000Z","size":22,"stargazers_count":39,"open_issues_count":3,"forks_count":17,"subscribers_count":5,"default_branch":"master","last_synced_at":"2024-10-30T08:18:57.674Z","etag":null,"topics":["api-wrapper","docusign","docusign-client","docusign-rest","laravel","laravel-docusign"],"latest_commit_sha":null,"homepage":"","language":"PHP","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/Tucker-Eric.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE.txt","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2016-05-26T18:07:36.000Z","updated_at":"2024-04-25T21:53:53.000Z","dependencies_parsed_at":"2024-06-19T01:45:28.282Z","dependency_job_id":null,"html_url":"https://github.com/Tucker-Eric/Laravel-Docusign","commit_stats":{"total_commits":20,"total_committers":9,"mean_commits":"2.2222222222222223","dds":0.65,"last_synced_commit":"538cef23fce68362411ca4d4222c2efe6faabe1d"},"previous_names":[],"tags_count":16,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Tucker-Eric%2FLaravel-Docusign","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Tucker-Eric%2FLaravel-Docusign/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Tucker-Eric%2FLaravel-Docusign/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Tucker-Eric%2FLaravel-Docusign/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Tucker-Eric","download_url":"https://codeload.github.com/Tucker-Eric/Laravel-Docusign/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248131689,"owners_count":21052896,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["api-wrapper","docusign","docusign-client","docusign-rest","laravel","laravel-docusign"],"created_at":"2024-10-14T13:23:33.268Z","updated_at":"2025-04-10T00:19:56.649Z","avatar_url":"https://github.com/Tucker-Eric.png","language":"PHP","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Laravel Docusign\nA Laravel wrapper for the [Docusign Rest Client](https://github.com/Tucker-Eric/docusign-rest-client)\n\n### Install Through Composer\n\n```\ncomposer require tucker-eric/laravel-docusign\n```\n\nIf you are using Laravel 6 or a newer version the package will automatically register its service provider. You only need to generate the config file.\n\nAfter updating composer, add the service provider to the `providers` array in `config/app.php`\n\n```php\nLaravelDocusign\\DocusignServiceProvider::class\n```\n\nAdd the facade to the `aliases` array in `config/app.php`\n\n```php\n'DocuSign'  =\u003e LaravelDocusign\\Facades\\DocuSign::class,\n```\n\nGenerate the config file:\n```\nphp artisan vendor:publish --provider=\"LaravelDocusign\\DocusignServiceProvider\"\n```\nAdd the following to your `.env` file (matching the config):\n```\nDOCUSIGN_USERNAME=[YOUR_DOCUSIGN_USERNAME]\nDOCUSIGN_PASSWORD=[YOUR_DOCUSIGN_PASSWORD]\nDOCUSIGN_INTEGRATOR_KEY=[YOUR_DOCUSIGN_INTEGRATOR_KEY]\n```\n\n## Usage\nFor usage see the [Docusign Rest Client](https://github.com/Tucker-Eric/docusign-rest-client)\n\n### Using the Facade\nYou can create a new instance of the DocuSign Client with:\n\n```php\n$client = DocuSign::create();\n```\n\nAccess DocuSign Models:\n\n```php\n$signer = DocuSign::signer([\n    'name'  =\u003e 'John Doe',\n    'email' =\u003e 'Jdoe123@example.com'\n]);\n```\n\nAccess DocuSign Api endpoints using `get()`;\n\n```php\nDocuSign::get('folders')-\u003ecallList();\n```\nOR\n\n### Using the `LaravelDocusign\\Client` class\nYou can create a new instance of the DocuSign Client with:\n```php\n$client = new LaravelDocusign\\Client;\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftucker-eric%2Flaravel-docusign","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ftucker-eric%2Flaravel-docusign","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftucker-eric%2Flaravel-docusign/lists"}