ebess/laravel-ftp-deployment
最新稳定版本:0.0.1
Composer 安装命令:
composer require ebess/laravel-ftp-deployment
包简介
README 文档
README
Installation
composer require ebess/laravel-ftp-deployment php artisan vendor:publish
Setup
Create a filesystem disk to deploy to in config/filesystem.php
'disks' => [ // ... 'deployment' => [ 'driver' => 'ftp', 'host' => 'ftp.server.org', 'port' => 21, 'username' => 'ftp-user', 'password' => 'ftp-password', 'passive' => true, 'root' => '/' ], // ... ]
Adjust which files should be deployed and hooks in config/ftp-deployment.php
Deploy to server
php artisan deploy:server <servername> <--refresh=0> <--debug=1>
Use refresh to refresh the database migrations and run the seeders. If flag not set, only migration will be run.
统计信息
- 总下载量: 18
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 4
- 点击次数: 0
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: Unknown
- 更新时间: 2015-11-03