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
- Host: GitHub
- URL: https://github.com/reisraff/phulp-dest
- Owner: reisraff
- License: mit
- Created: 2016-10-27T19:38:25.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2021-01-27T19:09:27.000Z (about 5 years ago)
- Last Synced: 2025-01-18T05:14:24.324Z (over 1 year ago)
- Topics: destination, move, php, phulp, phulp-dest, phulpplugin, write
- Language: PHP
- Homepage: https://github.com/reisraff/phulp
- Size: 11.7 KB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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/'));
});
```