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
18 changes: 13 additions & 5 deletions .github/workflows/continuous-integration.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ jobs:
phpunit:
name: PHPUnit (PHP ${{ matrix.php-version }} - Symfony ${{ matrix.symfony-version }})
runs-on: ubuntu-24.04
continue-on-error: ${{ matrix.continue-on-error || false }}
env:
SYMFONY_REQUIRE: ${{ matrix.symfony-version }}

Expand All @@ -23,7 +24,14 @@ jobs:
symfony-version:
- '6.4.*'
- '7.3.*'
- '7.4.x-dev'
- '7.4.*@dev'
include:
- php-version: '8.4'
symfony-version: '8.0.*@dev'
continue-on-error: true
- php-version: '8.5'
symfony-version: '8.0.*@dev'
continue-on-error: true

steps:
- name: Checkout code
Expand All @@ -37,11 +45,11 @@ jobs:
coverage: pcov
php-version: ${{ matrix.php-version }}
extensions: pdo_sqlite
tools: flex

- name: Install Symfony Flex
run: |
composer config --global --no-plugins allow-plugins.symfony/flex true
composer global require --no-progress --no-scripts --no-plugins symfony/flex
- name: Configure Composer minimum-stability for dev versions
if: contains(matrix.symfony-version, 'dev')
run: composer config minimum-stability dev

- name: Install Composer dependencies
uses: ramsey/composer-install@v3
Expand Down
1 change: 1 addition & 0 deletions CHANGELOG-5.x.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
-----

* Test against PHP 8.5
* Allow Symfony 8

5.5.1
-----
Expand Down
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,8 +48,9 @@ You can check docs there: https://core-bundle.leapt.dev/
Versions & dependencies
-----------------------

The current version (5.x) of the bundle works with Symfony 6.4 & Symfony 7.0+.
The current version (5.x) of the bundle works with Symfony 6.4, 7.0+ & 8.0+.
The project follows SemVer.
Only the last major version is maintained.

You can check the [changelog](CHANGELOG-5.x.md) for version 5 and the [upgrade document](UPGRADE-5.x.md) when upgrading
from 4.x bundle version.
Expand Down
24 changes: 12 additions & 12 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,21 +23,21 @@
"homepage": "https://www.snowcap.be"
}
],
"minimum-stability": "beta",
"minimum-stability": "stable",
"require": {
"php": "^8.2",
"doctrine/orm": "^2.10 || ^3.0",
"symfony/deprecation-contracts": "^3.5",
"symfony/event-dispatcher": "^6.4 || ^7.0",
"symfony/form": "^6.4 || ^7.0",
"symfony/framework-bundle": "^6.4 || ^7.0",
"symfony/http-foundation": "^6.4 || ^7.0",
"symfony/http-kernel": "^6.4 || ^7.0",
"symfony/mime": "^6.4 || ^7.0",
"symfony/routing": "^6.4 || ^7.0",
"symfony/translation": "^6.4 || ^7.0",
"symfony/twig-bundle": "^6.4 || ^7.0",
"symfony/validator": "^6.4 || ^7.0",
"symfony/event-dispatcher": "^6.4 || ^7.0 || ^8.0",
"symfony/form": "^6.4 || ^7.0 || ^8.0",
"symfony/framework-bundle": "^6.4 || ^7.0 || ^8.0",
"symfony/http-foundation": "^6.4 || ^7.0 || ^8.0",
"symfony/http-kernel": "^6.4 || ^7.0 || ^8.0",
"symfony/mime": "^6.4 || ^7.0 || ^8.0",
"symfony/routing": "^6.4 || ^7.0 || ^8.0",
"symfony/translation": "^6.4 || ^7.0 || ^8.0",
"symfony/twig-bundle": "^6.4 || ^7.0 || ^8.0",
"symfony/validator": "^6.4 || ^7.0 || ^8.0",
"twig/twig": "^3.0"
},
"require-dev": {
Expand All @@ -51,7 +51,7 @@
"phpstan/phpstan": "^2.1.22",
"phpstan/phpstan-deprecation-rules": "^2.0.3",
"phpunit/phpunit": "^11.5.35",
"symfony/browser-kit": "^6.4 || ^7.0",
"symfony/browser-kit": "^6.4 || ^7.0 || ^8.0",
"symplify/easy-coding-standard": "^12.5.24"
},
"config": {
Expand Down
2 changes: 1 addition & 1 deletion docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ If you find a bug or want to add a functionality,

This bundle requires PHP 8.2+.

As the bundle is compatible with Symfony 6.4/7.0+ and Symfony Flex, the only thing you have to do
As the bundle is compatible with Symfony 6.4/7.0+/8.0+ and Symfony Flex, the only thing you have to do
is requiring the package with composer:

```bash
Expand Down
Loading