Download the PHP package ec-europa/oe-task-runner without Composer
On this page you can find all versions of the php package ec-europa/oe-task-runner. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download ec-europa/oe-task-runner
More information about ec-europa/oe-task-runner
Files in ec-europa/oe-task-runner
Package oe-task-runner
Short Description PHP task runner based on Robo, focused on extensibility.
License EUPL-1.2
Informations about the package oe-task-runner
Task Runner
PHP task runner based on Robo, focused on extensibility.
Quick references:
- Installation
- Configuration
- Built-in commands
- Expose custom commands as YAML configuration
- Expose custom commands as PHP classes
Installation
Install it with Composer:
After installation run ./vendor/bin/run
for a list of available commands.
Using Docker Compose
Alternatively, you can build a development site using Docker and Docker Compose with the provided configuration.
Docker provides the necessary services and tools to get the tests running, regardless of your local host configuration.
Requirements:
Configuration
By default, Docker Compose reads two files, a docker-compose.yml
and an optional docker-compose.override.yml
file.
By convention, the docker-compose.yml
contains your base configuration and it's provided by default.
The override file, as its name implies, can contain configuration overrides for existing services or entirely new
services.
If a service is defined in both files, Docker Compose merges the configurations.
Find more information on Docker Compose extension mechanism on the official Docker Compose documentation.
Usage
To start, run:
It's advised to not daemonize docker-compose
so you can turn it off (CTRL+C
) quickly when you're done working.
However, if you'd like to daemonize it, you have to add the flag -d
:
Then:
Running the tests
To run the grumphp checks:
To run the phpunit tests:
Configuration
Task Runner provides a useful command (config
) that allows inspecting and
debugging the configuration. To find out how can be used, run:
Task Runner commands can be customized in two ways:
- By setting arguments and options when running a command.
-
By providing default values in configuration files. The task runner will read the following files in the specified order. Options supplied in later files will override earlier ones:
- The defaults provided by Task Runner. This file is located inside the Task
Runner repository in
config/runner.yml
. runner.yml.dist
- project specific defaults. This file should be placed in the root folder of the project that depends on the Task Runner. Use this file to declare default options which are expected to work with your application under regular circumstances. This file should be committed in the project.-
Third parties might implement config providers to modify the config. A config provider is a class implementing the
ConfigProviderInterface
. Such a class should be placed under theTaskRunner\ConfigProviders
relative namespace. For instance whenSome\Namespace
points tosrc/
directory, then the config provider class should be placed under thesrc/TaskRunner/ConfigProviders
directory and will have the namespace set toSome\Namespace\TaskRunner\ConfigProviders
. The class name should end with theConfigProvider
suffix. Use the::provide()
method to alter the configuration object. A@priority
annotation tag can be defined in the class docblock in order to determine the order in which the config providers are running. If omitted,@priority 0
is assumed. This mechanism allows also to insert custom YAML config files in the flow, see the following example: runner.yml
- project specific user overrides. This file is also located in the root folder of the project that depends on the Task Runner. This file can be used to override options with values that are specific to the user's local environment. It is considered good practice to add this file to.gitignore
to preventrunner.yml
from being accidentally committed in the project repository.- User provided global overrides stored in environment variables. These can
be used to define environment specific configuration that applies to all
projects that use the Task Runner, such as database credentials and the
Github access token. The following locations will be checked and the first
one that is found will be used:
$OPENEUROPA_TASKRUNNER_CONFIG
$XDG_CONFIG_HOME/openeuropa/taskrunner/runner.yml
$HOME/.config/openeuropa/taskrunner/runner.yml
- The defaults provided by Task Runner. This file is located inside the Task
Runner repository in
- Installation
A list of default values, with a brief explanation, can be found at the default
runner.yml
.
Built-in commands
The Task Runner comes with the following built-in commands:
Command | Description |
---|---|
changelog:generate |
Generate a changelog for the current project based on its GitHub issues and pull requests |
drupal:site-install |
Install a target Drupal site using default configuration values and/or CLI options |
drupal:site-pre-install |
Run Drupal pre-install commands as listed under the drupal.pre_install property |
drupal:site-post-install |
Run Drupal post-install commands as listed under the drupal.post_install property |
drupal:settings-setup |
Setup default Drupal settings file by appending values specified at drupal.settings |
drupal:drush-setup |
Setup Drush 8 and 9 configuration files |
release:create-archive |
Create and archive a release for the current project |
Run ./vendor/bin/run help [command-name]
for more information about each command's capabilities.
Expose "dynamic" commands as YAML configuration
The Task Runner allows you to expose new commands by just listing its tasks
under the commands:
property in runner.yml.dist
/runner.yml
.
For example, the following YAML portion will expose two dynamic commands, drupal:site-setup
and setup:behat
:
Commands can reference each-other, allowing for complex scenarios to be implemented with relative ease.
At the moment the following tasks are supported (optional argument default values in parenthesis):
Task | Task | Arguments |
---|---|---|
mkdir |
taskFilesystemStack() |
dir , mode (0777) |
touch |
taskFilesystemStack() |
file , time (current time), atime (current time) |
copy |
taskFilesystemStack() |
from , to , force (false) |
chmod |
taskFilesystemStack() |
file , permissions , umask (0000), recursive (false) |
chgrp |
taskFilesystemStack() |
file , group , recursive (false) |
chown |
taskFilesystemStack() |
file , user , recursive (false) |
remove |
taskFilesystemStack() |
file |
rename |
taskFilesystemStack() |
from , to , force (false) |
symlink |
taskFilesystemStack() |
from , to , copyOnWindows (false) |
mirror |
taskFilesystemStack() |
from , to |
process |
taskProcessConfigFile() |
from , to |
process-php |
taskAppendConfiguration() |
type: append , config , source , destination , override (false) |
process-php |
taskPrependConfiguration() |
type: prepend , config , source , destination , override (false) |
process-php |
taskWriteConfiguration() |
type: write , config , source , destination , override (false) |
run |
taskExec() |
command , arguments , options (will run ./vendor/bin/run [command] [argument1] [argument2] ... --[option1]=[value1] --[option2]=[value2] ... ) |
Tasks provided as plain-text strings will be executed as is in the current working directory.
Expose custom commands as PHP classes
More complex commands can be provided by creating Task Runner command classes within your project's PSR-4 namespace.
For example, given you have the following PSR-4 namespace in your composer.json
:
Then you can expose extra commands by creating one or more classes under ./src/TaskRunner/Commands
, as shown in the
example below:
After doing that remember to refresh your local autoloader by running composer dump-autoload
.
You can now access your new commands via the Task Runner main executable:
NOTE: It is mandatory to place your command classes under ./src/TaskRunner/Commands
, otherwise the Task Runner will not
register them at startup.
Even if not mandatory it is recommended for your command classes to extend OpenEuropa\TaskRunner\Commands\AbstractCommands
.
For more details on how to expose custom commands please refer to the main Robo documentation.
Contributing
Please read the full documentation for details on our code of conduct, and the process for submitting pull requests to us.
Versioning
We use SemVer for versioning. For the available versions, see the tags on this repository.
All versions of oe-task-runner with dependencies
consolidation/robo Version ^4.0
gitonomy/gitlib Version ^1.0
jakeasmith/http_build_url Version ^1.0.1
nuvoleweb/robo-config Version ^3.0.0