{
    "preset": "laravel",
    "rules": {
        "ordered_imports": {
            "sort_algorithm": "alpha"
        },
        "no_unused_imports": true,
        "concat_space": {
            "spacing": "one"
        },
        "fully_qualified_strict_types": true,
        "single_quote": true,
        "blank_line_before_statement": {
            "statements": ["return", "throw", "try"]
        },
        "method_chaining_indentation": true,
        "phpdoc_align": {
            "align": "left"
        },
        "phpdoc_no_empty_return": true,
        "phpdoc_separation": true,
        "trailing_comma_in_multiline": {
            "elements": ["arrays", "arguments", "parameters"]
        }
    },
    "exclude": [
        "bootstrap/cache",
        "storage",
        "vendor",
        "node_modules"
    ]
}
