Skip to content

Commit 4feefc1

Browse files
committed
upgrade php 8.2 -> 8.4
1 parent acc1e5b commit 4feefc1

File tree

12 files changed

+1113
-1126
lines changed

12 files changed

+1113
-1126
lines changed

.env

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ MESSENGER_TRANSPORT_DSN=doctrine://default?auto_setup=0
3030
# Format described at https://www.doctrine-project.org/projects/doctrine-dbal/en/latest/reference/configuration.html#connecting-using-a-url
3131
# IMPORTANT: You MUST configure your server version, either here or in config/packages/doctrine.yaml
3232
#
33-
# DATABASE_URL="sqlite:///%kernel.project_dir%/var/data.db"
33+
# DATABASE_URL="sqlite:///%kernel.project_dir%/var/data_%kernel.environment%.db"
3434
# DATABASE_URL="mysql://app:!ChangeMe!@127.0.0.1:3306/app?serverVersion=8.0.32&charset=utf8mb4"
3535
# DATABASE_URL="mysql://app:!ChangeMe!@127.0.0.1:3306/app?serverVersion=10.11.2-MariaDB&charset=utf8mb4"
3636
DATABASE_URL="postgresql://app:!ChangeMe!@127.0.0.1:5432/app?serverVersion=16&charset=utf8"

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313

1414
- uses: shivammathur/setup-php@v2
1515
with:
16-
php-version: '8.2'
16+
php-version: '8.4'
1717
extensions: ctype, iconv, pgsql, xml, zip
1818

1919
- run: composer install --no-progress --no-interaction

.gitignore

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -9,12 +9,7 @@
99
/vendor/
1010
###< symfony/framework-bundle ###
1111

12-
###> symfony/phpunit-bridge ###
13-
.phpunit.result.cache
14-
/phpunit.xml
15-
###< symfony/phpunit-bridge ###
16-
1712
###> phpunit/phpunit ###
1813
/phpunit.xml
19-
.phpunit.result.cache
14+
/.phpunit.cache/
2015
###< phpunit/phpunit ###

composer.json

Lines changed: 25 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -4,30 +4,30 @@
44
"minimum-stability": "stable",
55
"prefer-stable": true,
66
"require": {
7-
"php": ">=8.2",
7+
"php": ">=8.4",
88
"ext-ctype": "*",
99
"ext-iconv": "*",
1010
"ext-pgsql": "*",
1111
"ext-xml": "*",
1212
"ext-zip": "*",
13-
"andalisolutions/anaf-php": "^0.7.4",
13+
"andalisolutions/anaf-php": "^0.7.7",
1414
"andalisolutions/oauth2-anaf": "^1.0",
15-
"aws/aws-sdk-php": "^3.339",
16-
"doctrine/dbal": "^3",
17-
"doctrine/doctrine-bundle": "^2.13",
18-
"doctrine/doctrine-migrations-bundle": "^3.3",
19-
"doctrine/orm": "^3.3",
20-
"league/oauth2-google": "^4.0",
21-
"symfony/console": "7.2.*",
22-
"symfony/dotenv": "7.2.*",
23-
"symfony/filesystem": "7.2.*",
24-
"symfony/flex": "^2",
25-
"symfony/framework-bundle": "7.2.*",
26-
"symfony/messenger": "7.2.*",
27-
"symfony/runtime": "7.2.*",
28-
"symfony/security-bundle": "7.2.*",
29-
"symfony/twig-bundle": "7.2.*",
30-
"symfony/yaml": "7.2.*"
15+
"aws/aws-sdk-php": "^3.353",
16+
"doctrine/dbal": "^3.10.1",
17+
"doctrine/doctrine-bundle": "^2.15.1",
18+
"doctrine/doctrine-migrations-bundle": "^3.4.2",
19+
"doctrine/orm": "^3.5.2",
20+
"league/oauth2-google": "^4.0.1",
21+
"symfony/console": "7.3.*",
22+
"symfony/dotenv": "7.3.*",
23+
"symfony/filesystem": "7.3.*",
24+
"symfony/flex": "^2.8.1",
25+
"symfony/framework-bundle": "7.3.*",
26+
"symfony/messenger": "7.3.*",
27+
"symfony/runtime": "7.3.*",
28+
"symfony/security-bundle": "7.3.*",
29+
"symfony/twig-bundle": "7.3.*",
30+
"symfony/yaml": "7.3.*"
3131
},
3232
"config": {
3333
"allow-plugins": {
@@ -76,17 +76,16 @@
7676
"extra": {
7777
"symfony": {
7878
"allow-contrib": false,
79-
"require": "7.2.*",
79+
"require": "7.3.*",
8080
"docker": false
8181
}
8282
},
8383
"require-dev": {
84-
"phpunit/phpunit": "^9.5",
85-
"symfony/browser-kit": "7.2.*",
86-
"symfony/css-selector": "7.2.*",
87-
"symfony/maker-bundle": "^1.61",
88-
"symfony/phpunit-bridge": "^7.2",
89-
"symfony/stopwatch": "7.2.*",
90-
"symfony/web-profiler-bundle": "7.1.*"
84+
"phpunit/phpunit": "^12.3.4",
85+
"symfony/browser-kit": "7.3.*",
86+
"symfony/css-selector": "7.3.*",
87+
"symfony/maker-bundle": "^1.64",
88+
"symfony/stopwatch": "7.3.*",
89+
"symfony/web-profiler-bundle": "7.3.*"
9190
}
9291
}

0 commit comments

Comments
 (0)