File tree 4 files changed +11
-9
lines changed 4 files changed +11
-9
lines changed Original file line number Diff line number Diff line change 11
11
strategy :
12
12
matrix :
13
13
php :
14
+ - 8.3
14
15
- 8.2
15
16
- 8.1
16
17
- 8.0
19
20
- 7.2
20
21
- 7.1
21
22
steps :
22
- - uses : actions/checkout@v3
23
+ - uses : actions/checkout@v4
23
24
- uses : shivammathur/setup-php@v2
24
25
with :
25
26
php-version : ${{ matrix.php }}
@@ -37,14 +38,15 @@ jobs:
37
38
strategy :
38
39
matrix :
39
40
php :
41
+ - 8.3
40
42
- 8.2
41
43
- 8.1
42
44
- 8.0
43
45
- 7.4
44
46
- 7.3
45
47
- 7.2
46
48
steps :
47
- - uses : actions/checkout@v3
49
+ - uses : actions/checkout@v4
48
50
- uses : shivammathur/setup-php@v2
49
51
with :
50
52
php-version : ${{ matrix.php }}
Original file line number Diff line number Diff line change 28
28
"php" : " >=7.1.0"
29
29
},
30
30
"require-dev" : {
31
- "phpstan/phpstan" : " 1.10.34 || 1.4.10" ,
32
- "phpunit/phpunit" : " ^9.5 || ^7.5"
31
+ "phpstan/phpstan" : " 1.10.39 || 1.4.10" ,
32
+ "phpunit/phpunit" : " ^9.6 || ^7.5"
33
33
},
34
34
"autoload" : {
35
35
"psr-4" : {
Original file line number Diff line number Diff line change 1
1
<?xml version =" 1.0" encoding =" UTF-8" ?>
2
2
3
- <!-- PHPUnit configuration file with new format for PHPUnit 9.5 + -->
3
+ <!-- PHPUnit configuration file with new format for PHPUnit 9.6 + -->
4
4
<phpunit xmlns : xsi =" http://www.w3.org/2001/XMLSchema-instance"
5
- xsi : noNamespaceSchemaLocation =" https://schema.phpunit.de/9.5 /phpunit.xsd"
5
+ xsi : noNamespaceSchemaLocation =" https://schema.phpunit.de/9.6 /phpunit.xsd"
6
6
bootstrap =" vendor/autoload.php"
7
7
cacheResult =" false"
8
8
colors =" true"
24
24
<php >
25
25
<ini name =" error_reporting" value =" -1" />
26
26
<!-- Evaluate assertions, requires running with "php -d zend.assertions=1 vendor/bin/phpunit" -->
27
- <!-- <ini name="zend.assertions=1 " value="1" /> -->
27
+ <!-- <ini name="zend.assertions" value="1" /> -->
28
28
<ini name =" assert.active" value =" 1" />
29
29
<ini name =" assert.exception" value =" 1" />
30
30
<ini name =" assert.bail" value =" 0" />
Original file line number Diff line number Diff line change 1
1
<?xml version =" 1.0" encoding =" UTF-8" ?>
2
2
3
- <!-- PHPUnit configuration file with old format before PHPUnit 9 -->
3
+ <!-- PHPUnit configuration file with old format for legacy PHPUnit -->
4
4
<phpunit xmlns : xsi =" http://www.w3.org/2001/XMLSchema-instance"
5
5
xsi : noNamespaceSchemaLocation =" https://schema.phpunit.de/7.5/phpunit.xsd"
6
6
bootstrap =" vendor/autoload.php"
22
22
<php >
23
23
<ini name =" error_reporting" value =" -1" />
24
24
<!-- Evaluate assertions, requires running with "php -d zend.assertions=1 vendor/bin/phpunit" -->
25
- <!-- <ini name="zend.assertions=1 " value="1" /> -->
25
+ <!-- <ini name="zend.assertions" value="1" /> -->
26
26
<ini name =" assert.active" value =" 1" />
27
27
<ini name =" assert.exception" value =" 1" />
28
28
<ini name =" assert.bail" value =" 0" />
You can’t perform that action at this time.
0 commit comments