File tree Expand file tree Collapse file tree 2 files changed +4
-3
lines changed Expand file tree Collapse file tree 2 files changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -4,10 +4,11 @@ matrix:
4
4
- php : 7.1
5
5
env : EXECUTE_DEPLOYMENT=true
6
6
- php : 7.2
7
+ - php : 7.3
7
8
env : deps=low
8
9
fast_finish : true
9
10
before_install :
10
- - phpenv config-rm xdebug.ini
11
+ - phpenv config-rm xdebug.ini || echo "XDebug not enabled"
11
12
install :
12
13
- if [[ $deps = low ]]; then make update-min; else make install; fi
13
14
script :
Original file line number Diff line number Diff line change @@ -30,11 +30,11 @@ test-package: package test-package-tools
30
30
.PHONY : test-package
31
31
32
32
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
34
34
.PHONY : cs
35
35
36
36
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
38
38
.PHONY : cs-fix
39
39
40
40
deptrac : tools/deptrac
You can’t perform that action at this time.
0 commit comments