Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/apispec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
strategy:
fail-fast: false
matrix:
php: ["8.3"]
php: ["8.4"]
steps:
- name: Checkout
uses: actions/checkout@v4
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/composer_install.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
strategy:
fail-fast: false
matrix:
php: ["8.3"]
php: ["8.4"]
name: Composer install in prod mode (PHP ${{ matrix.php}})
steps:
- name: Checkout
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/doctrine.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
strategy:
fail-fast: false
matrix:
php: ["8.3"]
php: ["8.4"]
name: Validate Schema (PHP ${{ matrix.php}})
services:
mariadb:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/phpunit.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
strategy:
fail-fast: false
matrix:
php: ["8.3"]
php: ["8.4"]
name: PHP Unit tests (PHP ${{ matrix.php }})
steps:
- name: Checkout
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/psalm.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
strategy:
fail-fast: false
matrix:
php: ["8.3"]
php: ["8.4"]
name: Psalm (PHP ${{ matrix.php }})
steps:
- name: Checkout
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/rector.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
strategy:
fail-fast: false
matrix:
php: ["8.3"]
php: ["8.4"]
name: Rector (PHP ${{ matrix.php }})
steps:
- name: Checkout
Expand Down
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@ All notable changes to this project will be documented in this file.
- Removed fixture length check from test.
- Added vitest for frontend unit tests.
- Added BRND to feed source admin dropdown.
- Upgraded to PHP 8.4.
- Changed default CLIENT_PULL_STRATEGY_INTERVAL value to 10 minutes.

### NB! Prior to 3.x the project was split into separate repositories
Expand Down
8 changes: 4 additions & 4 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"license": "proprietary",
"type": "project",
"require": {
"php": ">=8.3",
"php": ">=8.4",
"ext-ctype": "*",
"ext-fileinfo": "*",
"ext-gd": "*",
Expand Down Expand Up @@ -53,7 +53,7 @@
"friendsofphp/php-cs-fixer": "^3.0",
"hautelook/alice-bundle": "^2.9",
"phpunit/phpunit": "^9.5",
"psalm/plugin-symfony": "^5.0",
"psalm/plugin-symfony": "^5.3",
"rector/rector": "^1.0",
"symfony/browser-kit": "~6.4.0",
"symfony/css-selector": "~6.4.0",
Expand All @@ -63,9 +63,9 @@
"symfony/stopwatch": "~6.4.0",
"symfony/var-dumper": "~6.4.0",
"symfony/web-profiler-bundle": "~6.4.0",
"vimeo/psalm": "^5.12.0",
"vimeo/psalm": "^6.13.0",
"vincentlanglet/twig-cs-fixer": "^3.8",
"weirdan/doctrine-psalm-plugin": "^2.0"
"weirdan/doctrine-psalm-plugin": "^2.10"
},
"replace": {
"symfony/polyfill-ctype": "*",
Expand Down
Loading
Loading