File tree 3 files changed +28
-1
lines changed
3 files changed +28
-1
lines changed Original file line number Diff line number Diff line change 22
22
symfony : [ "^5.4", "^6.4" ]
23
23
sylius : [ "^1.12", "^1.13" ]
24
24
node : [ "18.x", "20.x" ]
25
- mysql : [ "8.0" ]
26
25
27
26
exclude :
28
27
- sylius : ^1.13
Original file line number Diff line number Diff line change 9
9
10
10
/behat.yml
11
11
/phpspec.yml
12
+ /phpunit.xml
Original file line number Diff line number Diff line change
1
+ <?xml version =" 1.0" encoding =" UTF-8" ?>
2
+ <phpunit xmlns : xsi =" http://www.w3.org/2001/XMLSchema-instance"
3
+ xsi : noNamespaceSchemaLocation =" https://schema.phpunit.de/9.6/phpunit.xsd"
4
+ bootstrap =" vendor/autoload.php"
5
+ cacheResultFile =" .phpunit.cache/test-results"
6
+ executionOrder =" depends,defects"
7
+ forceCoversAnnotation =" true"
8
+ beStrictAboutCoversAnnotation =" true"
9
+ beStrictAboutOutputDuringTests =" true"
10
+ beStrictAboutTodoAnnotatedTests =" true"
11
+ convertDeprecationsToExceptions =" true"
12
+ failOnRisky =" true"
13
+ failOnWarning =" true"
14
+ verbose =" true" >
15
+ <testsuites >
16
+ <testsuite name =" default" >
17
+ <directory >tests</directory >
18
+ </testsuite >
19
+ </testsuites >
20
+
21
+ <coverage cacheDirectory =" .phpunit.cache/code-coverage"
22
+ processUncoveredFiles =" true" >
23
+ <include >
24
+ <directory suffix =" .php" >src</directory >
25
+ </include >
26
+ </coverage >
27
+ </phpunit >
You can’t perform that action at this time.
0 commit comments