-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathcomposer.json
More file actions
37 lines (37 loc) · 785 Bytes
/
composer.json
File metadata and controls
37 lines (37 loc) · 785 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
{
"name": "tucker-eric/laravel-docusign",
"description": "Laravel 6 Wrapper for Official DocuSign Rest API",
"keywords": [
"laravel",
"docusign",
"rest"
],
"license": "MIT",
"authors": [
{
"name": "Eric Tucker",
"email": "tucker.ericm@gmail.com"
}
],
"require": {
"php": "^7.3 | ^8.0",
"illuminate/support": "~6.0|~7.0|~8.0|~9.0|~10.0|~11.0|~12.0",
"tucker-eric/docusign-rest-client": "~2.0|~3.0|~4.0|~5.0"
},
"autoload": {
"psr-4": {
"LaravelDocusign\\": "src/"
}
},
"extra": {
"laravel": {
"providers": [
"LaravelDocusign\\DocusignServiceProvider"
],
"aliases": {
"DocuSign": "LaravelDocusign\\Facades\\DocuSign"
}
}
},
"minimum-stability": "dev"
}