Skip to content

Commit fa075b8

Browse files
committed
fixes
1 parent d0e2d6f commit fa075b8

File tree

2 files changed

+3
-5
lines changed

2 files changed

+3
-5
lines changed

.travis.yml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -25,14 +25,12 @@ branches:
2525

2626
matrix:
2727
allow_failures:
28-
- php: hhvm
29-
dist: trusty
28+
- php: 7.3
3029
fast_finish: true
3130
include:
3231
- php: 5.5
3332
env: COMPOSER_FLAGS="--prefer-stable --prefer-lowest" COVERAGE=true TEST_COMMAND="composer test-ci" PULI_VERSION=1.0.0-beta9
34-
- php: hhvm
35-
dist: trusty
33+
3634

3735
before_install:
3836
- if [[ $COVERAGE != true ]]; then phpenv config-rm xdebug.ini || true; fi

spec/autoload.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
$loader = require __DIR__.'/../vendor/autoload.php';
33

44
// Temporary fix for Puli
5-
if (PHP_VERSION_ID >= 50600 && PHP_VERSION_ID < 70300) {
5+
if (PHP_VERSION_ID >= 50600) {
66
$loader->addClassMap([
77
'Puli\\GeneratedPuliFactory' => __DIR__.'/../.puli/GeneratedPuliFactory.php',
88
]);

0 commit comments

Comments
 (0)