File tree 4 files changed +13
-12
lines changed
4 files changed +13
-12
lines changed Original file line number Diff line number Diff line change 14
14
- ubuntu-22.04
15
15
- windows-2022
16
16
php :
17
+ - 8.3
17
18
- 8.2
18
19
- 8.1
19
20
- 8.0
27
28
- 5.4
28
29
- 5.3
29
30
steps :
30
- - uses : actions/checkout@v3
31
+ - uses : actions/checkout@v4
31
32
- uses : shivammathur/setup-php@v2
32
33
with :
33
34
php-version : ${{ matrix.php }}
@@ -46,10 +47,10 @@ jobs:
46
47
runs-on : macos-12
47
48
continue-on-error : true
48
49
steps :
49
- - uses : actions/checkout@v3
50
+ - uses : actions/checkout@v4
50
51
- uses : shivammathur/setup-php@v2
51
52
with :
52
- php-version : 8.1
53
+ php-version : 8.2
53
54
coverage : xdebug
54
55
- run : composer install
55
56
- run : vendor/bin/phpunit --coverage-text
59
60
runs-on : ubuntu-22.04
60
61
continue-on-error : true
61
62
steps :
62
- - uses : actions/checkout@v3
63
+ - uses : actions/checkout@v4
63
64
- run : cp "$(which composer)" composer.phar && ./composer.phar self-update --2.2 # downgrade Composer for HHVM
64
65
- name : Run hhvm composer.phar install
65
66
uses : docker://hhvm/hhvm:3.30-lts-latest
Original file line number Diff line number Diff line change 34
34
"react/stream" : " ^1.2"
35
35
},
36
36
"require-dev" : {
37
- "phpunit/phpunit" : " ^9.5 || ^5.7 || ^4.8.35 " ,
37
+ "phpunit/phpunit" : " ^9.6 || ^5.7 || ^4.8.36 " ,
38
38
"react/async" : " ^4 || ^3 || ^2" ,
39
39
"react/promise-stream" : " ^1.4" ,
40
40
"react/promise-timer" : " ^1.10"
41
41
},
42
42
"autoload" : {
43
43
"psr-4" : {
44
- "React\\ Socket\\ " : " src"
44
+ "React\\ Socket\\ " : " src/ "
45
45
}
46
46
},
47
47
"autoload-dev" : {
48
48
"psr-4" : {
49
- "React\\ Tests\\ Socket\\ " : " tests"
49
+ "React\\ Tests\\ Socket\\ " : " tests/ "
50
50
}
51
51
}
52
52
}
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 1
1
<?xml version =" 1.0" encoding =" UTF-8" ?>
2
2
3
- <!-- PHPUnit configuration file with old format for PHPUnit 9.2 or older -->
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/4.8/phpunit.xsd"
6
6
bootstrap =" vendor/autoload.php"
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