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: 2 additions & 0 deletions .php-cs-fixer.dist.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,8 @@
$finder->in(__DIR__);
// … that are not ignored by VCS
$finder->ignoreVCSIgnored(true);
// Exclude autogenerated files.
$finder->notPath('config/reference.php');

$config = new PhpCsFixer\Config();
$config->setFinder($finder);
Expand Down
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,13 @@ See [keep a changelog] for information about writing changes to this log.

## [Unreleased]

## [1.2.2] - 2026-05-22

- [PR-26](https://github.com/itk-dev/event-database-api/pull/26)
Symfony 7.4 and dependencies, CVE's on both Symfony and Twig

## [1.2.1] - 2026-03-06

- Update composer dependencies

## [1.2.0] - 2025-09-02
Expand Down
38 changes: 19 additions & 19 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,33 +12,33 @@
"nelmio/cors-bundle": "^2.4",
"phpdocumentor/reflection-docblock": "^5.6",
"phpstan/phpdoc-parser": "^2.2",
"symfony/asset": "~7.3.0",
"symfony/console": "~7.3.0",
"symfony/dotenv": "~7.3.0",
"symfony/expression-language": "~7.3.0",
"symfony/asset": "~7.4.0",
"symfony/console": "~7.4.0",
"symfony/dotenv": "~7.4.0",
"symfony/expression-language": "~7.4.0",
"symfony/flex": "^2",
"symfony/framework-bundle": "~7.3.0",
"symfony/http-client": "~7.3.0",
"symfony/property-access": "~7.3.0",
"symfony/property-info": "~7.3.0",
"symfony/runtime": "~7.3.0",
"symfony/security-bundle": "~7.3.0",
"symfony/serializer": "~7.3.0",
"symfony/twig-bundle": "~7.3.0",
"symfony/validator": "~7.3.0",
"symfony/yaml": "~7.3.0"
"symfony/framework-bundle": "~7.4.0",
"symfony/http-client": "~7.4.0",
"symfony/property-access": "~7.4.0",
"symfony/property-info": "~7.4.0",
"symfony/runtime": "~7.4.0",
"symfony/security-bundle": "~7.4.0",
"symfony/serializer": "~7.4.0",
"symfony/twig-bundle": "~7.4.0",
"symfony/validator": "~7.4.0",
"symfony/yaml": "~7.4.0"
},
"require-dev": {
"ergebnis/composer-normalize": "^2.47",
"friendsofphp/php-cs-fixer": "^3.86",
"phpstan/extension-installer": "^1.4",
"phpstan/phpstan-symfony": "^2.0",
"phpunit/phpunit": "^12.3",
"symfony/browser-kit": "~7.3.0",
"symfony/css-selector": "~7.3.0",
"symfony/browser-kit": "~7.4.0",
"symfony/css-selector": "~7.4.0",
"symfony/maker-bundle": "^1.52",
"symfony/stopwatch": "~7.3.0",
"symfony/web-profiler-bundle": "~7.3.0",
"symfony/stopwatch": "~7.4.0",
"symfony/web-profiler-bundle": "~7.4.0",
"vincentlanglet/twig-cs-fixer": "^3.7"
},
"replace": {
Expand Down Expand Up @@ -78,7 +78,7 @@
"extra": {
"symfony": {
"allow-contrib": true,
"require": "7.3.*"
"require": "7.4.*"
}
},
"scripts": {
Expand Down
Loading
Loading