diff --git a/CHANGELOG.md b/CHANGELOG.md index af10afe..e3af6eb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,10 @@ FastSitePHP uses [Semantic Versioning](https://docs.npmjs.com/about-semantic-versioning). +## 1.5.0 (April 23, 2023) + +* Added Support for PHP 8.2 + ## 1.4.4 (February 1, 2022) * Commented out the default `CSP (Content-Security-Policy)` and added additional code comments on the topic. diff --git a/README.md b/README.md index 74878a5..596ed49 100644 --- a/README.md +++ b/README.md @@ -55,6 +55,7 @@ A bash script is available for a quick setup of a Web Server (Apache or nginx), Supported Operating Systems (more will be added in the future): +* Ubuntu 22.04 LTS * Ubuntu 20.04 LTS * Ubuntu 18.04 LTS * Ubuntu 16.04 LTS @@ -71,7 +72,7 @@ sudo bash create-fast-site.sh ### Supported Versions of PHP -* The FastSitePHP Starter Site works with all versions of PHP from `5.3` to `8.1`. +* The FastSitePHP Starter Site works with all versions of PHP from `5.3` to `8.2`. * If you need to install the Starter Site on a Server with PHP 5.3 you will need to set the `short_open_tag = On` on your server's `php.ini` file. ### Directory Structure diff --git a/composer.json b/composer.json index f139125..77efeb1 100644 --- a/composer.json +++ b/composer.json @@ -14,7 +14,7 @@ }, "require": { "php": ">=5.3.0", - "fastsitephp/fastsitephp": ">=1.4", + "fastsitephp/fastsitephp": ">=1.5", "ircmaxell/password-compat": "^1.0", "paragonie/random_compat": "^1|^2", "erusev/parsedown": "^1.7",