Skip to content

Commit cd0e88d

Browse files
authored
Merge pull request #14 from photodude/patch-1
remove duplicate php 7.0 and use php 7.1
2 parents 51ab1d7 + a60c925 commit cd0e88d

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

appveyor.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ environment:
1212
- dependencies: highest
1313
php_ver_target: 7.0
1414
- dependencies: highest
15-
php_ver_target: 7.0
15+
php_ver_target: 7.1
1616

1717
## Cache composer bits
1818
cache:
@@ -28,7 +28,7 @@ init:
2828
## Install PHP and composer, and run the appropriate composer command
2929
install:
3030
- IF EXIST c:\tools\php (SET PHP=0)
31-
- ps: appveyor-retry cinst -y php --version ((choco search php --exact --all-versions -r | select-string -pattern $Env:php_ver_target | Select-Object -first 1) -replace '[php|]','')
31+
- ps: appveyor-retry cinst --ignore-checksums -y php --version ((choco search php --exact --all-versions -r | select-string -pattern $Env:php_ver_target | Select-Object -first 1) -replace '[php|]','')
3232
- cd c:\tools\php
3333
- IF %PHP%==1 copy php.ini-production php.ini /Y
3434
- IF %PHP%==1 echo date.timezone="UTC" >> php.ini
@@ -47,4 +47,4 @@ install:
4747
## Run the actual test
4848
test_script:
4949
- cd c:\projects\php-project-workspace
50-
- vendor/bin/phpunit -c phpunit.xml.dist
50+
- vendor/bin/phpunit -c phpunit.xml.dist

0 commit comments

Comments
 (0)