Commit dc2aaf2 1 parent 851072d commit dc2aaf2 Copy full SHA for dc2aaf2
File tree 7 files changed +22
-14
lines changed
7 files changed +22
-14
lines changed Original file line number Diff line number Diff line change @@ -28,3 +28,7 @@ yarn-error.log
28
28
/phpunit.xml
29
29
.phpunit.result.cache
30
30
# ##< phpunit/phpunit ###
31
+
32
+ # ##> phpstan/phpstan ###
33
+ phpstan.neon
34
+ # ##< phpstan/phpstan ###
Original file line number Diff line number Diff line change @@ -6,9 +6,13 @@ if (!ini_get('date.timezone')) {
6
6
}
7
7
8
8
if (is_file (dirname (__DIR__ ).'/vendor/phpunit/phpunit/phpunit ' )) {
9
- define ('PHPUNIT_COMPOSER_INSTALL ' , dirname (__DIR__ ).'/vendor/autoload.php ' );
10
- require PHPUNIT_COMPOSER_INSTALL ;
11
- PHPUnit \TextUI \Command::main ();
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
+ }
12
16
} else {
13
17
if (!is_file (dirname (__DIR__ ).'/vendor/symfony/phpunit-bridge/bin/simple-phpunit.php ' )) {
14
18
echo "Unable to find the `simple-phpunit.php` script in `vendor/symfony/phpunit-bridge/bin/`. \n" ;
Original file line number Diff line number Diff line change @@ -16,8 +16,8 @@ doctrine:
16
16
auto_mapping : true
17
17
mappings :
18
18
App :
19
- is_bundle : false
20
19
type : attribute
20
+ is_bundle : false
21
21
dir : ' %kernel.project_dir%/src/Entity'
22
22
prefix : ' App\Entity'
23
23
alias : App
File renamed without changes.
Original file line number Diff line number Diff line change 14
14
<server name =" APP_ENV" value =" test" force =" true" />
15
15
<server name =" SHELL_VERBOSITY" value =" -1" />
16
16
<server name =" SYMFONY_PHPUNIT_REMOVE" value =" " />
17
- <server name =" SYMFONY_PHPUNIT_VERSION" value =" 9.5 " />
17
+ <server name =" SYMFONY_PHPUNIT_VERSION" value =" 9.6 " />
18
18
</php >
19
19
20
20
<testsuites >
Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ DirectoryIndex index.php
9
9
# feature in your server configuration. Uncomment the following line if you
10
10
# install assets as symlinks or if you experience problems related to symlinks
11
11
# when compiling LESS/Sass/CoffeScript assets.
12
- # Options +FollowSymlinks
12
+ # Options +SymLinksIfOwnerMatch
13
13
14
14
# Disabling MultiViews prevents unwanted negotiation, e.g. "/index" should not resolve
15
15
# to the front controller "/index.php" but be rewritten to "/index.php/index".
@@ -20,7 +20,7 @@ DirectoryIndex index.php
20
20
<IfModule mod_rewrite.c>
21
21
# This Option needs to be enabled for RewriteRule, otherwise it will show an error like
22
22
# 'Options FollowSymLinks or SymLinksIfOwnerMatch is off which implies that RewriteRule directive is forbidden'
23
- Options +FollowSymlinks
23
+ Options +SymLinksIfOwnerMatch
24
24
25
25
RewriteEngine On
26
26
Original file line number Diff line number Diff line change 40
40
"version": "v0.5.3"
41
41
},
42
42
"doctrine/doctrine-bundle": {
43
- "version": "2.10 ",
43
+ "version": "2.11 ",
44
44
"recipe": {
45
45
"repo": "github.com/symfony/recipes",
46
46
"branch": "main",
47
47
"version": "2.10",
48
- "ref": "e025a6cb69b195970543820b2f18ad21724473fa "
48
+ "ref": "0b4a11ee7e60b36227502ed26874edd7e8b66353 "
49
49
},
50
50
"files": [
51
51
"config/packages/doctrine.yaml",
210
210
"repo": "github.com/symfony/recipes-contrib",
211
211
"branch": "main",
212
212
"version": "1.0",
213
- "ref": "d74d4d719d5f53856c9c13544aa22d44144b1819 "
213
+ "ref": "5e490cc197fb6bb1ae22e5abbc531ddc633b6767 "
214
214
},
215
215
"files": [
216
- "phpstan.neon"
216
+ "phpstan.dist. neon"
217
217
]
218
218
},
219
219
"phpstan/phpstan-strict-rules": {
275
275
"repo": "github.com/symfony/recipes-contrib",
276
276
"branch": "main",
277
277
"version": "1.0",
278
- "ref": "efb318193e48384eb5c5aadff15396ed698f8ffc "
278
+ "ref": "0f18b4decdf5695d692c1d0dfd65516a07a6adf1 "
279
279
},
280
280
"files": [
281
281
"public/.htaccess"
472
472
"version": "v6.0.2"
473
473
},
474
474
"symfony/phpunit-bridge": {
475
- "version": "6.3 ",
475
+ "version": "7.0 ",
476
476
"recipe": {
477
477
"repo": "github.com/symfony/recipes",
478
478
"branch": "main",
479
479
"version": "6.3",
480
- "ref": "01dfaa98c58f7a7b5a9b30e6edb7074af7ed9819 "
480
+ "ref": "1f5830c331065b6e4c9d5fa2105e322d29fcd573 "
481
481
},
482
482
"files": [
483
483
".env.test",
You can’t perform that action at this time.
0 commit comments