├── .editorconfig ├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── bin ├── blend ├── compile └── setup ├── blend-demo.gif ├── composer.json ├── config ├── blend.config.json ├── blend.config.php └── schema.json ├── dist └── .gitignore └── src ├── TaskRunner.php └── blend.php /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarwanAlsoltany/blend/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarwanAlsoltany/blend/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarwanAlsoltany/blend/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarwanAlsoltany/blend/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarwanAlsoltany/blend/HEAD/README.md -------------------------------------------------------------------------------- /bin/blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarwanAlsoltany/blend/HEAD/bin/blend -------------------------------------------------------------------------------- /bin/compile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarwanAlsoltany/blend/HEAD/bin/compile -------------------------------------------------------------------------------- /bin/setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarwanAlsoltany/blend/HEAD/bin/setup -------------------------------------------------------------------------------- /blend-demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarwanAlsoltany/blend/HEAD/blend-demo.gif -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarwanAlsoltany/blend/HEAD/composer.json -------------------------------------------------------------------------------- /config/blend.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarwanAlsoltany/blend/HEAD/config/blend.config.json -------------------------------------------------------------------------------- /config/blend.config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarwanAlsoltany/blend/HEAD/config/blend.config.php -------------------------------------------------------------------------------- /config/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarwanAlsoltany/blend/HEAD/config/schema.json -------------------------------------------------------------------------------- /dist/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /src/TaskRunner.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarwanAlsoltany/blend/HEAD/src/TaskRunner.php -------------------------------------------------------------------------------- /src/blend.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarwanAlsoltany/blend/HEAD/src/blend.php --------------------------------------------------------------------------------