Skip to content

Commit

Permalink
feat(upgrade): upgrade dependecies
Browse files Browse the repository at this point in the history
- symfony 7.0.*
- doctrine/orm 3.*
- php 8.3
  • Loading branch information
dzoudzou committed May 30, 2024
1 parent bd3b029 commit 2ce40a5
Show file tree
Hide file tree
Showing 32 changed files with 1,812 additions and 1,227 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/php.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
php-version: [ '8.2' ]
symfony-version: [ '6.3.*', '7.0.*' ]
php-version: [ '8.3' ]
symfony-version: [ '7.0.*' ]
symfony-deprecations-helper: [ 'max[direct]=0&baselineFile=./tests/allowed.json' ]
grumphp-testsuite: [ 'no-analyse' ]
grumphp-flag: [ '-no-analyse' ]
Expand Down
31 changes: 16 additions & 15 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,13 +13,13 @@
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"php": ">= 8.1",
"php": ">= 8.2",
"doctrine/doctrine-bundle": "^2.10",
"doctrine/orm": "^2.15",
"symfony/config": "^5.4|^6.3|^7.0",
"symfony/dependency-injection": "^5.4|^6.3|^7.0",
"symfony/proxy-manager-bridge": "^5.4|^6.3|^7.0",
"symfony/yaml": "^5.4|^6.3|^7.0"
"doctrine/orm": "^3.0",
"symfony/config": "^7.0",
"symfony/dependency-injection": "^7.0",
"symfony/proxy-manager-bridge": "^6.4",
"symfony/yaml": "^7.0"
},
"autoload": {
"psr-4": {
Expand All @@ -37,14 +37,14 @@
"phpstan/phpstan": "^1.0",
"phpstan/phpstan-webmozart-assert": "^1.0",
"phpunit/phpunit": "^10.2",
"pixelfederation/coding-standards": "^2.1",
"pixelfederation/coding-standards": "^3.0",
"roave/security-advisories": "dev-master",
"squizlabs/php_codesniffer": "^3.4",
"symfony/browser-kit": "^5.4|^6.3",
"symfony/browser-kit": "^5.4|^6.3|^7.0",
"symfony/flex": "^2.3",
"symfony/framework-bundle": "^5.4|^6.3",
"symfony/http-kernel": "^5.4|^6.3",
"symfony/phpunit-bridge": "^6.3",
"symfony/framework-bundle": "^7.0",
"symfony/http-kernel": "^7.0",
"symfony/phpunit-bridge": "^7.0",
"symplify/config-transformer": "^12.0",
"vimeo/psalm": "6.x-dev"
},
Expand All @@ -62,19 +62,20 @@
}
},
"scripts": {
"grumphp8.1": "grumphp run --testsuite=php8.1",
"grumphp8.1-no-analyse": "grumphp run --testsuite=php8.1-no-analyse",
"grumphp8.2": "grumphp run --testsuite=php8.2",
"grumphp8.2-no-analyse": "grumphp run --testsuite=php8.2-no-analyse",
"phpcs": "phpcs --standard=phpcs.ruleset.xml src",
"grumphp8.3-no-analyse": "grumphp run --testsuite=php8.3-no-analyse",
"phpcs": "phpcs --standard=phpcs.ruleset.xml",
"phpcbf": "phpcbf --standard=phpcs.ruleset.xml --extensions=php --tab-width=4 -sp src tests",
"php-cs-fixer": "php-cs-fixer --config=./.php-cs-fixer.php fix src",
"phpmd": "phpmd src text phpmd.ruleset.xml",
"phpstan": "phpstan analyse src --level=7",
"phpunit": "phpunit",
"psalm": "psalm"
},
"extra": {
"symfony": {
"require": "6.3.*"
"require": "7.0.*"
}
}
}
Loading

0 comments on commit 2ce40a5

Please sign in to comment.