File tree 3 files changed +15
-2
lines changed
3 files changed +15
-2
lines changed Original file line number Diff line number Diff line change 7
7
- 7.1
8
8
- 7.2
9
9
- 7.3
10
+ - 7.4snapshot
10
11
- nightly
11
12
- hhvm
12
13
@@ -20,6 +21,10 @@ matrix:
20
21
# https://github.com/php-vcr/php-vcr/issues/90
21
22
- php : hhvm
22
23
24
+ # Not 100% sure why this one is failing but we can get to it when 7.4-dev
25
+ # becomes 7.4.0
26
+ - php : 7.4snapshot
27
+
23
28
dist : trusty
24
29
sudo : false
25
30
@@ -32,6 +37,7 @@ before_script:
32
37
- composer self-update -q
33
38
- if [ -n "$GH_TOKEN" ]; then composer config github-oauth.github.com ${GH_TOKEN}; fi;
34
39
- composer install --no-interaction --prefer-dist
40
+ - composer show
35
41
36
42
script :
37
43
- mkdir -p build/logs
Original file line number Diff line number Diff line change 7
7
"symfony/event-dispatcher" : " ^2.4|^3.0|^4.0"
8
8
},
9
9
"require-dev" : {
10
- "mikey179/vfsStream " : " ^1.6" ,
10
+ "mikey179/vfsstream " : " ^1.6" ,
11
11
"php-curl-class/php-curl-class" : " ^8.0" ,
12
- "phpunit/phpunit" : " ^4.8|^5.0"
12
+ "phpunit/phpunit" : " ^4.8|^5.0|^7.0 "
13
13
},
14
14
"autoload" : {
15
15
"psr-4" : {
Original file line number Diff line number Diff line change 8
8
*/
9
9
10
10
require __DIR__ . '/../vendor/autoload.php ' ;
11
+
12
+ if (PHP_VERSION_ID >= 70100 ) {
13
+ if (!class_exists ('\PHPUnit_Framework_TestCase ' )) {
14
+ class PHPUnit_Framework_TestCase extends \PHPUnit \Framework \TestCase {
15
+ }
16
+ }
17
+ }
You can’t perform that action at this time.
0 commit comments