ymbra/drobo
Composer 安装命令:
composer require ymbra/drobo
包简介
Handy tasks to manage a Drupal 8 site
README 文档
README
PHP library based in Robo that provides handy tasks to manage a Drupal 8 site.
Requirements
- PHP 7.0 or higher
- Composer
- Drush
- drupal-potx
- PHP dotenv
Install
Via Composer
$ composer require ymbra/drobo
Available tasks
Install Drupal site.
$ vendor/bin/drobo site:install
Update Drupal site.
$ vendor/bin/drobo site:update
Backup Drupal database.
$ vendor/bin/drobo db:backup
Create Custom tasks
- Create directory structure /drobo/Commands in your project root.
- Create CustomCommands.php inside /drobo/Commands:
namespace Drobo\Commands; use Robo\Tasks; /** * Custom tasks for the project. */ class CustomCommands extends Tasks { public function helloWorld() { $this->io()->newLine(); $this->io()->title('Hello World.'); } }
License
Please see License File for more information.
统计信息
- 总下载量: 1.46k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 5
- 点击次数: 2
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: GPL-3.0-or-later
- 更新时间: 2020-09-11