Skip to content

Commit 654bc84

Browse files
authored
Merge pull request #2980 from tarlepp/chore(deps)/dependency-update
Chore(deps) - Dependency update
2 parents 57899e0 + 7dc5a88 commit 654bc84

35 files changed

+3035
-4788
lines changed

.gitignore

+3-2
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,7 @@ compose.*.yaml
1414
## File-based project format:
1515
*.iws
1616

17-
.phplint-cache
1817
.phpunit.result.cache
19-
phpunit.xml
2018
infection.json
2119
phpstan.neon
2220

@@ -35,7 +33,10 @@ phpstan.neon
3533
/tools/*/vendor/
3634

3735
### PHPUnit cache
36+
phpunit.xml
3837
.phpunit.cache
3938

4039
### PHPLint
40+
.phplint-cache
4141
.phplint.cache
42+

.idea/php.xml

+137-110
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/symfony-flex-backend.iml

+35-8
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

bin/phpunit

+23
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
#!/usr/bin/env php
2+
<?php
3+
4+
if (!ini_get('date.timezone')) {
5+
ini_set('date.timezone', 'UTC');
6+
}
7+
8+
if (is_file(dirname(__DIR__).'/vendor/phpunit/phpunit/phpunit')) {
9+
if (PHP_VERSION_ID >= 80000) {
10+
require dirname(__DIR__).'/vendor/phpunit/phpunit/phpunit';
11+
} else {
12+
define('PHPUNIT_COMPOSER_INSTALL', dirname(__DIR__).'/vendor/autoload.php');
13+
require PHPUNIT_COMPOSER_INSTALL;
14+
PHPUnit\TextUI\Command::main();
15+
}
16+
} else {
17+
if (!is_file(dirname(__DIR__).'/vendor/symfony/phpunit-bridge/bin/simple-phpunit.php')) {
18+
echo "Unable to find the `simple-phpunit.php` script in `vendor/symfony/phpunit-bridge/bin/`.\n";
19+
exit(1);
20+
}
21+
22+
require dirname(__DIR__).'/vendor/symfony/phpunit-bridge/bin/simple-phpunit.php';
23+
}

composer.json

+8-13
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737
"matthiasnoback/symfony-console-form": "6.0.0",
3838
"nelmio/api-doc-bundle": "4.38.2",
3939
"nelmio/cors-bundle": "2.5.0",
40-
"phpdocumentor/reflection-docblock": "5.6.1",
40+
"phpdocumentor/reflection-docblock": "5.6.2",
4141
"ramsey/uuid-doctrine": "2.1.0",
4242
"symfony/asset": "7.2.0",
4343
"symfony/config": "7.2.3",
@@ -72,10 +72,15 @@
7272
"require-dev": {
7373
"bamarni/composer-bin-plugin": "1.8.2",
7474
"doctrine/doctrine-fixtures-bundle": "4.1.0",
75+
"liuggio/fastest": "1.13.0",
76+
"phpunit/php-code-coverage": "12.1.2",
77+
"phpunit/phpcov": "11.0.0",
78+
"phpunit/phpunit": "12.1.4",
7579
"roave/security-advisories": "dev-latest",
7680
"symfony/browser-kit": "7.2.4",
7781
"symfony/debug-bundle": "7.2.0",
78-
"symfony/maker-bundle": "1.62.1",
82+
"symfony/maker-bundle": "1.63.0",
83+
"symfony/phpunit-bridge": "7.2.0",
7984
"symfony/requirements-checker": "2.0.3",
8085
"symfony/stopwatch": "7.2.4",
8186
"symfony/var-dumper": "7.2.3",
@@ -91,7 +96,7 @@
9196
"config": {
9297
"allow-plugins": true,
9398
"platform": {
94-
"php": "8.4.5"
99+
"php": "8.4.6"
95100
},
96101
"sort-packages": true
97102
},
@@ -118,12 +123,6 @@
118123
"autoload-dev": {
119124
"psr-4": {
120125
"App\\Tests\\": "tests/",
121-
"PHPUnit\\": "tools/01_phpunit/vendor/phpunit/phpunit/src",
122-
"Symfony\\Bridge\\PhpUnit\\": "tools/01_phpunit/vendor/symfony/phpunit-bridge",
123-
"Liuggio\\Fastest\\": [
124-
"tools/01_phpunit/vendor/liuggio/fastest/src",
125-
"tools/01_phpunit/vendor/liuggio/fastest/adapters"
126-
],
127126
"PhpCsFixer\\": "tools/04_symplify/vendor/symplify/easy-coding-standard/vendor/friendsofphp/php-cs-fixer/src",
128127
"Symplify\\CodingStandard\\": "tools/04_symplify/vendor/symplify/easy-coding-standard/vendor/symplify/coding-standard/src",
129128
"Symplify\\EasyCodingStandard\\": "tools/04_symplify/vendor/symplify/easy-coding-standard/src",
@@ -133,10 +132,6 @@
133132
"PHPStan\\Symfony\\": "tools/02_phpstan/vendor/phpstan/phpstan-symfony/src/Symfony",
134133
"PHPStan\\Type\\PHPUnit\\": "tools/02_phpstan/vendor/phpstan/phpstan-phpunit/src/Type/PHPUnit",
135134
"PHPStan\\Type\\Symfony\\": "tools/02_phpstan/vendor/phpstan/phpstan-symfony/src/Type/Symfony",
136-
"PHPUnit\\Framework\\MockObject\\": [
137-
"tools/01_phpunit/vendor/phpunit/phpunit/src/Framework/MockObject",
138-
"tools/01_phpunit/vendor/phpunit/phpunit/src/Framework/MockObject/Runtime"
139-
],
140135
"Rector\\": "tools/09_rector/vendor/rector"
141136
}
142137
},

0 commit comments

Comments
 (0)