diff --git a/README.md b/README.md index cd44ba8..6a3a7c5 100644 --- a/README.md +++ b/README.md @@ -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 diff --git a/internal/php/installer.go b/internal/php/installer.go index a5afa3a..290b304 100644 --- a/internal/php/installer.go +++ b/internal/php/installer.go @@ -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) diff --git a/main.go b/main.go index f293541..d12707e 100644 --- a/main.go +++ b/main.go @@ -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() {