File tree 4 files changed +8
-7
lines changed
4 files changed +8
-7
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 }}
41
42
runs-on : ubuntu-22.04
42
43
continue-on-error : true
43
44
steps :
44
- - uses : actions/checkout@v3
45
+ - uses : actions/checkout@v4
45
46
- run : cp "$(which composer)" composer.phar && ./composer.phar self-update --2.2 # downgrade Composer for HHVM
46
47
- name : Run hhvm composer.phar require react/promise:^2 # downgrade Promise for HHVM
47
48
uses : docker://hhvm/hhvm:3.30-lts-latest
Original file line number Diff line number Diff line change 32
32
"react/promise" : " ^3.0 || ^2.7.0 || ^1.2.1"
33
33
},
34
34
"require-dev" : {
35
- "phpunit/phpunit" : " ^9.5 || ^5.7 || ^4.8.35 "
35
+ "phpunit/phpunit" : " ^9.6 || ^5.7 || ^4.8.36 "
36
36
},
37
37
"autoload" : {
38
38
"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"
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