Skip to content

Commit 1c092b0

Browse files
rdss-sknottjhofmrdss-skirejewski
authoredMay 2, 2023
4.x (#204)
* ignore whitespace in method length check (#203) * php81 (#196) * Feature/fix php8 install (#157) * PHP 8.1 composer compatibility and API changes * php-di to 7 and stuff * Add support for symfony 6 * Update phpcs php version in config * Fix unit tests. * Had to made some adjustments to fluent interface testing * Improve unit test assertions and add mockery trait go gain another 60+ assertions * Fix unit tests by returning instance in mocks and remove deprecated ruleset * Change github actions php versions * Add var to ignore directories * Phpcs: enforce trailing comma in functions and enforce non capturing catch * Use composer 2 for github actions * Use only slevomat version 7 * Use new phpstan config syntax * Add new sniff disallowing of mixed parameter types * Add sniff for disallow native mixed return types * PSR1 and PSR12 enabled Co-authored-by: Sebastian Knott <[email protected]> Co-authored-by: Sebastian Kirejewski <[email protected]> * Make no assertion about named arguments * Switch to src dist logic * Template link to coding-standard-source * Update executable template --------- Co-authored-by: jhofm <[email protected]> Co-authored-by: Sebastian Kirejewski <[email protected]>
1 parent d89c6f7 commit 1c092b0

File tree

228 files changed

+158
-15475
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

228 files changed

+158
-15475
lines changed
 

‎.editorconfig

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
# EditorConfig is awesome: https://EditorConfig.org
2+
3+
# top-most EditorConfig file
4+
root = true
5+
6+
# Unix-style newlines with a newline ending every file
7+
[*]
8+
end_of_line = lf
9+
insert_final_newline = true
10+
charset = utf-8
11+
trim_trailing_whitespace = true
12+
indent_style = space
13+
indent_size = 4
14+
15+
[*.{yml,yaml}]
16+
end_of_line = lf
17+
insert_final_newline = true
18+
charset = utf-8
19+
trim_trailing_whitespace = true
20+
indent_style = space
21+
indent_size = 2

‎.github/workflows/continuous-integration.yml

-148
This file was deleted.

0 commit comments

Comments
 (0)
Please sign in to comment.