composer.json
3.59 KB
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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
{
"name": "laravel/laravel",
"type": "project",
"description": "The Laravel Framework.",
"keywords": [
"framework",
"laravel"
],
"license": "MIT",
"require": {
"php": "^8.1",
"ext-bcmath": "*",
"ext-openssl": "*",
"ext-pdo": "*",
"ext-redis": "*",
"ext-xlswriter": "*",
"alibabacloud/mts-20140618": "1.8.13",
"alibabacloud/sdk": "^1.8",
"alibabacloud/sts-20150401": "^1.1",
"aliyuncs/oss-sdk-php": "^2.6",
"awobaz/compoships": "^2.2",
"firebase/php-jwt": "^6.3",
"geoip2/geoip2": "^2.13",
"guzzlehttp/guzzle": "^7.2",
"hikoon/laravel-api": "0.1.4.9",
"hikoon/laravel-jwt": "^0.1.3",
"inertiajs/inertia-laravel": "^0.6.11",
"laravel/framework": "^9.52.4",
"laravel/horizon": "^5.19",
"laravel/octane": "^1.3",
"laravel/telescope": "^4.14",
"laravel/tinker": "^2.7",
"lorisleiva/laravel-actions": "^2.7",
"overtrue/laravel-easy-sms": "^2.1",
"pbmedia/laravel-ffmpeg": "^8.3",
"tencent/tls-sig-api-v2": "^1.1",
"torann/geoip": "^3.0",
"tucker-eric/eloquentfilter": "^3.2",
"twilio/sdk": "^7.4"
},
"require-dev": {
"roave/security-advisories": "dev-latest",
"fakerphp/faker": "^1.9.1",
"laravel/pint": "^1.0",
"laravel/sail": "^1.0.1",
"mockery/mockery": "^1.4.4",
"phpunit/phpunit": "^9.5.10",
"spatie/laravel-ignition": "^1.0"
},
"autoload": {
"psr-4": {
"App\\": "app/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"scripts": {
"project-clear": [
"@php artisan optimize:clear",
"@php artisan package:discover --ansi"
],
"project-cache": [
"@php artisan event:cache",
"@php artisan config:cache",
"@php artisan route:cache"
],
"post-autoload-dump": [
"Illuminate\\Foundation\\ComposerScripts::postAutoloadDump",
"@php artisan package:discover --ansi"
],
"post-update-cmd": [
"@php artisan vendor:publish --tag=laravel-assets --ansi --force",
"@php artisan telescope:publish --ansi"
],
"post-root-package-install": [
"@php -r \"file_exists('.env') || copy('.env.example', '.env');\""
],
"post-create-project-cmd": [
"@php artisan key:generate --ansi"
]
},
"scripts-descriptions": {
"phpstan": "Run PHPStan static analysis against your application."
},
"extra": {
"laravel": {
"dont-discover": []
}
},
"config": {
"optimize-autoloader": true,
"preferred-install": "dist",
"sort-packages": true,
"secure-http": false,
"allow-plugins": {
"pestphp/pest-plugin": true
},
"gitlab-domains": [
"gitlab.hikoon.com"
],
"gitlab-token": {
"gitlab.hikoon.com": {
"username": "yangjun@hikoon.com",
"token": "yXs9m5cCZLQnLz2dwVzd"
}
}
},
"minimum-stability": "stable",
"prefer-stable": true,
"repositories": {
"hikoon/laravel-jwt": {
"type": "git",
"url": "https://gitlab.hikoon.com/package/laravel-jwt.git"
},
"hikoon/laravel-api": {
"type": "git",
"url": "https://gitlab.hikoon.com/package/Laravel-api.git"
}
}
}