{
    "preset": "laravel",
    "rules": {
        "declare_strict_types": true,
        "blank_line_after_namespace": true,
        "blank_line_after_opening_tag": true,
        "blank_line_before_statement": {
            "statements": ["return", "throw", "if", "foreach", "while"]
        },
        "array_syntax": {"syntax": "short"},
        "binary_operator_spaces": {
            "default": "align_single_space_minimal"
        },
        "not_operator_with_successor_space": true,
        "single_quote": true,
        "trailing_comma_in_multiline": {"elements": ["arrays", "parameters", "arguments"]},
        "no_unused_imports": true,
        "ordered_imports": {"sort_algorithm": "alpha"},
        "phpdoc_align": false,
        "phpdoc_order": true,
        "phpdoc_separation": false,
        "phpdoc_single_line_var_spacing": true,
        "phpdoc_var_without_name": true
    },
    "exclude": [
        "bootstrap",
        "storage",
        "vendor"
    ]
}
