Skip to content

Commit 288a8bd

Browse files
Added support for PHP 8.4
1 parent 980aa98 commit 288a8bd

17 files changed

+236
-160
lines changed

.editorconfig

Lines changed: 5 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -5,44 +5,26 @@ root = true
55

66
[*]
77
charset = utf-8
8+
end_of_line = lf
89
indent_size = 4
910
indent_style = space
10-
end_of_line = lf
1111
insert_final_newline = true
1212
trim_trailing_whitespace = true
1313

1414
[*.js]
1515
indent_size = 2
1616

17-
[*.json]
18-
indent_size = 2
19-
20-
[*.json.dist]
21-
indent_size = 2
22-
23-
[*.json5]
24-
indent_size = 2
25-
26-
[*.json5.dist]
17+
[*.{json,json.dist}]
2718
indent_size = 2
2819

2920
[*.md]
3021
trim_trailing_whitespace = false
3122

32-
[*.neon]
33-
indent_size = 2
34-
35-
[*.neon.dist]
36-
indent_size = 2
37-
38-
[*.xml]
39-
indent_size = 2
40-
41-
[*.xml.dist]
23+
[*.{neon,neon.dist}]
4224
indent_size = 2
4325

44-
[*.yml]
26+
[*.{xml,xml.dist}]
4527
indent_size = 2
4628

47-
[*.yml.dist]
29+
[*.{yml,yml.dist}]
4830
indent_size = 2

.gitattributes

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Path-based git attributes
22
# https://www.kernel.org/pub/software/scm/git/docs/gitattributes.html
33

4-
# Ignore all test and documentation with "export-ignore".
4+
# Ignore tests and tooling with "export-ignore"
55
/.github/ export-ignore
66
/tests/ export-ignore
77
/.editorconfig export-ignore

.github/CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ Before submitting a pull request:
4949

5050
## Requirements
5151

52-
- *[PSR-12 Coding Standard](https://github.com/php-fig/fig-standards/blob/master/accepted/PSR-12-extended-coding-style-guide.md)* where possible - falling back to [PSR-2 Coding Standard](https://github.com/php-fig/fig-standards/blob/master/accepted/PSR-2-coding-style-guide.md) otherwise - The easiest way to apply the conventions is to install [PHP Code Sniffer](https://github.com/PHPCSStandards/PHP_CodeSniffer).
52+
- *[PSR-12 Coding Standard](https://github.com/php-fig/fig-standards/blob/master/accepted/PSR-12-extended-coding-style-guide.md)* where possible - falling back to [PSR-2 Coding Standard](https://github.com/php-fig/fig-standards/blob/master/accepted/PSR-2-coding-style-guide.md) otherwise - The easiest way to apply the conventions is to install [PHP Code Sniffer](https://github.com/squizlabs/PHP_CodeSniffer).
5353

5454
- **Add tests!** - Your patch won't be accepted if it doesn't have tests.
5555

0 commit comments

Comments
 (0)