An open API service indexing awesome lists of open source software.

https://github.com/reisraff/phulp-dest

The Destination addon for phulp
https://github.com/reisraff/phulp-dest

destination move php phulp phulp-dest phulpplugin write

Last synced: 4 months ago
JSON representation

The Destination addon for phulp

Awesome Lists containing this project

README

          

# phulp-dest

The dest addon for [PHULP](https://github.com/reisraff/phulp).

## Install

```bash
$ composer require reisraff/phulp-dest
```

## Usage

```php
task('dest', function ($phulp) {
$phulp->src(['src/'], '/html$/')
// write your files for "path/"
->pipe(new Dest('path/'));
});

```