-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathcomposer.json
38 lines (38 loc) · 912 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": "nilsir\/laravel-esign",
"description": "E签宝-悟空API V2, 支持 laravel",
"license": "MIT",
"authors": [
{
"name": "nilsir",
"email": "[email protected]"
}
],
"require": {
"php": "^7.2.5",
"ext-json": "*",
"ext-openssl": "*",
"guzzlehttp/guzzle": "^6.5",
"doctrine/cache": "^1.10",
"monolog/monolog": "^2.0",
"pimple/pimple": "^3.3",
"symfony/http-foundation": "^5.0",
"symfony/psr-http-message-bridge": "^2.0"
},
"autoload": {
"psr-4": {
"Nilsir\\LaravelEsign\\": "src"
}
},
"require-dev": {
"phpunit/phpunit": "^9.1",
"mockery/mockery": "^1.3"
},
"extra": {
"laravel": {
"providers": [
"Nilsir\\LaravelEsign\\ServiceProvider"
]
}
}
}