Skip to content

Commit

Permalink
feat(upgrade): upgrade dependecies
Browse files Browse the repository at this point in the history
- symfony 7.0.*
- php 8.3
  • Loading branch information
dzoudzou committed Jan 17, 2025
1 parent bd3b029 commit 70fa46d
Show file tree
Hide file tree
Showing 34 changed files with 152 additions and 10,626 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.2', '8.3' ]
symfony-version: ['6.4.*', '7.0.*' ]
symfony-deprecations-helper: [ 'max[direct]=0&baselineFile=./tests/allowed.json' ]
grumphp-testsuite: [ 'no-analyse' ]
grumphp-flag: [ '-no-analyse' ]
Expand Down
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -8,3 +8,4 @@ tests/Functional/app/data/*
!tests/Functional/app/data/.gitkeep
mutagen.yml.lock
/.idea/
composer.lock
41 changes: 21 additions & 20 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": "^2.0",
"symfony/config": "^6.4 || ^7.0",
"symfony/dependency-injection": "^6.4 || ^7.0",
"symfony/proxy-manager-bridge": "^6.4",
"symfony/yaml": "^6.4 || ^7.0"
},
"autoload": {
"psr-4": {
Expand All @@ -33,20 +33,20 @@
"php-parallel-lint/php-parallel-lint": "^1.3",
"phpcompatibility/php-compatibility": "^9.1",
"phpmd/phpmd": "^2.8",
"phpro/grumphp": "^2.4",
"phpro/grumphp-shim": "^2.10",
"phpstan/phpstan": "^1.0",
"phpstan/phpstan-webmozart-assert": "^1.0",
"phpunit/phpunit": "^10.2",
"pixelfederation/coding-standards": "^2.1",
"pixelfederation/coding-standards": "^3.0",
"psalm/phar": "^5.26",
"roave/security-advisories": "dev-master",
"squizlabs/php_codesniffer": "^3.4",
"symfony/browser-kit": "^5.4|^6.3",
"symfony/browser-kit": "^6.4|^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",
"symplify/config-transformer": "^12.0",
"vimeo/psalm": "6.x-dev"
"symfony/framework-bundle": "^6.4 || ^7.0",
"symfony/http-kernel": "^6.4 || ^7.0",
"symfony/phpunit-bridge": "^6.4 || ^7.0",
"symplify/config-transformer": "^12.0"
},
"autoload-dev": {
"psr-4": {
Expand All @@ -56,25 +56,26 @@
"config": {
"sort-packages": true,
"allow-plugins": {
"phpro/grumphp": true,
"dealerdirect/phpcodesniffer-composer-installer": true,
"phpro/grumphp-shim": true,
"symfony/flex": true
}
},
"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",
"psalm": "psalm"
"phpunit": "phpunit",
"psalm": "psalm.phar"
},
"extra": {
"symfony": {
"require": "6.3.*"
"require": "6.4.*"
}
}
}
Loading

0 comments on commit 70fa46d

Please sign in to comment.