-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
105 lines (105 loc) · 2.55 KB
/
composer.json
File metadata and controls
105 lines (105 loc) · 2.55 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": "ray7551/poem-wiki",
"type": "project",
"description": "The PoemWiki website.",
"keywords": [
"framework",
"laravel"
],
"repositories": [],
"license": "MIT",
"require": {
"php": "^8.0.2",
"ext-curl": "*",
"ext-exif": "*",
"ext-gd": "*",
"ext-gmp": "*",
"ext-json": "*",
"ext-redis": "*",
"alibabacloud/alimt-20181012": "^1.1.0",
"barryvdh/laravel-debugbar": "^3.14",
"bordercloud/sparql": "^2.0",
"brackets/admin-translations": "^4.4",
"brackets/craftable": "^8.0",
"doctrine/dbal": "^3.0",
"freyo/flysystem-qcloud-cos-v5": "^2.2",
"guzzlehttp/guzzle": "^7.0",
"jfcherng/php-diff": "^6.10",
"laravel/framework": "^9.52",
"laravel/horizon": "^5.0.0",
"laravel/passport": "^11.0",
"laravel/scout": "^9.8",
"laravel/tinker": "^2.0",
"laravel/ui": "^4.2",
"laravelcollective/html": "^6.3",
"livewire/livewire": "^2.2",
"meilisearch/meilisearch-php": "^1.2",
"mews/captcha": "^3.3",
"nesbot/carbon": "^2.73",
"overtrue/laravel-wechat": "^6.0",
"psr/log": "^3.0",
"renatomarinho/laravel-page-speed": "^2.1",
"spatie/laravel-activitylog": "^4.7",
"spatie/laravel-validation-rules": "^3.3"
},
"require-dev": {
"brackets/admin-generator": "^6.2.1",
"fzaninotto/faker": "^1.9.1",
"mockery/mockery": "^1.3.1",
"nunomaduro/collision": "^6.1",
"phpunit/phpunit": "^9.0",
"spatie/laravel-ignition": "^1.0"
},
"config": {
"optimize-autoloader": true,
"preferred-install": "dist",
"sort-packages": true,
"allow-plugins": {
"easywechat-composer/easywechat-composer": true,
"php-http/discovery": true
}
},
"extra": {
"laravel": {
"dont-discover": [
]
}
},
"autoload": {
"psr-4": {
"App\\": "app/"
},
"classmap": [
"database/seeds",
"database/factories",
"app/Query"
],
"files": [
"app/utils.php"
]
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"scripts": {
"post-autoload-dump": [
"Illuminate\\Foundation\\ComposerScripts::postAutoloadDump"
],
"post-update-cmd": [
],
"post-root-package-install": [
"@php -r \"file_exists('.env') || copy('.env.example', '.env');\""
],
"post-create-project-cmd": [
"@php artisan key:generate --ansi"
],
"dev": [
"@php artisan serve --host=0.0.0.0 --port=8881"
],
"php-cs-fixer": "php-cs-fixer --config=./.php-cs-fixer.dist.php"
}
}