File tree 4 files changed +4
-27
lines changed
4 files changed +4
-27
lines changed Original file line number Diff line number Diff line change 19
19
- 7.3
20
20
- 7.2
21
21
- 7.1
22
- - 7.0
23
- - 5.6
24
- - 5.5
25
- - 5.4
26
- - 5.3
27
22
steps :
28
23
- uses : actions/checkout@v4
29
24
- uses : shivammathur/setup-php@v2
56
51
- 7.3
57
52
- 7.2
58
53
- 7.1
59
- - 7.0
60
54
steps :
61
55
- uses : actions/checkout@v4
62
56
- uses : shivammathur/setup-php@v2
@@ -104,19 +98,3 @@ jobs:
104
98
if : ${{ matrix.php >= 7.3 }}
105
99
- run : vendor/bin/phpunit --coverage-text -c phpunit.xml.legacy
106
100
if : ${{ matrix.php < 7.3 }}
107
-
108
- PHPUnit-hhvm :
109
- name : PHPUnit (HHVM)
110
- runs-on : ubuntu-22.04
111
- continue-on-error : true
112
- steps :
113
- - uses : actions/checkout@v4
114
- - run : cp "$(which composer)" composer.phar && ./composer.phar self-update --2.2 # downgrade Composer for HHVM
115
- - name : Run hhvm composer.phar install
116
- uses : docker://hhvm/hhvm:3.30-lts-latest
117
- with :
118
- args : hhvm composer.phar install
119
- - name : Run hhvm vendor/bin/phpunit
120
- uses : docker://hhvm/hhvm:3.30-lts-latest
121
- with :
122
- args : hhvm vendor/bin/phpunit
Original file line number Diff line number Diff line change @@ -830,8 +830,7 @@ composer require react/event-loop:^3@dev
830
830
See also the [ CHANGELOG] ( CHANGELOG.md ) for details about version upgrades.
831
831
832
832
This project aims to run on any platform and thus does not require any PHP
833
- extensions and supports running on legacy PHP 5.3 through current PHP 8+ and
834
- HHVM.
833
+ extensions and supports running on PHP 7.1 through current PHP 8+.
835
834
It's * highly recommended to use the latest supported PHP version* for this project.
836
835
837
836
Installing any of the event loop extensions is suggested, but entirely optional.
Original file line number Diff line number Diff line change 26
26
}
27
27
],
28
28
"require" : {
29
- "php" : " >=5.3 .0"
29
+ "php" : " >=7.1 .0"
30
30
},
31
31
"require-dev" : {
32
- "phpunit/phpunit" : " ^9.6 || ^5.7 || ^4.8.36 "
32
+ "phpunit/phpunit" : " ^9.6 || ^5.7"
33
33
},
34
34
"suggest" : {
35
35
"ext-pcntl" : " For signal handling support when using the StreamSelectLoop"
Original file line number Diff line number Diff line change 2
2
3
3
<!-- PHPUnit configuration file with old format for legacy PHPUnit -->
4
4
<phpunit xmlns : xsi =" http://www.w3.org/2001/XMLSchema-instance"
5
- xsi : noNamespaceSchemaLocation =" https://schema.phpunit.de/4.8 /phpunit.xsd"
5
+ xsi : noNamespaceSchemaLocation =" https://schema.phpunit.de/5.7 /phpunit.xsd"
6
6
bootstrap =" vendor/autoload.php"
7
7
colors =" true" >
8
8
<testsuites >
You can’t perform that action at this time.
0 commit comments