Skip to content

Commit e16ac97

Browse files
committed
appveyor: support php 8, drop 7.2
1 parent ee2bb87 commit e16ac97

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

appveyor.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,12 @@ cache:
99

1010
environment:
1111
matrix:
12-
- PHP_VERSION: '7.2.19'
1312
- PHP_VERSION: '7.3.7'
13+
PHP_DOWNLOAD_URL: 'https://windows.php.net/downloads/releases/archives/php-7.3.7-nts-Win32-VC15-x64.zip'
14+
- PHP_VERSION: '7.4.3'
15+
PHP_DOWNLOAD_URL: 'https://windows.php.net/downloads/releases/archives/php-7.4.3-nts-Win32-vc15-x64.zip'
16+
- PHP_VERSION: '8.0.0'
17+
PHP_DOWNLOAD_URL: 'https://windows.php.net/downloads/releases/php-8.0.0-nts-Win32-vs16-x64.zip'
1418

1519
matrix:
1620
fast_finish: true
@@ -23,7 +27,7 @@ install:
2327
- IF NOT EXIST c:\php mkdir c:\php
2428
- IF NOT EXIST c:\php\%PHP_VERSION% mkdir c:\php\%PHP_VERSION%
2529
- cd c:\php\%PHP_VERSION%
26-
- IF NOT EXIST php-installed.txt curl --fail --location --silent --show-error -o php.zip https://windows.php.net/downloads/releases/archives/php-%PHP_VERSION%-nts-Win32-VC15-x64.zip
30+
- IF NOT EXIST php-installed.txt curl --fail --location --silent --show-error -o php.zip %PHP_DOWNLOAD_URL%
2731
- IF NOT EXIST php-installed.txt 7z x php.zip -y
2832
- IF NOT EXIST php-installed.txt del /Q *.zip
2933
- IF NOT EXIST php-installed.txt copy /Y php.ini-development php.ini

0 commit comments

Comments
 (0)