-
-
Notifications
You must be signed in to change notification settings - Fork 14
/
composer.json
38 lines (38 loc) · 1.19 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
{
"name": "james.xue/ali-green",
"license": "MIT",
"homepage": "https://github.com/xiaoxuan6/aliyun-safe.git",
"description": "阿里内容检测,包括文本、关键词文本检测以及对图片涉黄、暴恐、敏感检测、广告、二维码等",
"authors": [
{
"name": "james.xue",
"email": "[email protected]"
}
],
"require": {
"illuminate/support": "~5.0|~6.0|~7.0|~8.0|~9.0|^10.0|^11.0"
},
"autoload": {
"psr-4": {
"James\\AliGreen\\": "src/"
}
},
"extra": {
"laravel": {
"providers": [
"James\\AliGreen\\AliGreenServiceProvider"
],
"aliases": {
"AliGreen" : "James\\AliGreen\\Facades\\AliGreen"
}
}
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.4",
"laravel/framework": "~5.0|~6.0|~7.0|~8.0|~9.0|^10.0|^11.0",
"laravel/lumen-framework": "~5.0|~6.0|~7.0|~8.0|~9.0|^10.0|^11.0"
},
"scripts": {
"fix-style": "vendor/bin/php-cs-fixer fix --config=.php-cs-fixer.php --using-cache=no --ansi"
}
}