File tree 4 files changed +30
-12
lines changed
4 files changed +30
-12
lines changed Original file line number Diff line number Diff line change 1
1
clover.xml
2
+ .phpunit.result.cache
3
+ vendor /
4
+ composer.lock
Original file line number Diff line number Diff line change 1
1
language : php
2
2
3
- php :
4
- - 7.2
5
- - 7.3
3
+ jobs :
4
+ include :
5
+ - stage : " PHP7.2 - lowest"
6
+ php : 7.2
7
+ script :
8
+ - composer update -n --prefer-dist --prefer-lowest --no-suggest
9
+ - composer dump-autoload
10
+ - php vendor/bin/phpunit
6
11
7
- before_script :
8
- - composer install --prefer-source --no-interaction
9
- - composer dump-autoload
12
+ - stage : " PHP7.3 - highest"
13
+ php : 7.3
14
+ script :
15
+ - composer update -n --prefer-dist --no-suggest
16
+ - composer dump-autoload
17
+ - php vendor/bin/phpunit
10
18
11
- script : vendor/bin/phpunit
19
+ - stage : " PHP7.4 - highest"
20
+ php : 7.4
21
+ script :
22
+ - composer update -n --prefer-dist --no-suggest
23
+ - composer dump-autoload
24
+ - php vendor/bin/phpunit
Original file line number Diff line number Diff line change 25
25
],
26
26
"require" : {
27
27
"php" : " ^7.2" ,
28
+ "ext-json" : " *" ,
29
+ "ext-pcntl" : " *" ,
28
30
"yosymfony/resource-watcher" : " ^2.0" ,
29
- "symfony/console" : " ^4.3" ,
31
+ "symfony/console" : " ^4.3 || ^5.0 " ,
30
32
"react/event-loop" : " ^1.1" ,
31
- "symfony/yaml" : " ^4.3" ,
33
+ "symfony/yaml" : " ^4.3 || ^5.0 " ,
32
34
"react/child-process" : " ^0.6.1" ,
33
- "ext-json " : " * " ,
34
- "ext-pcntl " : " * " ,
35
+ "react/stream " : " ^1.0.0 " ,
36
+ "symfony/finder " : " ^4.3 || ^5.0 " ,
35
37
"alecrabbit/php-cli-snake" : " ^0.5"
36
38
},
37
39
"autoload" : {
Original file line number Diff line number Diff line change 6
6
convertNoticesToExceptions =" true"
7
7
convertWarningsToExceptions =" true"
8
8
processIsolation =" false"
9
- stopOnFailure =" false "
9
+ stopOnFailure =" true "
10
10
bootstrap =" vendor/autoload.php" >
11
11
<testsuites >
12
12
<testsuite name =" Common" >
You can’t perform that action at this time.
0 commit comments