2017 © Pedro Peláez
 

library junty

Streams handling with tasks for PHP 7.

image

junty/junty

Streams handling with tasks for PHP 7.

  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 0 Forks
  • 0 Open issues
  • 6 Versions
  • 0 % Grown

The README.md

, (*1)

Packagist Travis Scrutinizer GitHub license , (*2)

Streams handling with tasks for PHP 7. Inspired by Gulp , (*3)

Documentation

Example

<?php
require 'vendor/autoload.php';

use Junty\Runner\JuntyRunner;
use Gabrieljmj\JuntyMinify\{Css as CssMinifier, Js as JsMinifier}; // Package: gabrieljmj/junty-minify

$junty = new JuntyRunner();

$junty->group('minify', function () {
    $junty->task('css', function () {
        $this->src('./public/css/*.css')
            ->forStreams(new CssMinifier())
            ->forStreams($this->toDir('./public/dist/css')); 
    });

    $junty->task('js', function () {
        $this->src('./public/js/*.js')
            ->forStreams(new JsMinifier())
            ->forStreams($this->toDir('./public/dist/js')); 
    });
});

return $junty;

Creator

@gabrieljmj
@gabrieljmj

License

Junty is under MIT License., (*4)

The Versions

14/05 2016

dev-master

9999999-dev

Streams handling with tasks for PHP 7.

  Sources   Download

MIT

The Requires

 

The Development Requires

07/04 2016
19/03 2016
10/03 2016

v0.1.2

0.1.2.0

Streams handling with tasks for PHP 7.

  Sources   Download

MIT

The Requires

 

The Development Requires

05/03 2016

v0.1.1

0.1.1.0

Streams handling with tasks for PHP 7.

  Sources   Download

MIT

The Requires

 

The Development Requires

28/02 2016

v0.1.0

0.1.0.0

Streams handling with tasks for PHP 7.

  Sources   Download

MIT

The Requires

 

The Development Requires