Skip to content

Commit 9081335

Browse files
authored
[Release] v1.3.0 Paketupdates, Erweiterung möglicher Symfony-Versionen (#8)
* updated packages and possible symfony versions * composer update with PHP 7.4 * some more updates and fixes * cleanup
1 parent f444507 commit 9081335

File tree

6 files changed

+1116
-956
lines changed

6 files changed

+1116
-956
lines changed

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
11
vendor/
2+
.DS_Store/
23
.idea/
4+
.php-cs-fixer.cache
35
.php_cs.cache
46
.phpunit.result.cache

.php-cs-fixer.dist.php

Lines changed: 3 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -16,28 +16,20 @@
1616
->setRules([
1717
'@Symfony' => true,
1818
'@Symfony:risky' => true,
19-
'array_syntax' => ['syntax' => 'short'],
2019
'combine_consecutive_issets' => true,
2120
'combine_consecutive_unsets' => true,
22-
'echo_tag_syntax' => false,
2321
'heredoc_to_nowdoc' => true,
2422
'increment_style' => false,
25-
'linebreak_after_opening_tag' => true,
2623
'mb_str_functions' => true,
27-
'multiline_whitespace_before_semicolons' => false,
28-
'native_function_invocation' => true,
29-
'no_php4_constructor' => true,
30-
'no_unreachable_default_argument_value' => true,
24+
'multiline_whitespace_before_semicolons' => true,
25+
'native_function_invocation' => ['include' => ['@all']],
3126
'no_useless_else' => true,
3227
'no_useless_return' => true,
33-
'ordered_imports' => true,
3428
'phpdoc_summary' => false,
3529
'phpdoc_to_comment' => false,
3630
'phpdoc_var_without_name' => false,
37-
'psr_autoloading' => true,
38-
'semicolon_after_instruction' => true,
3931
'strict_comparison' => true,
4032
'strict_param' => true,
4133
])
4234
->setFinder($finder)
43-
;
35+
;

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
| Version | Date | Comment |
22
|---------|------------|----------------------------------------------------------------------|
3+
| 1.3.0 | 2022-03-01 | Updates dependencies and possible Symfony versions |
34
| 1.2.0 | 2021-08-31 | Updates dependencies |
45
| 1.1.0 | 2020-08-06 | Added service definition for dependency injection |
56
| 1.0.0 | 2020-08-06 | Initial release |

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ Symfony bundle which enriches exceptions with some additional information like t
99
## Requirements
1010

1111
* [PHP 7.4](http://php.net/releases/7_4_0.php) or greater
12-
* [Symfony 4.4](https://symfony.com/roadmap/4.4) or [Symfony 5.3](https://symfony.com/roadmap/5.3)
12+
* [Symfony 4.4](https://symfony.com/roadmap/4.4), [Symfony 5.4](https://symfony.com/roadmap/5.4) or [Symfony 6.0](https://symfony.com/roadmap/6.0)
1313

1414
## Installation
1515

composer.json

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -19,15 +19,15 @@
1919
"require": {
2020
"php": ">=7.4",
2121
"monolog/monolog": "^1.25 || ^2.0",
22-
"symfony/config": "^4.4 || ^5.3",
23-
"symfony/dependency-injection": "^4.4 || ^5.3",
24-
"symfony/http-foundation": "^4.4 || ^5.3",
25-
"symfony/security-bundle": "^4.4 || ^5.3"
22+
"symfony/config": "^4.4 || ^5.4 || ^6.0",
23+
"symfony/dependency-injection": "^4.4 || ^5.4 || ^6.0",
24+
"symfony/http-foundation": "^4.4 || ^5.4 || ^6.0",
25+
"symfony/security-bundle": "^4.4 || ^5.4 || ^6.0"
2626
},
2727
"require-dev": {
28-
"friendsofphp/php-cs-fixer": "^v2.19",
29-
"phpunit/phpunit": "^8.5",
30-
"symfony/phpunit-bridge": "^5.3"
28+
"friendsofphp/php-cs-fixer": "^v3.4",
29+
"phpunit/phpunit": "^9.5",
30+
"symfony/phpunit-bridge": "^4.4 || ^5.4 || ^6.0"
3131
},
3232
"autoload": {
3333
"psr-4": {

0 commit comments

Comments
 (0)