{
    "preset": "laravel",
    "rules": {
        "array_syntax": {
            "syntax": "short"
        },
        "binary_operator_spaces": {
            "default": "single_space"
        },
        "blank_line_after_namespace": true,
        "blank_line_after_opening_tag": true,
        "blank_line_before_statement": {
            "statements": ["return", "throw", "try"]
        },
        "braces": {
            "allow_single_line_closure": true
        },
        "cast_spaces": true,
        "class_attributes_separation": {
            "elements": {
                "method": "one"
            }
        },
        "concat_space": {
            "spacing": "one"
        },
        "declare_equal_normalize": true,
        "function_typehint_space": true,
        "method_argument_space": {
            "on_multiline": "ensure_fully_multiline"
        },
        "no_blank_lines_after_phpdoc": true,
        "no_empty_phpdoc": true,
        "no_empty_statement": true,
        "no_leading_import_slash": true,
        "no_leading_namespace_whitespace": true,
        "no_mixed_echo_print": {
            "use": "echo"
        },
        "no_multiline_whitespace_around_double_arrow": true,
        "no_short_bool_cast": true,
        "no_singleline_whitespace_before_semicolons": true,
        "no_spaces_around_offset": {
            "positions": ["inside", "outside"]
        },
        "no_trailing_comma_in_singleline": true,
        "no_unused_imports": true,
        "no_whitespace_before_comma_in_array": true,
        "normalize_index_brace": true,
        "ordered_imports": {
            "sort_algorithm": "alpha"
        },
        "phpdoc_indent": true,
        "phpdoc_no_access": true,
        "phpdoc_no_package": true,
        "phpdoc_scalar": true,
        "phpdoc_single_line_var_spacing": true,
        "phpdoc_summary": false,
        "phpdoc_to_comment": false,
        "phpdoc_trim": true,
        "phpdoc_types": true,
        "phpdoc_var_without_name": true,
        "single_blank_line_at_eof": true,
        "single_quote": true,
        "trailing_comma_in_multiline": true,
        "trim_array_spaces": true,
        "unary_operator_spaces": true,
        "visibility_required": {
            "elements": ["method", "property"]
        },
        "whitespace_after_comma_in_array": true
    }
}
