Find your plugins, define your tasks, and let phulp work for you.
Whats Phulp?
It is a framework that provides automation for build your stuff, and manage your tasks easily.
Downloads
{{ totalDownloads }}
Average of {{ monthlyDownloads }} downloads monthly.
<?php use Phulp\Output as out; // Define the default task $phulp->task('default', function ($phulp) { $phulp->start(['greetings']); }); $phulp->task('greetings', function ($phulp) { out::outln(out::colorize('Hello I am phulp!', 'green')); });