File tree 3 files changed +17
-21
lines changed
3 files changed +17
-21
lines changed Original file line number Diff line number Diff line change 22
22
"symfony/validator" : " ^7"
23
23
},
24
24
"require-dev" : {
25
- "phpunit/phpunit" : " ^9.6.5 || ^10.0.0 " ,
25
+ "phpunit/phpunit" : " ^11 " ,
26
26
"mouf/picotainer" : " ^1.1" ,
27
- "phpstan/phpstan" : " ^1.8 " ,
27
+ "phpstan/phpstan" : " ^2 " ,
28
28
"php-coveralls/php-coveralls" : " ^2.1.0" ,
29
29
"symfony/translation" : " ^7" ,
30
- "doctrine/coding-standard" : " ^11.1|^12.0 "
30
+ "doctrine/coding-standard" : " ^12 "
31
31
},
32
32
"scripts" : {
33
33
"phpstan" : " phpstan analyse --no-progress" ,
Original file line number Diff line number Diff line change @@ -8,8 +8,6 @@ parameters:
8
8
9
9
excludePaths :
10
10
- vendor
11
- - cache
12
- - .phpstan-cache
13
11
14
12
# includes:
15
13
# - vendor/thecodingmachine/phpstan-strict-rules/phpstan-strict-rules.neon
Original file line number Diff line number Diff line change 1
1
<?xml version =" 1.0" encoding =" UTF-8" ?>
2
2
3
- <phpunit backupGlobals = " false "
4
- backupStaticAttributes = " false "
3
+ <phpunit xmlns : xsi = " http://www.w3.org/2001/XMLSchema-instance "
4
+ xsi : noNamespaceSchemaLocation = " https://schema.phpunit.de/11.5/phpunit.xsd "
5
5
colors =" true"
6
- convertErrorsToExceptions =" true"
7
- convertNoticesToExceptions =" true"
8
- convertWarningsToExceptions =" true"
9
- processIsolation =" false"
10
- stopOnFailure =" false"
11
6
bootstrap =" vendor/autoload.php"
12
7
>
13
8
<testsuites >
16
11
</testsuite >
17
12
</testsuites >
18
13
19
- <filter >
20
- <whitelist >
21
- <directory >./src</directory >
22
- </whitelist >
23
- </filter >
24
- <logging >
25
- <log type =" coverage-html" target =" build/coverage" />
26
- <log type =" coverage-clover" target =" build/logs/clover.xml" />
27
- </logging >
14
+ <source >
15
+ <include >
16
+ <directory >src</directory >
17
+ </include >
18
+ </source >
19
+
20
+ <coverage >
21
+ <report >
22
+ <clover outputFile =" build/logs/clover.xml" />
23
+ <html outputDirectory =" build/coverage" />
24
+ </report >
25
+ </coverage >
28
26
</phpunit >
You can’t perform that action at this time.
0 commit comments