File tree Expand file tree Collapse file tree 1 file changed +6
-8
lines changed Expand file tree Collapse file tree 1 file changed +6
-8
lines changed Original file line number Diff line number Diff line change 14
14
# # Build matrix for lowest and highest possible targets
15
15
environment :
16
16
matrix :
17
- - php : 7.2
18
17
- php : 7.3
19
18
- php : 7.4
20
19
- php : 8.0
@@ -76,18 +75,17 @@ install:
76
75
# setup c:\tools\php\php.ini
77
76
if (Test-Path c:\tools\php\php.ini-production) {
78
77
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 {""})
80
78
Add-Content c:\tools\php\php.ini "`
81
79
`n; PHP Custom config `
82
80
date.timezone=UTC `
83
81
extension_dir=ext `
84
82
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 `
91
89
"
92
90
}
93
91
You can’t perform that action at this time.
0 commit comments