mglaman / phpci-drush
Adds Drush to PHPCI
Installs: 24
Dependents: 0
Suggesters: 0
Security: 0
Stars: 2
Watchers: 1
Forks: 0
Open Issues: 0
pkg:composer/mglaman/phpci-drush
Requires
- drush/drush: 7.0.0-rc2
This package is auto-updated.
Last update: 2025-10-13 20:13:07 UTC
README
Drush plugin for PHPCI
Usage
Add to PHPCI
Add the package to your PHPCI's composer required projects.
composer require mglaman/phpci-drush
Use in projects
Output the current Drush version.
    \mglaman\PhpciPlugins\DrushPlugin:
        command: "version"
Enable specific modules.
    \mglaman\PhpciPlugins\DrushPlugin:
        command: "pm-enable"
        arguments: 
            - "ctools"
            - "panels"
            - "page_manager"
        options: 
            - "yes"
Run a makefile.
    \mglaman\PhpciPlugins\DrushPlugin:
        command: "make"
        arguments:
            - "drupal-org.make.yml"
        options:
            - "verbose"
            - "no-cache"
            - "no-core"
            - "contrib-destination=."
            - "yes"