Skip to content

Commit

Permalink
[Release] v1.3.0 Paketupdates, Erweiterung möglicher Symfony-Versionen (
Browse files Browse the repository at this point in the history
#8)

* updated packages and possible symfony versions

* composer update with PHP 7.4

* some more updates and fixes

* cleanup
  • Loading branch information
sinansoezen authored Mar 1, 2022
1 parent f444507 commit 9081335
Show file tree
Hide file tree
Showing 6 changed files with 1,116 additions and 956 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
vendor/
.DS_Store/
.idea/
.php-cs-fixer.cache
.php_cs.cache
.phpunit.result.cache
14 changes: 3 additions & 11 deletions .php-cs-fixer.dist.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,28 +16,20 @@
->setRules([
'@Symfony' => true,
'@Symfony:risky' => true,
'array_syntax' => ['syntax' => 'short'],
'combine_consecutive_issets' => true,
'combine_consecutive_unsets' => true,
'echo_tag_syntax' => false,
'heredoc_to_nowdoc' => true,
'increment_style' => false,
'linebreak_after_opening_tag' => true,
'mb_str_functions' => true,
'multiline_whitespace_before_semicolons' => false,
'native_function_invocation' => true,
'no_php4_constructor' => true,
'no_unreachable_default_argument_value' => true,
'multiline_whitespace_before_semicolons' => true,
'native_function_invocation' => ['include' => ['@all']],
'no_useless_else' => true,
'no_useless_return' => true,
'ordered_imports' => true,
'phpdoc_summary' => false,
'phpdoc_to_comment' => false,
'phpdoc_var_without_name' => false,
'psr_autoloading' => true,
'semicolon_after_instruction' => true,
'strict_comparison' => true,
'strict_param' => true,
])
->setFinder($finder)
;
;
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
| Version | Date | Comment |
|---------|------------|----------------------------------------------------------------------|
| 1.3.0 | 2022-03-01 | Updates dependencies and possible Symfony versions |
| 1.2.0 | 2021-08-31 | Updates dependencies |
| 1.1.0 | 2020-08-06 | Added service definition for dependency injection |
| 1.0.0 | 2020-08-06 | Initial release |
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ Symfony bundle which enriches exceptions with some additional information like t
## Requirements

* [PHP 7.4](http://php.net/releases/7_4_0.php) or greater
* [Symfony 4.4](https://symfony.com/roadmap/4.4) or [Symfony 5.3](https://symfony.com/roadmap/5.3)
* [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)

## Installation

Expand Down
14 changes: 7 additions & 7 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,15 +19,15 @@
"require": {
"php": ">=7.4",
"monolog/monolog": "^1.25 || ^2.0",
"symfony/config": "^4.4 || ^5.3",
"symfony/dependency-injection": "^4.4 || ^5.3",
"symfony/http-foundation": "^4.4 || ^5.3",
"symfony/security-bundle": "^4.4 || ^5.3"
"symfony/config": "^4.4 || ^5.4 || ^6.0",
"symfony/dependency-injection": "^4.4 || ^5.4 || ^6.0",
"symfony/http-foundation": "^4.4 || ^5.4 || ^6.0",
"symfony/security-bundle": "^4.4 || ^5.4 || ^6.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^v2.19",
"phpunit/phpunit": "^8.5",
"symfony/phpunit-bridge": "^5.3"
"friendsofphp/php-cs-fixer": "^v3.4",
"phpunit/phpunit": "^9.5",
"symfony/phpunit-bridge": "^4.4 || ^5.4 || ^6.0"
},
"autoload": {
"psr-4": {
Expand Down
Loading

0 comments on commit 9081335

Please sign in to comment.