{
    "dependencies": {
        "husky": "^3.0.9",
        "lint-staged": "^8.1.5"
    },
    "husky": {
        "hooks": {
            "pre-commit": "lint-staged"
        }
    },
    "lint-staged": {
        "linters": {
            "*.php": [
                "php ./vendor/bin/php-cs-fixer fix --config .php_cs",
                "git add"
            ]
        }
    }
}
