File tree Expand file tree Collapse file tree 3 files changed +10
-10
lines changed Expand file tree Collapse file tree 3 files changed +10
-10
lines changed Original file line number Diff line number Diff line change @@ -14,11 +14,11 @@ jobs:
14
14
strategy :
15
15
matrix :
16
16
php :
17
- - 7.2
18
- - 7.3
19
17
- 7.4
20
18
- 8.0
21
19
- 8.1
20
+ - 8.2
21
+ - 8.3
22
22
fail-fast : false
23
23
24
24
steps :
41
41
run : composer install --prefer-dist --no-progress --no-suggest
42
42
43
43
- name : Tests
44
- run : composer test
44
+ run : composer test
Original file line number Diff line number Diff line change 23
23
"gettext/gettext" : " ^5.5.0"
24
24
},
25
25
"require-dev" : {
26
- "phpunit/phpunit" : " ^11 " ,
26
+ "phpunit/phpunit" : " ^9 " ,
27
27
"squizlabs/php_codesniffer" : " ^3.0" ,
28
28
"oscarotero/php-cs-fixer-config" : " ^2" ,
29
29
"friendsofphp/php-cs-fixer" : " ^3"
Original file line number Diff line number Diff line change 1
1
<?xml version =" 1.0" ?>
2
- <phpunit xmlns : xsi =" http://www.w3.org/2001/XMLSchema-instance" bootstrap =" ./vendor/autoload.php" xsi : noNamespaceSchemaLocation =" https://schema.phpunit.de/11.0/phpunit.xsd" cacheDirectory =" .phpunit.cache" >
2
+ <phpunit xmlns : xsi =" http://www.w3.org/2001/XMLSchema-instance" bootstrap =" ./vendor/autoload.php" xsi : noNamespaceSchemaLocation =" https://schema.phpunit.de/9.3/phpunit.xsd" >
3
+ <coverage processUncoveredFiles =" true" >
4
+ <include >
5
+ <directory suffix =" .php" >src</directory >
6
+ </include >
7
+ </coverage >
3
8
<testsuites >
4
9
<testsuite name =" All tests" >
5
10
<directory >./tests/</directory >
6
11
</testsuite >
7
12
</testsuites >
8
- <source >
9
- <include >
10
- <directory suffix =" .php" >src</directory >
11
- </include >
12
- </source >
13
13
</phpunit >
You can’t perform that action at this time.
0 commit comments