{
    "name": "matt-allan/laravel-code-style",
    "description": "Code formatting for Laravel projects",
    "type": "library",
    "license": "MIT",
    "homepage": "https://github.com/matt-allan/laravel-code-style",
    "authors": [
        {
            "name": "Matt Allan",
            "email": "matt@mattallan.me"
        }
    ],
    "keywords": [
        "laravel",
        "code-style",
        "php-cs-fixer",
        "psr-2"
    ],
    "autoload": {
        "psr-4": {
            "MattAllan\\LaravelCodeStyle\\": "src"
        }
    },
    "require": {
        "php": ">=7.2",
        "illuminate/support": "5.7.x|5.8.x|^6.0",
        "friendsofphp/php-cs-fixer": "^2.14"
    },
    "require-dev": {
        "laravel/framework": "^6.0",
        "phpunit/phpunit": "^7.0"
    },
    "extra": {
        "branch-alias": {
            "dev-master": "1.0-dev"
        },
        "laravel": {
            "providers": [
                "MattAllan\\LaravelCodeStyle\\ServiceProvider"
            ]
        }
    },
    "scripts": {
        "test": "phpunit",
        "check-style": "php-cs-fixer fix --dry-run --diff",
        "fix-style": "php-cs-fixer fix"
    },
    "config": {
        "sort-packages": true
    }
}
