Skip to content

Commit

Permalink
Allow Symfony 7+ and 21torr/rad 3+
Browse files Browse the repository at this point in the history
  • Loading branch information
apfelbox committed Dec 21, 2023
1 parent 2255b0a commit 80a687a
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 11 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
2.2.0
=====

* (feature) Allow Symfony 7+ and `21torr/rad` 3+.
* (improvement) Require PHP 8.2+


2.1.2
=====

Expand Down
31 changes: 20 additions & 11 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,15 +11,15 @@
],
"homepage": "https://github.com/21TORR/bundle-helpers",
"require": {
"php": "^8.0",
"symfony/config": "^5.1 || ^6.0",
"symfony/dependency-injection": "^5.1 || ^6.0",
"symfony/http-kernel": "^5.1 || ^6.0"
"php": ">= 8.2",
"symfony/config": "^6.4 || ^7.0",
"symfony/dependency-injection": "^6.4 || ^7.0",
"symfony/http-kernel": "^6.4 || ^7.0"
},
"require-dev": {
"bamarni/composer-bin-plugin": "^1.4",
"bamarni/composer-bin-plugin": "^1.8.2",
"roave/security-advisories": "dev-latest",
"symfony/phpunit-bridge": "^5.1 || ^6.0"
"symfony/phpunit-bridge": "^7.0"
},
"autoload": {
"psr-4": {
Expand All @@ -38,16 +38,25 @@
"sort-packages": true
},
"extra": {
"bamarni-bin": {
"bin-links": false,
"forward-command": true
},
"branch-alias": {
"dev-next": "2.x-dev"
"dev-next": "3.x-dev"
}
},
"scripts": {
"post-install-cmd": [
"@composer bin all install --ansi"
"fix-lint": [
"@composer bin c-norm normalize \"$(pwd)/composer.json\" --indent-style tab --indent-size 1 --ansi",
"vendor-bin/cs-fixer/vendor/bin/php-cs-fixer fix --diff --config vendor-bin/cs-fixer/vendor/21torr/php-cs-fixer/.php-cs-fixer.dist.php --no-interaction --ansi"
],
"lint": [
"@composer bin c-norm normalize \"$(pwd)/composer.json\" --indent-style tab --indent-size 1 --dry-run --ansi",
"vendor-bin/cs-fixer/vendor/bin/php-cs-fixer fix --diff --config vendor-bin/cs-fixer/vendor/21torr/php-cs-fixer/.php-cs-fixer.dist.php --dry-run --no-interaction --ansi --using-cache no"
],
"post-update-cmd": [
"@composer bin all update --ansi"
"test": [
"vendor-bin/test/vendor/bin/phpstan analyze -c phpstan.neon . --ansi"
]
}
}

0 comments on commit 80a687a

Please sign in to comment.