From 03c1f21204260c4b7ea95fbb1e32b9b13e258e65 Mon Sep 17 00:00:00 2001 From: zalawi <77602616+zalawi@users.noreply.github.com> Date: Sun, 17 Jan 2021 23:12:24 -0600 Subject: [PATCH 1/3] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 From e855475110ef0bfcc870df98401e4b07aa41cd8d Mon Sep 17 00:00:00 2001 From: zalawi <77602616+zalawi@users.noreply.github.com> Date: Sun, 17 Jan 2021 23:14:33 -0600 Subject: [PATCH 2/3] Update installer.go Upgrade to php 7.4.14 --- internal/php/installer.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) From 070e50f7e4fcf79035b6024715dce0c0f503f10f Mon Sep 17 00:00:00 2001 From: zalawi <77602616+zalawi@users.noreply.github.com> Date: Sun, 17 Jan 2021 23:15:45 -0600 Subject: [PATCH 3/3] Update main.go Upgrade to php 7.4.14 --- main.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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() {