File tree 4 files changed +10
-9
lines changed
4 files changed +10
-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
24
25
- 5.4
25
26
- 5.3
26
27
steps :
27
- - uses : actions/checkout@v3
28
+ - uses : actions/checkout@v4
28
29
- uses : shivammathur/setup-php@v2
29
30
with :
30
31
php-version : ${{ matrix.php }}
@@ -42,10 +43,10 @@ jobs:
42
43
runs-on : macos-12
43
44
continue-on-error : true
44
45
steps :
45
- - uses : actions/checkout@v3
46
+ - uses : actions/checkout@v4
46
47
- uses : shivammathur/setup-php@v2
47
48
with :
48
- php-version : 8.1
49
+ php-version : 8.2
49
50
coverage : xdebug
50
51
ini-file : development
51
52
- run : composer install
57
58
runs-on : ubuntu-22.04
58
59
continue-on-error : true
59
60
steps :
60
- - uses : actions/checkout@v3
61
+ - uses : actions/checkout@v4
61
62
- run : cp "$(which composer)" composer.phar && ./composer.phar self-update --2.2 # downgrade Composer for HHVM
62
63
- name : Run hhvm composer.phar install
63
64
uses : docker://hhvm/hhvm:3.30-lts-latest
Original file line number Diff line number Diff line change 31
31
"evenement/evenement" : " ^3.0 || ^2.0 || ^1.0"
32
32
},
33
33
"require-dev" : {
34
- "phpunit/phpunit" : " ^9.5 || ^5.7 || ^4.8.35 " ,
34
+ "phpunit/phpunit" : " ^9.6 || ^5.7 || ^4.8.36 " ,
35
35
"clue/stream-filter" : " ~1.2"
36
36
},
37
37
"autoload" : {
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"
20
20
<php >
21
21
<ini name =" error_reporting" value =" -1" />
22
22
<!-- Evaluate assertions, requires running with "php -d zend.assertions=1 vendor/bin/phpunit" -->
23
- <!-- <ini name="zend.assertions=1 " value="1" /> -->
23
+ <!-- <ini name="zend.assertions" value="1" /> -->
24
24
<ini name =" assert.active" value =" 1" />
25
25
<ini name =" assert.exception" value =" 1" />
26
26
<ini name =" assert.bail" value =" 0" />
Original file line number Diff line number Diff line change 18
18
<php >
19
19
<ini name =" error_reporting" value =" -1" />
20
20
<!-- Evaluate assertions, requires running with "php -d zend.assertions=1 vendor/bin/phpunit" -->
21
- <!-- <ini name="zend.assertions=1 " value="1" /> -->
21
+ <!-- <ini name="zend.assertions" value="1" /> -->
22
22
<ini name =" assert.active" value =" 1" />
23
23
<ini name =" assert.exception" value =" 1" />
24
24
<ini name =" assert.bail" value =" 0" />
You can’t perform that action at this time.
0 commit comments