diff --git a/.distignore b/.distignore index 19854e9..70f2ea1 100644 --- a/.distignore +++ b/.distignore @@ -3,6 +3,7 @@ bin/ tests/ vendor/ .distignore +.editorconfig .git .gitignore .phpcs.xml.dist diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 0000000..e2a611f --- /dev/null +++ b/.editorconfig @@ -0,0 +1,12 @@ +root = true + +[*] +charset = utf-8 +end_of_line = lf +insert_final_newline = true +trim_trailing_whitespace = true +indent_style = tab + +[*.{yml,yaml}] +indent_style = space +indent_size = 2 diff --git a/.gitignore b/.gitignore index 58be7c7..c1d3898 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,3 @@ vendor .phpunit.result.cache +.claude/settings.local.json diff --git a/phpunit.xml.dist b/phpunit.xml.dist index bf87958..9f6e307 100644 --- a/phpunit.xml.dist +++ b/phpunit.xml.dist @@ -3,9 +3,6 @@ bootstrap="tests/bootstrap.php" backupGlobals="false" colors="true" - convertErrorsToExceptions="true" - convertNoticesToExceptions="true" - convertWarningsToExceptions="true" >