PHP code example of nsrosenqvist / phulp-instant-pipe
1. Go to this page and download the library: Download nsrosenqvist/phulp-instant-pipe library. Choose the download type require. 2. Extract the ZIP file and open the index.php. 3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
nsrosenqvist / phulp-instant-pipe example snippets
use NSRosenqvist\Phulp\InstantPipe;
use Phulp\Source;
$phulp->task('styles', function ($phulp) {
$phulp->src(['assets/styles/'], '/css$/')
->pipe(new InstantPipe(function (Source $src) {
$class = get_class($this); // \NSRosenqvist\Phulp\InstantPipe
$files = $src->getDistFiles();
// ... do something
});
->pipe($phulp->dest('dist/styles/'));
});