加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
composer.json 2.29 KB
一键复制 编辑 原始数据 按行查看 历史
jipfqf 提交于 2022-05-10 18:42 . 初始化
{
"name": "tuandm/laravue",
"description": "The beautiful dashboard for Laravel built by VueJS.",
"keywords": [
"laravel",
"laravue",
"vue",
"admin",
"dashboard"
],
"license": "MIT",
"authors": [
{
"name": "Tuan Duong",
"email": "bacduong@gmail.com",
"homepage": "https://laravue.dev",
"role": "Developer"
}
],
"type": "project",
"require": {
"php": "^7.1.3",
"fideloper/proxy": "^4.0",
"kalnoy/nestedset": "^4.3",
"laravel/framework": "5.8.*",
"laravel/tinker": "^1.0",
"league/flysystem-aws-s3-v3": "^1.0",
"mews/captcha": "^2.2",
"overtrue/laravel-wechat": "~5.0",
"overtrue/pinyin": "~4.0",
"phpoffice/phpspreadsheet": "^1.8",
"spatie/laravel-permission": "^2.37",
"swooletw/laravel-swoole": "^2.6",
"tymon/jwt-auth": "^1.0"
},
"require-dev": {
"barryvdh/laravel-ide-helper": "^2.6",
"beyondcode/laravel-dump-server": "^1.0",
"doctrine/dbal": "^2.9",
"filp/whoops": "^2.0",
"fzaninotto/faker": "^1.4",
"mockery/mockery": "^1.0",
"nunomaduro/collision": "^2.0",
"phpunit/phpunit": "^7.0"
},
"config": {
"optimize-autoloader": true,
"preferred-install": "dist",
"sort-packages": true
},
"autoload": {
"psr-4": {
"App\\": "app/"
},
"classmap": [
"database/seeds",
"database/factories"
]
},
"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"
],
"post-create-jwt-cmd": [
"@php artisan jwt:secret"
],
"post-create-data": [
"@php artisan migrate --seed"
]
}
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化