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