File tree 4 files changed +12
-7
lines changed
4 files changed +12
-7
lines changed Original file line number Diff line number Diff line change @@ -11,10 +11,11 @@ jobs:
11
11
strategy :
12
12
matrix :
13
13
php :
14
+ - 8.3
14
15
- 8.2
15
16
- 8.1
16
17
steps :
17
- - uses : actions/checkout@v3
18
+ - uses : actions/checkout@v4
18
19
- uses : shivammathur/setup-php@v2
19
20
with :
20
21
php-version : ${{ matrix.php }}
@@ -29,10 +30,11 @@ jobs:
29
30
strategy :
30
31
matrix :
31
32
php :
33
+ - 8.3
32
34
- 8.2
33
35
- 8.1
34
36
steps :
35
- - uses : actions/checkout@v3
37
+ - uses : actions/checkout@v4
36
38
- uses : shivammathur/setup-php@v2
37
39
with :
38
40
php-version : ${{ matrix.php }}
Original file line number Diff line number Diff line change 31
31
"react/promise" : " ^3.0 || ^2.8 || ^1.2.1"
32
32
},
33
33
"require-dev" : {
34
- "phpstan/phpstan" : " 1.10.18 " ,
35
- "phpunit/phpunit" : " ^9.5 "
34
+ "phpstan/phpstan" : " 1.10.39 " ,
35
+ "phpunit/phpunit" : " ^9.6 "
36
36
},
37
37
"autoload" : {
38
38
"psr-4" : {
43
43
]
44
44
},
45
45
"autoload-dev" : {
46
- "psr-4" : { "React\\ Tests\\ Async\\ " : " tests/" }
46
+ "psr-4" : {
47
+ "React\\ Tests\\ Async\\ " : " tests/"
48
+ }
47
49
}
48
50
}
Original file line number Diff line number Diff line change 1
1
<?xml version =" 1.0" encoding =" UTF-8" ?>
2
2
3
3
<phpunit xmlns : xsi =" http://www.w3.org/2001/XMLSchema-instance"
4
- xsi : noNamespaceSchemaLocation =" https://schema. phpunit.de/9.5 /phpunit.xsd"
4
+ xsi : noNamespaceSchemaLocation =" vendor/ phpunit/phpunit /phpunit.xsd"
5
5
bootstrap =" vendor/autoload.php"
6
6
cacheResult =" false"
7
7
colors =" true"
Original file line number Diff line number Diff line change 3
3
namespace React \Async ;
4
4
5
5
// @codeCoverageIgnoreStart
6
- if (!function_exists (__NAMESPACE__ . '\\parallel ' )) {
6
+ if (!\ function_exists (__NAMESPACE__ . '\\parallel ' )) {
7
7
require __DIR__ . '/functions.php ' ;
8
8
}
9
+ // @codeCoverageIgnoreEnd
You can’t perform that action at this time.
0 commit comments