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
5 changes: 2 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,13 +13,12 @@ jobs:
strategy:
matrix:
php-version:
- "8.2"
- "8.3"
- "8.4"
- "8.5"
composer-flags: [""]
name: [""]
include:
- php-version: 8.1
- php-version: 8.3
composer-flags: "--prefer-lowest"
name: "(prefer lowest dependencies)"

Expand Down
6 changes: 5 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,14 @@
CHANGELOG
=========

### 1.6.0 (not released yet) ###
### 1.6.0 (2025-12-15) ###

* Reduced the package size
* Improved documentation and demo
* Add support for PHP 8.5
* Drop support for PHP < 8.3
* Add support for Symfony 8
* Drop support for Symfony < 6.4

### 1.5.0 (2025-04-25) ###

Expand Down
10 changes: 5 additions & 5 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,11 +19,11 @@
"org_heigl/hyphenator": "^2.6 || ^3.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.49.0",
"symfony/phpunit-bridge": "^6.4.3",
"symfony/framework-bundle": "^5.4 || ^6.4 || 7.0",
"symfony/twig-bundle": "^5.4 || ^6.4 || 7.0",
"symfony/yaml": "^5.4 || ^6.4 || 7.0"
"friendsofphp/php-cs-fixer": "^v3.92.0",
"symfony/phpunit-bridge": "^7.3 || ^8.0",
"symfony/framework-bundle": "^6.4 || ^7.3 || ^8.0",
"symfony/twig-bundle": "^6.4 || ^7.3 || ^8.0",
"symfony/yaml": "^6.4 || ^7.3 || ^8.0"
},
"conflict": {
"ext-apc": "3.1.11"
Expand Down
1 change: 0 additions & 1 deletion tests/JoliTypo/Tests/Bridge/app/AppKernel.php
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,6 @@ public function registerContainerConfiguration(LoaderInterface $loader): void
if (trait_exists(MailerAssertionsTrait::class)) {
$loader->load(function (ContainerBuilder $container) {
$container->loadFromExtension('twig', [
'exception_controller' => null,
]);
});
}
Expand Down
4 changes: 2 additions & 2 deletions tools/cli/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@
],
"require": {
"jolicode/jolitypo": "*@dev",
"symfony/console": "^7.2",
"symfony/finder": "^7.2"
"symfony/console": "^7.4.1",
"symfony/finder": "^7.4"
},
"config": {
"bump-after-update": true,
Expand Down
Loading