Skip to content

Commit

Permalink
Fix appveyor PHP Custom config
Browse files Browse the repository at this point in the history
  • Loading branch information
eclipxe13 committed Mar 15, 2019
1 parent bf6eb1e commit 703e592
Showing 1 changed file with 12 additions and 10 deletions.
22 changes: 12 additions & 10 deletions .appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,16 +45,18 @@ install:
# setup c:\tools\php\php.ini
Copy-Item -Path c:\tools\php\php.ini-production -Destination c:\tools\php\php.ini
Add-Content c:\tools\php\php.ini "; PHP Custom config" `
+ "date.timezone=UTC`n" `
+ "extension_dir=ext`n" `
+ "memory_limit=1G`n" `
+ "extension=php_openssl`n" `
+ "extension=php_mbstring`n" `
+ "extension=php_fileinfo`n" `
+ "extension=php_curl`n" `
+ "extension=php_xsl`n" `
+ "extension=php_soap`n"
Add-Content c:\tools\php\php.ini "`
`n; PHP Custom config `
date.timezone=UTC `
extension_dir=ext `
memory_limit=1G `
extension=php_openssl `
extension=php_mbstring `
extension=php_fileinfo `
extension=php_curl `
extension=php_xsn `
extension=php_soap `
"
}
- php -i
# composer
Expand Down

0 comments on commit 703e592

Please sign in to comment.