加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
composer.json 2.82 KB
一键复制 编辑 原始数据 按行查看 历史
lianguan 提交于 2017-09-11 13:31 . Fixhub is a laravel 5.5 application now
{
"name": "fixhub/fixhub",
"description": "A web deployment system based on the Laravel PHP Framework.",
"minimum-stability": "stable",
"type": "project",
"keywords": ["fixhub", "deployment"],
"homepage": "http://fixhub.org/",
"license": "MIT",
"authors": [
{
"name": "Phecho",
"email": "phecho@phecho.com",
"homepage": "http://www.phecho.com",
"role": "Developer"
}
],
"support": {
"email": "fixhub@fixhub.org",
"issues": "https://github.com/fixhub/fixhub/issues",
"source": "https://github.com/fixhub/fixhub"
},
"require": {
"php": ">=7.0.0",
"laravel/framework": "5.5.*",
"laravel/tinker": "~1.0",
"predis/predis": "~1.0",
"pda/pheanstalk": "~3.1",
"creativeorange/gravatar": "~1.0",
"nategood/httpful": "~0.2",
"mccool/laravel-auto-presenter": "^6.2",
"doctrine/dbal": "~2.5",
"intervention/image": "^2.3",
"itsgoingd/clockwork": "~1.9",
"tymon/jwt-auth": "~0.5",
"pragmarx/google2fa": "^0.7.1",
"fixhub/js-localization": "0.0.1",
"fideloper/proxy": "~3.3",
"socialiteproviders/gitlab": "^3.0",
"version/version": "^2.2"
},
"require-dev": {
"fzaninotto/faker": "~1.5",
"codeception/codeception": "*",
"mockery/mockery": "0.9.*",
"symfony/css-selector": "3.1.*",
"symfony/dom-crawler": "3.1.*",
"block8/php-docblock-checker": "^1.0",
"squizlabs/php_codesniffer": "~2.5",
"phpmd/phpmd": "~2.4",
"filp/whoops": "^2.0",
"codeclimate/php-test-reporter": "^0.3.0",
"themsaid/laravel-langman": "^1.1",
"diablomedia/phpunit-pretty-printer": "dev-master",
"friendsofphp/php-cs-fixer": "^1.11"
},
"autoload": {
"classmap": [
"database"
],
"files": [
"app/Helpers/Helpers.php"
],
"psr-4": {
"Fixhub\\": "app/"
}
},
"autoload-dev": {
"psr-4": {
"Fixhub\\Test\\": "tests/"
}
},
"scripts": {
"pre-install-cmd": [
"php artisan clear-compiled"
],
"post-install-cmd": [
"([ -f .env ] && php artisan optimize) || exit 0",
"([ -f .env ] && php artisan js-localization:refresh) || exit 0"
],
"pre-update-cmd": [
"php artisan clear-compiled"
],
"post-update-cmd": [
"php artisan optimize",
"php artisan js-localization:refresh"
]
},
"config": {
"preferred-install": "dist"
},
"repositories": {
"packagist": {
"type": "composer",
"url": "https://packagist.phpcomposer.com"
}
}
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化