Skip to content
This repository has been archived by the owner on Apr 1, 2023. It is now read-only.

Commit

Permalink
Merge pull request #17 from zalawi/master
Browse files Browse the repository at this point in the history
Upgrade to php 7.4.14
  • Loading branch information
marcomilon committed Jan 20, 2021
2 parents 2723d2f + 070e50f commit 63f6bce
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ EzPHP gives you a personal PHP webserver for development.

The goal of the project is to provide a single **.exe** file that will get you a ready to use PHP development environment.

EzPHP will install PHP v. 7.4.13 downloaded from https://windows.php.net/downloads/releases/php-7.4.13-nts-Win32-vc15-x64.zip
EzPHP will install PHP v. 7.4.14 downloaded from https://windows.php.net/downloads/releases/php-7.4.14-nts-Win32-vc15-x64.zip

### Installation

Expand Down
2 changes: 1 addition & 1 deletion internal/php/installer.go
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ func FastInstall(source, installFolder string) (string, error) {

var confirmation string

fmt.Print("Would you like to install PHP version 7.4.13? [y/N] ")
fmt.Print("Would you like to install PHP version 7.4.14? [y/N] ")
fmt.Scanln(&confirmation)

confirmation = strings.TrimSpace(confirmation)
Expand Down
4 changes: 2 additions & 2 deletions main.go
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ import (

const (
ezPHPWebsite = "https://github.com/marcomilon/ezphp"
downloadURL = "https://windows.php.net/downloads/releases/php-7.4.13-nts-Win32-vc15-x64.zip"
installFolder = "php-7.4.13"
downloadURL = "https://windows.php.net/downloads/releases/php-7.4.14-nts-Win32-vc15-x64.zip"
installFolder = "php-7.4.14"
)

func main() {
Expand Down

0 comments on commit 63f6bce

Please sign in to comment.