PHP code example of guilhermegeek / ken
1. Go to this page and download the library: Download guilhermegeek/ken 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/ */
guilhermegeek / ken example snippets
desc('Concat clientside code');
task('concat', function(Application $app) {
// concat files
});
desc('Minify clientside code');
task('minify', function(Application $app) {
// minify files
});
task('default', ['concat', 'minify'])
register(TaskLibraryInterface $taskLib, array $parameters = array())