-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathcomposer.json
45 lines (45 loc) · 1.29 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
{
"name": "chowjiawei/laravel-help-plugin",
"type": "library",
"description": "Integrating useful auxiliary functions into laravel,Assistant tools based on laravel.",
"keywords": ["laravel", "plugin", "dingtalk", "wechat", "robot", "exchange"],
"homepage": "https://github.com/chowjiawei/laravel-help-plugin",
"license": "MIT",
"authors": [
{
"name": "chowjiawei",
"email": "[email protected]"
}
],
"require": {
"php": "^7.0|^8.0",
"guzzlehttp/guzzle": "^6.3|^7.0",
"laravel/framework": "^6.0|^7.0|^8.0|^9.0",
"overtrue/laravel-wechat":"^5.0|^6.0",
"torann/geoip": "^3.0.2"
},
"require-dev": {
"squizlabs/php_codesniffer": "^3.6"
},
"autoload": {
"psr-4": {
"Chowjiawei\\Helpers\\": "src/"
}
},
"scripts": {
"lint": "phpcs --standard=PSR1,PSR12,./ruleset.xml app/ routes/ config/",
"lint-fix": "phpcbf --standard=PSR1,PSR12 src/"
},
"extra": {
"laravel": {
"providers": [
"Chowjiawei\\Helpers\\Providers\\HelpPluginServiceProvider"
]
}
},
"config": {
"allow-plugins": {
"easywechat-composer/easywechat-composer": true
}
}
}