soy-php / gulp-task
Gulp task for Soy
Installs: 23
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 2
Open Issues: 0
pkg:composer/soy-php/gulp-task
Requires
- soy-php/soy: >=0.1.0
This package is not auto-updated.
Last update: 2025-10-11 23:27:41 UTC
README
Introduction
Usage
Include soy-php/gulp-task
in your project with composer:
$ composer require soy-php/gulp-task
Then in your recipe you can use the task as follows:
<?php $recipe = new \Soy\Recipe(); $recipe->component('default', function (\Soy\Gulp\RunTask $gulpTask) { $gulpTask ->setTask('scss') ->run(); }); return $recipe;