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

Commit 63f6bce

Browse files
authored
Merge pull request #17 from zalawi/master
Upgrade to php 7.4.14
2 parents 2723d2f + 070e50f commit 63f6bce

3 files changed

Lines changed: 4 additions & 4 deletions

File tree

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ EzPHP gives you a personal PHP webserver for development.
44

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

7-
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
7+
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
88

99
### Installation
1010

internal/php/installer.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ func FastInstall(source, installFolder string) (string, error) {
3131

3232
var confirmation string
3333

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

3737
confirmation = strings.TrimSpace(confirmation)

main.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@ import (
1313

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

2020
func main() {

0 commit comments

Comments
 (0)