| Package Data | |
|---|---|
| Maintainer Username: | imi |
| Maintainer Contact: | a.menk@imi.de (iMi digital GmbH) |
| Package Create Date: | 2017-08-29 |
| Package Last Update: | 2020-12-01 |
| Language: | PHP |
| License: | MIT |
| Last Refreshed: | 2025-11-03 03:01:28 |
| Package Statistics | |
|---|---|
| Total Downloads: | 126 |
| Monthly Downloads: | 0 |
| Daily Downloads: | 0 |
| Total Stars: | 0 |
| Total Watchers: | 8 |
| Total Forks: | 1 |
| Total Open Issues: | 0 |
This is (currentl very thin) wrapper around laravel projects for using it in the Robo task runner.
$this->taskArtisanStack()->exec($command)->run();
Shortcut for the above:
$this->_artisan($command);
Adds only to the stack, so you can run additional commands
$this->taskArtisanStack()->addCacheFlush()->run();
Shortcut for the above:
$this->_artisanCacheFlush($command);
Writes the env file with the values from the setup. Of course you can add additional mappings as a secound parameter.
Currently RegExp replacing is done. Sooner or later we might use https://github.com/nordcode/robo-parameters for this task (which does not keep comments, that's why we use the own method)
$this->_writeEnvFile($this->askSetup());
Needs https://github.com/barryvdh/laravel-ide-helper
$this->taskArtisanStack()->addUpdateIdeHelper()->run();