Skip to content

Chore(deps) - Dependency update #2980

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 11 commits into from
May 2, 2025
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: 3 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,7 @@ compose.*.yaml
## File-based project format:
*.iws

.phplint-cache
.phpunit.result.cache
phpunit.xml
infection.json
phpstan.neon

Expand All @@ -35,7 +33,10 @@ phpstan.neon
/tools/*/vendor/

### PHPUnit cache
phpunit.xml
.phpunit.cache

### PHPLint
.phplint-cache
.phplint.cache

247 changes: 137 additions & 110 deletions .idea/php.xml

Large diffs are not rendered by default.

43 changes: 35 additions & 8 deletions .idea/symfony-flex-backend.iml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

23 changes: 23 additions & 0 deletions bin/phpunit
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
#!/usr/bin/env php
<?php

if (!ini_get('date.timezone')) {
ini_set('date.timezone', 'UTC');
}

if (is_file(dirname(__DIR__).'/vendor/phpunit/phpunit/phpunit')) {
if (PHP_VERSION_ID >= 80000) {
require dirname(__DIR__).'/vendor/phpunit/phpunit/phpunit';
} else {
define('PHPUNIT_COMPOSER_INSTALL', dirname(__DIR__).'/vendor/autoload.php');
require PHPUNIT_COMPOSER_INSTALL;
PHPUnit\TextUI\Command::main();
}
} else {
if (!is_file(dirname(__DIR__).'/vendor/symfony/phpunit-bridge/bin/simple-phpunit.php')) {
echo "Unable to find the `simple-phpunit.php` script in `vendor/symfony/phpunit-bridge/bin/`.\n";
exit(1);
}

require dirname(__DIR__).'/vendor/symfony/phpunit-bridge/bin/simple-phpunit.php';
}
21 changes: 8 additions & 13 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
"matthiasnoback/symfony-console-form": "6.0.0",
"nelmio/api-doc-bundle": "4.38.2",
"nelmio/cors-bundle": "2.5.0",
"phpdocumentor/reflection-docblock": "5.6.1",
"phpdocumentor/reflection-docblock": "5.6.2",
"ramsey/uuid-doctrine": "2.1.0",
"symfony/asset": "7.2.0",
"symfony/config": "7.2.3",
Expand Down Expand Up @@ -72,10 +72,15 @@
"require-dev": {
"bamarni/composer-bin-plugin": "1.8.2",
"doctrine/doctrine-fixtures-bundle": "4.1.0",
"liuggio/fastest": "1.13.0",
"phpunit/php-code-coverage": "12.1.2",
"phpunit/phpcov": "11.0.0",
"phpunit/phpunit": "12.1.4",
"roave/security-advisories": "dev-latest",
"symfony/browser-kit": "7.2.4",
"symfony/debug-bundle": "7.2.0",
"symfony/maker-bundle": "1.62.1",
"symfony/maker-bundle": "1.63.0",
"symfony/phpunit-bridge": "7.2.0",
"symfony/requirements-checker": "2.0.3",
"symfony/stopwatch": "7.2.4",
"symfony/var-dumper": "7.2.3",
Expand All @@ -91,7 +96,7 @@
"config": {
"allow-plugins": true,
"platform": {
"php": "8.4.5"
"php": "8.4.6"
},
"sort-packages": true
},
Expand All @@ -118,12 +123,6 @@
"autoload-dev": {
"psr-4": {
"App\\Tests\\": "tests/",
"PHPUnit\\": "tools/01_phpunit/vendor/phpunit/phpunit/src",
"Symfony\\Bridge\\PhpUnit\\": "tools/01_phpunit/vendor/symfony/phpunit-bridge",
"Liuggio\\Fastest\\": [
"tools/01_phpunit/vendor/liuggio/fastest/src",
"tools/01_phpunit/vendor/liuggio/fastest/adapters"
],
"PhpCsFixer\\": "tools/04_symplify/vendor/symplify/easy-coding-standard/vendor/friendsofphp/php-cs-fixer/src",
"Symplify\\CodingStandard\\": "tools/04_symplify/vendor/symplify/easy-coding-standard/vendor/symplify/coding-standard/src",
"Symplify\\EasyCodingStandard\\": "tools/04_symplify/vendor/symplify/easy-coding-standard/src",
Expand All @@ -133,10 +132,6 @@
"PHPStan\\Symfony\\": "tools/02_phpstan/vendor/phpstan/phpstan-symfony/src/Symfony",
"PHPStan\\Type\\PHPUnit\\": "tools/02_phpstan/vendor/phpstan/phpstan-phpunit/src/Type/PHPUnit",
"PHPStan\\Type\\Symfony\\": "tools/02_phpstan/vendor/phpstan/phpstan-symfony/src/Type/Symfony",
"PHPUnit\\Framework\\MockObject\\": [
"tools/01_phpunit/vendor/phpunit/phpunit/src/Framework/MockObject",
"tools/01_phpunit/vendor/phpunit/phpunit/src/Framework/MockObject/Runtime"
],
"Rector\\": "tools/09_rector/vendor/rector"
}
},
Expand Down
Loading
Loading