Skip to content

Commit

Permalink
Update dependencies; remove psalm
Browse files Browse the repository at this point in the history
Update all the things to be in line with the other bundles again
  • Loading branch information
lazka committed Jan 15, 2025
1 parent 75176ab commit 698747b
Show file tree
Hide file tree
Showing 6 changed files with 343 additions and 1,176 deletions.
1 change: 0 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,5 +62,4 @@ jobs:
result=0
composer run cs || result=1
composer run phpstan || result=1
composer run psalm || result=1
exit $result
8 changes: 2 additions & 6 deletions .renovaterc.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,15 +14,11 @@
"packageRules": [
{
"matchPackagePrefixes": ["symfony/"],
"allowedVersions": "<6"
"allowedVersions": "<7"
},
{
"matchPackageNames": ["api-platform/core"],
"allowedVersions": "<3"
},
{
"matchPackageNames": ["phpunit/phpunit"],
"allowedVersions": "<10"
"allowedVersions": "<4"
}
]
}
31 changes: 13 additions & 18 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,24 +6,23 @@
"require": {
"php": ">=8.1",
"ext-json": "*",
"api-platform/core": "^2.7.11 || ^3.2",
"api-platform/core": "^3.2",
"dbp/relay-core-bundle": "^0.1.148",
"symfony/framework-bundle": "^5.4 | ^6.4",
"symfony/config": "^5.4 | ^6.4",
"symfony/http-kernel": "^5.4 | ^6.4",
"symfony/dependency-injection": "^5.4 | ^6.4"
"symfony/framework-bundle": "^6.4",
"symfony/config": "^6.4",
"symfony/http-kernel": "^6.4",
"symfony/dependency-injection": "^6.4"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.50",
"phpstan/phpstan": "^1.10.59",
"phpstan/phpstan-phpunit": "^1.3.16",
"phpstan/phpstan-symfony": "^1.3.7",
"phpunit/phpunit": "^9.6.17",
"symfony/browser-kit": "^5.4 | ^6.4",
"symfony/http-client": "^5.4 | ^6.4",
"phpstan/phpstan": "^2.0.1",
"phpstan/phpstan-phpunit": "^2.0.1",
"phpstan/phpstan-symfony": "^2.0.1",
"phpunit/phpunit": "^10.1",
"symfony/browser-kit": "^6.4",
"symfony/http-client": "^6.4",
"symfony/monolog-bundle": "^3.10",
"symfony/phpunit-bridge": "^5.4 | ^6.4",
"vimeo/psalm": "^5.22.2"
"symfony/phpunit-bridge": "^7.2"
},
"autoload": {
"psr-4": {
Expand All @@ -48,13 +47,9 @@
"phpstan": [
"@php vendor/bin/phpstan analyze --ansi"
],
"psalm": [
"@php vendor/bin/psalm"
],
"lint": [
"@composer run cs",
"@composer run phpstan",
"@composer run psalm"
"@composer run phpstan"
],
"cs-fix": [
"@php vendor/bin/php-cs-fixer --ansi fix"
Expand Down
Loading

0 comments on commit 698747b

Please sign in to comment.