-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
94 lines (94 loc) · 2.68 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"name": "webman-tech/laravel-monorepo",
"description": "laravel component for webman monorepo",
"license": "MIT",
"type": "library",
"authors": [
{
"name": "kriss",
"email": "[email protected]"
}
],
"_comment": [
"symfony/cache for psr16",
"symfony/mime for File::guessExtension",
"league/flysystem for Storage LocalDriver",
"symfony/http-foundation for FilesystAdapter::response",
"illuminate/http for FilesystAdapter::putFile",
"overtrue/flysystem-cos for Storage cos driver",
"alphasnow/aliyun-oss-laravel for Storage oss driver",
"overtrue/flysystem-qiniu for Storage qiniu driver",
"symfony/translation for autodetct locale",
"illuminate/database for unique rule"
],
"require": {
"php": "^8.2",
"illuminate/cache": "^11.0",
"illuminate/config": "^11.0",
"illuminate/console": "^11.0",
"illuminate/container": "^11.0",
"illuminate/events": "^11.0",
"illuminate/filesystem": "^11.0",
"illuminate/http": "^11.0",
"illuminate/translation": "^11.0",
"illuminate/validation": "^11.0",
"league/flysystem": "^3.0"
},
"require-dev": {
"alphasnow/aliyun-oss-laravel": "^4.9",
"ergebnis/composer-normalize": "^2.45",
"illuminate/database": "^11.0",
"monolog/monolog": "^3.8",
"overtrue/flysystem-cos": "^5.1",
"overtrue/flysystem-qiniu": "^3.2",
"pestphp/pest": "^3.7",
"symfony/cache": "^7.0",
"symfony/http-foundation": "^7.0",
"symfony/mime": "^7.0",
"symfony/translation": "^7.0",
"symfony/var-dumper": "^7.0",
"symfony/var-exporter": "^7.0",
"webman/console": "^1.3",
"workerman/webman-framework": "^1.6.8"
},
"replace": {
"webman-tech/laravel-cache": "self.version",
"webman-tech/laravel-console": "self.version",
"webman-tech/laravel-filesystem": "self.version",
"webman-tech/laravel-http": "self.version",
"webman-tech/laravel-translation": "self.version",
"webman-tech/laravel-validation": "self.version"
},
"autoload": {
"psr-4": {
"WebmanTech\\": "src/"
},
"files": [
"src/LaravelCache/helper.php",
"src/LaravelFilesystem/helper.php",
"src/LaravelTranslation/helper.php",
"src/LaravelValidation/helper.php"
]
},
"autoload-dev": {
"psr-4": {
"": "tests/webman",
"Tests\\": "tests",
"app\\": "app",
"plugin\\": "plugin"
}
},
"config": {
"allow-plugins": {
"ergebnis/composer-normalize": true,
"pestphp/pest-plugin": true
},
"sort-packages": true
},
"scripts": {
"test": "pest --exclude-group=http",
"test-all": "pest",
"test-coverage": "pest --coverage",
"test-http": "pest --group=http"
}
}