-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
55 lines (55 loc) · 1.39 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
50
51
52
53
54
55
{
"name": "huangdijia/laravel-youdu",
"description": "youdu sdk for laravel",
"type": "library",
"keywords": [
"laravel",
"youdu"
],
"homepage": "https://github.com/huangdijia/laravel-youdu",
"license": "MIT",
"authors": [{
"name": "huangdijia",
"email": "[email protected]"
}],
"require": {
"php": ">=8.0",
"illuminate/support": "^9.0|^10.0",
"illuminate/notifications": "^9.0|^10.0",
"illuminate/contracts": "^9.0|^10.0",
"guzzlehttp/guzzle": "^6.4|^7.0"
},
"require-dev": {
"huangdijia/php-coding-standard": "^1.2",
"orchestra/testbench": "^7.0|^8.0",
"phpstan/phpstan": "^1.0"
},
"autoload": {
"files": [
"src/helpers.php"
],
"psr-4": {
"Huangdijia\\Youdu\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Huangdijia\\Youdu\\Tests\\": "tests/"
}
},
"scripts": {
"test": "@php vendor/bin/phpunit ./tests/BaseTest.php",
"cs-fix": "php-cs-fixer fix $1",
"analyse": "phpstan analyse --memory-limit 300M -l 0 -c phpstan.neon ./src ./config"
},
"extra": {
"laravel": {
"providers": [
"Huangdijia\\Youdu\\YouduServiceProvider"
]
}
},
"config": {
"sort-packages": true
}
}