hnhdigital-os/laravel-folder-watcher

View on GitHub
composer.json

Summary

Maintainability
Test Coverage
{
    "name": "hnhdigital-os/laravel-folder-watcher",
    "description": "Provides a Laravel console command that can watch a given folder, and any changes are passed to the provided command script.",
    "keywords": ["laravel", "folder", "watcher", "inotify", "command"],
    "license": "MIT",
    "authors": [
        {
            "name": "Rocco Howard",
            "email": "rocco@bluora.com.au"
        }
    ],
    "require": {
        "php": ">=5.6.0",
        "ext-inotify": "*",
        "symfony/yaml": "~3.0"
    },
    "require-dev": {
        "phpunit/phpunit": "5.*",
        "illuminate/database": "4.*|5.*",
        "symfony/process": "~2.3",
        "codeclimate/php-test-reporter": "dev-master"
    },
    "autoload": {
        "psr-4": {
            "Bluora\\LaravelFolderWatcher\\": "src/"
        }
    }
}