File tree Expand file tree Collapse file tree 2 files changed +22
-4
lines changed Expand file tree Collapse file tree 2 files changed +22
-4
lines changed Original file line number Diff line number Diff line change 8
8
PHPUnit :
9
9
name : PHPUnit (PHP ${{ matrix.php }})
10
10
runs-on : ubuntu-22.04
11
+ continue-on-error : true
11
12
strategy :
12
13
matrix :
13
14
php :
@@ -47,10 +48,10 @@ jobs:
47
48
steps :
48
49
- uses : actions/checkout@v3
49
50
- run : cp "$(which composer)" composer.phar && ./composer.phar self-update --2.2 # downgrade Composer for HHVM
50
- - name : Run hhvm composer.phar require react/async:^2 react/promise:^2 # downgrade Async and Promise for HHVM
51
+ - name : Run hhvm composer.phar require --dev react/async:^2 react/promise:^2 phpunit/phpunit:^5.7 # downgrade Async and Promise for HHVM
51
52
uses : docker://hhvm/hhvm:3.30-lts-latest
52
53
with :
53
- args : hhvm composer.phar require react/async:^2 react/promise:^2
54
+ args : hhvm composer.phar require --dev react/async:^2 react/promise:^2 phpunit/phpunit:^5.7
54
55
- name : Run hhvm vendor/bin/phpunit --exclude-group internet
55
56
uses : docker://hhvm/hhvm:3.30-lts-latest
56
57
with :
Original file line number Diff line number Diff line change 15
15
"react/event-loop" : " ^1.4" ,
16
16
"react/http" : " ^1.8" ,
17
17
"react/promise" : " ^3 || ^2.10 || ^1.2" ,
18
- "react/promise-stream" : " ^1.5 " ,
18
+ "react/promise-stream" : " ^1.6 " ,
19
19
"react/promise-timer" : " ^1.9" ,
20
20
"react/socket" : " ^1.13" ,
21
21
"react/stream" : " ^1.3"
22
22
},
23
23
"require-dev" : {
24
24
"clue/stream-filter" : " ^1.3" ,
25
- "phpunit/phpunit" : " ^9.6 || ^5.7 || ^4.8.36"
25
+ "phpunit/phpunit" : " ^9.6 || ^7.5 || ^5.7 || ^4.8.36" ,
26
+ "react/async" : " ^4.2@dev || ^3.2@dev || ^4 || ^3 || ^2" ,
27
+ "react/dns" : " ^1.12@dev" ,
28
+ "react/http" : " ^1.10@dev" ,
29
+ "react/promise" : " ^3@dev || ^2.10 || ^1.2" ,
30
+ "react/promise-stream" : " dev-garbage as 1.7.0" ,
31
+ "react/promise-timer" : " ^1.10@dev" ,
32
+ "react/socket" : " dev-garbage as 1.14.0"
26
33
},
27
34
"config" : {
28
35
"preferred-install" : {
29
36
"react/*" : " source"
30
37
}
38
+ },
39
+ "repositories" : {
40
+ "promise-stream" : {
41
+ "type" : " vcs" ,
42
+ "url" : " https://github.com/clue-labs/promise-stream"
43
+ },
44
+ "socket" : {
45
+ "type" : " vcs" ,
46
+ "url" : " https://github.com/clue-labs/socket"
47
+ }
31
48
}
32
49
}
You can’t perform that action at this time.
0 commit comments