-
-
Notifications
You must be signed in to change notification settings - Fork 567
Expand file tree
/
Copy pathcomposer.json
More file actions
105 lines (105 loc) · 2.91 KB
/
Copy pathcomposer.json
File metadata and controls
105 lines (105 loc) · 2.91 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
{
"name": "wangningkai/olaindex",
"description": "✨ Another OneDrive Directory Index.",
"keywords": [
"OLAINDEX",
"OneDrive",
"laravel"
],
"authors": [
{
"name": "wangningkai",
"email": "ningkai.wang@live.com",
"homepage": "https://imwnk.cn",
"role": "PHP Developer"
}
],
"license": "MIT",
"type": "project",
"require": {
"php": "^7.4|^8.0",
"ext-bcmath": "*",
"ext-curl": "*",
"ext-fileinfo": "*",
"ext-json": "*",
"ext-mbstring": "*",
"ext-openssl": "*",
"doctrine/dbal": "^2.10",
"erusev/parsedown": "^1.7",
"fideloper/proxy": "^4.2",
"guzzlehttp/guzzle": "^7.9",
"hashids/hashids": "^4.0",
"laravel-lang/lang": "~7.0",
"laravel/framework": "^8.83.28",
"laravel/helpers": "^1.3",
"laravel/tinker": "^2.0",
"laravel/ui": "^3.0",
"league/commonmark": "^2.7.0",
"microsoft/microsoft-graph": "^1.109.1",
"overtrue/laravel-lang": "^4.2",
"php-curl-class/php-curl-class": "^8.0",
"psy/psysh": "^0.12.19",
"rap2hpoutre/laravel-log-viewer": "^1.6",
"symfony/process": "^5.4.51"
},
"require-dev": {
"barryvdh/laravel-debugbar": "^3.7",
"barryvdh/laravel-ide-helper": "^2.12",
"facade/ignition": "^2.17",
"fakerphp/faker": "^1.21",
"mockery/mockery": "^1.5",
"nunomaduro/collision": "^5.0",
"phpunit/phpunit": "^9.6.33"
},
"config": {
"optimize-autoloader": true,
"preferred-install": "dist",
"sort-packages": true
},
"extra": {
"laravel": {
"dont-discover": []
}
},
"autoload": {
"psr-4": {
"App\\": "app/"
},
"classmap": [
"database/seeds",
"database/factories"
],
"files": [
"app/Helpers/Functions.php"
]
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"scripts": {
"post-autoload-dump": [
"Illuminate\\Foundation\\ComposerScripts::postAutoloadDump",
"@php artisan package:discover --ansi"
],
"post-root-package-install": [
"@php -r \"file_exists('.env') || copy('.env.example', '.env');\""
],
"post-create-project-cmd": [
"@php artisan key:generate --ansi"
],
"cs-check": "phpcs -p --standard=PSR2 app/",
"cs-fix": "phpcbf -p --standard=PSR2 app/",
"install-app": "php artisan install",
"uninstall-app": "php artisan uninstall"
},
"repositories": {
"packagist": {
"type": "composer",
"url": "https://mirrors.aliyun.com/composer/"
}
}
}