File tree Expand file tree Collapse file tree 4 files changed +64
-0
lines changed Expand file tree Collapse file tree 4 files changed +64
-0
lines changed Original file line number Diff line number Diff line change @@ -25,3 +25,7 @@ composer.lock
25
25
/public /assets /
26
26
/assets /vendor /
27
27
# ##< symfony/asset-mapper ###
28
+
29
+ # ##> phpunit/phpunit ###
30
+ /.phpunit.cache /
31
+ # ##< phpunit/phpunit ###
Original file line number Diff line number Diff line change 51
51
"twig/twig" : " ^3.0"
52
52
},
53
53
"require-dev" : {
54
+ "phpunit/phpunit" : " *" ,
54
55
"symfony/browser-kit" : " *" ,
55
56
"symfony/css-selector" : " *" ,
56
57
"symfony/debug-bundle" : " *" ,
Original file line number Diff line number Diff line change
1
+ <?xml version =" 1.0" encoding =" UTF-8" ?>
2
+
3
+ <!-- https://phpunit.readthedocs.io/en/latest/configuration.html -->
4
+ <phpunit xmlns : xsi =" http://www.w3.org/2001/XMLSchema-instance"
5
+ xsi : noNamespaceSchemaLocation =" vendor/phpunit/phpunit/phpunit.xsd"
6
+ colors =" true"
7
+ failOnDeprecation =" true"
8
+ failOnNotice =" true"
9
+ failOnWarning =" true"
10
+ bootstrap =" tests/bootstrap.php"
11
+ cacheDirectory =" .phpunit.cache"
12
+ >
13
+ <php >
14
+ <ini name =" display_errors" value =" 1" />
15
+ <ini name =" error_reporting" value =" -1" />
16
+ <server name =" APP_ENV" value =" test" force =" true" />
17
+ <server name =" SHELL_VERBOSITY" value =" -1" />
18
+ </php >
19
+
20
+ <testsuites >
21
+ <testsuite name =" Project Test Suite" >
22
+ <directory >tests</directory >
23
+ </testsuite >
24
+ </testsuites >
25
+
26
+ <source ignoreSuppressionOfDeprecations =" true"
27
+ ignoreIndirectDeprecations =" true"
28
+ restrictNotices =" true"
29
+ restrictWarnings =" true"
30
+ >
31
+ <include >
32
+ <directory >src</directory >
33
+ </include >
34
+
35
+ <deprecationTrigger >
36
+ <method >Doctrine\Deprecations\Deprecation::trigger</method >
37
+ <method >Doctrine\Deprecations\Deprecation::delegateTriggerToBackend</method >
38
+ <function >trigger_deprecation</function >
39
+ </deprecationTrigger >
40
+ </source >
41
+
42
+ <extensions >
43
+ </extensions >
44
+ </phpunit >
Original file line number Diff line number Diff line change 104
104
"phpdocumentor/type-resolver": {
105
105
"version": "1.5.1"
106
106
},
107
+ "phpunit/phpunit": {
108
+ "version": "12.2",
109
+ "recipe": {
110
+ "repo": "github.com/symfony/recipes",
111
+ "branch": "main",
112
+ "version": "11.1",
113
+ "ref": "c6658a60fc9d594805370eacdf542c3d6b5c0869"
114
+ },
115
+ "files": [
116
+ ".env.test",
117
+ "phpunit.dist.xml",
118
+ "tests/bootstrap.php",
119
+ "bin/phpunit"
120
+ ]
121
+ },
107
122
"psr/cache": {
108
123
"version": "3.0.0"
109
124
},
You can’t perform that action at this time.
0 commit comments