-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
38 lines (38 loc) · 1003 Bytes
/
composer.json
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
38
{
"name": "industrious/hellosign-laravel",
"description": "Description",
"license": "MIT",
"authors": [
{
"name": "Christian Thomas",
"email": "[email protected]",
"homepage": "https://www.industrious.agency"
}
],
"homepage": "https://github.com/industrious/hellosign-laravel",
"keywords": ["Laravel", "hellosign-Laravel", "HelloSign"],
"require": {
"hellosign/hellosign-php-sdk": "^3.0"
},
"require-dev": {
"phpunit/phpunit": "~6.0",
"orchestra/testbench": "~3.0"
},
"autoload": {
"psr-4": {
"Industrious\\HelloSignLaravel\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Industrious\\HelloSignLaravel\\Tests\\": "tests"
}
},
"extra": {
"laravel": {
"providers": [
"Industrious\\HelloSignLaravel\\HellosignLaravelServiceProvider"
]
}
}
}