Skip to content

Commit 2edfa20

Browse files
committed
Remove PHP 7.2 build on AppVeyor
1 parent 1fc2a34 commit 2edfa20

File tree

1 file changed

+6
-8
lines changed

1 file changed

+6
-8
lines changed

.appveyor.yml

Lines changed: 6 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@ cache:
1414
## Build matrix for lowest and highest possible targets
1515
environment:
1616
matrix:
17-
- php: 7.2
1817
- php: 7.3
1918
- php: 7.4
2019
- php: 8.0
@@ -76,18 +75,17 @@ install:
7675
# setup c:\tools\php\php.ini
7776
if (Test-Path c:\tools\php\php.ini-production) {
7877
Copy-Item -Path c:\tools\php\php.ini-production -Destination c:\tools\php\php.ini
79-
[string]$php_ext_prefix=$(if ($Env:php -lt "7.2") {"php_"} else {""})
8078
Add-Content c:\tools\php\php.ini "`
8179
`n; PHP Custom config `
8280
date.timezone=UTC `
8381
extension_dir=ext `
8482
memory_limit=1G `
85-
extension=${php_ext_prefix}openssl `
86-
extension=${php_ext_prefix}mbstring `
87-
extension=${php_ext_prefix}fileinfo `
88-
extension=${php_ext_prefix}curl `
89-
extension=${php_ext_prefix}xsl `
90-
extension=${php_ext_prefix}soap `
83+
extension=openssl `
84+
extension=mbstring `
85+
extension=fileinfo `
86+
extension=curl `
87+
extension=xsl `
88+
extension=soap `
9189
"
9290
}
9391

0 commit comments

Comments
 (0)