File tree 4 files changed +14
-13
lines changed
4 files changed +14
-13
lines changed Original file line number Diff line number Diff line change 38
38
run : composer update --${{ matrix.stability }} --prefer-dist --no-interaction --no-progress
39
39
40
40
- name : Execute tests
41
- run : vendor/bin/phpunit --verbose
41
+ run : vendor/bin/phpunit
Original file line number Diff line number Diff line change 2
2
/vendor /
3
3
composer.lock
4
4
.phpunit.result.cache
5
+ phpunit.xml.bak
6
+ .phpunit.cache
Original file line number Diff line number Diff line change 18
18
"laravel/framework" : " ^6.20.26|^7.30.6|^8.0|^9.0|^10.0"
19
19
},
20
20
"require-dev" : {
21
- "orchestra/testbench" : " ^v4.0|^v5.0|^v6.0|^8.0"
21
+ "orchestra/testbench" : " ^v4.0|^v5.0|^v6.0|^v7.0|^ 8.0"
22
22
},
23
23
"autoload" : {
24
24
"psr-4" : {
Original file line number Diff line number Diff line change 1
1
<?xml version =" 1.0" encoding =" UTF-8" ?>
2
- <phpunit backupGlobals = " false "
3
- backupStaticAttributes =" false"
2
+ <phpunit xmlns : xsi = " http://www.w3.org/2001/XMLSchema-instance "
3
+ backupGlobals =" false"
4
4
bootstrap =" vendor/autoload.php"
5
5
colors =" true"
6
- convertErrorsToExceptions =" true"
7
- convertNoticesToExceptions =" true"
8
- convertWarningsToExceptions =" true"
9
6
processIsolation =" false"
10
7
stopOnError =" false"
11
8
stopOnFailure =" false"
12
- verbose =" true"
9
+ xsi : noNamespaceSchemaLocation =" https://schema.phpunit.de/10.0/phpunit.xsd"
10
+ cacheDirectory =" .phpunit.cache"
11
+ backupStaticProperties =" false"
13
12
>
14
- <testsuites >
15
- <testsuite name =" Package Test Suite" >
16
- <directory suffix =" Test.php" >./tests/</directory >
17
- </testsuite >
18
- </testsuites >
13
+ <testsuites >
14
+ <testsuite name =" Package Test Suite" >
15
+ <directory suffix =" Test.php" >./tests/</directory >
16
+ </testsuite >
17
+ </testsuites >
19
18
</phpunit >
You can’t perform that action at this time.
0 commit comments