Skip to content

Commit f9aafcd

Browse files
authored
Merge pull request #16 from jakzal/php-7.3
Run tests on php 7.3
2 parents e45af3c + 4f0a1bb commit f9aafcd

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

.travis.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,11 @@ matrix:
44
- php: 7.1
55
env: EXECUTE_DEPLOYMENT=true
66
- php: 7.2
7+
- php: 7.3
78
env: deps=low
89
fast_finish: true
910
before_install:
10-
- phpenv config-rm xdebug.ini
11+
- phpenv config-rm xdebug.ini || echo "XDebug not enabled"
1112
install:
1213
- if [[ $deps = low ]]; then make update-min; else make install; fi
1314
script:

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,11 +30,11 @@ test-package: package test-package-tools
3030
.PHONY: test-package
3131

3232
cs: tools/php-cs-fixer
33-
tools/php-cs-fixer --dry-run --allow-risky=yes --no-interaction --ansi fix
33+
PHP_CS_FIXER_IGNORE_ENV=1 tools/php-cs-fixer --dry-run --allow-risky=yes --no-interaction --ansi fix
3434
.PHONY: cs
3535

3636
cs-fix: tools/php-cs-fixer
37-
tools/php-cs-fixer --allow-risky=yes --no-interaction --ansi fix
37+
PHP_CS_FIXER_IGNORE_ENV=1 tools/php-cs-fixer --allow-risky=yes --no-interaction --ansi fix
3838
.PHONY: cs-fix
3939

4040
deptrac: tools/deptrac

0 commit comments

Comments
 (0)