-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
49 lines (49 loc) · 1.06 KB
/
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
39
40
41
42
43
44
45
46
47
48
49
{
"name": "fangx/esign",
"description": "esign v2",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "nfangxu",
"email": "nfangxu@gmail.com"
}
],
"require": {
"php": ">=7.2",
"ext-json": "*",
"guzzlehttp/guzzle": "^7.2",
"laravel/framework": "^6.0",
"nesbot/carbon": "^2.41"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^2.16",
"phpstan/phpstan": "^0.12.50",
"phpunit/phpunit": "8.5"
},
"autoload": {
"psr-4": {
"Fangx\\ESign\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Fangx\\Tests\\": "tests"
}
},
"scripts": {
"cs-fix": "php-cs-fixer fix $1",
"test": "phpunit -c phpunit.xml --color=always"
},
"extra": {
"laravel": {
"providers": [
"Fangx\\ESign\\ESignServiceProvider"
],
"aliases": []
}
},
"config": {
"sort-packages": true
}
}