diff --git a/CHANGELOG.md b/CHANGELOG.md index 1147f745..42ecfd72 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,10 @@ # Parable PHP Framework Changelog +### 0.8.1 + +__Changes__ +- README.md now has the new install instructions (through composer and packagist) + ### 0.8.0 __Note: This version is *completely* incompatible with previous versions and is basically a rewrite. I told you not to expect backwards compatibility just yet ;)__ diff --git a/README.md b/README.md index a9b8598b..04d28b83 100644 --- a/README.md +++ b/README.md @@ -17,9 +17,21 @@ Parable isn't by any means production-ready, secure or foolproof. So only try it ## Installation -Download a release from [here](https://github.com/devvoh/parable/releases). Unpack it wherever you like. +Parable can be installed by using [http://getcomposer.org/](Composer). Simply run: -Then run `composer install` and the autoload will be generated. Parable is now ready to use. +`composer require devvoh/parable 0.8.*` + +You'll get the latest version this way. If you want to install a specific version, include the version (0.8.0, for example). +It is, however, preferred to use the above version notation, since it will also get you updated and fixed versions, but no +backwards-compatibility breaking changes. + +After you've run the above command, you'll have a composer.json and a vendor folder. Parable is in there, but it's not +quite ready to be used. To initialize Parable's folder structure and files, run the following command: + +`vendor/bin/parable init` + +Now you're ready! Simply open the (properly installed apache2 & php 5.5+) url it's in in your browser and you should +see a welcome page. ## Documentation & More diff --git a/structure/app/Config/App.php b/structure/app/Config/App.php index 9167fb7b..a68d1e12 100644 --- a/structure/app/Config/App.php +++ b/structure/app/Config/App.php @@ -27,7 +27,7 @@ public function getValues() { return [ 'app' => [ 'title' => 'Parable', - 'version' => '0.8.0', + 'version' => '0.8.1', ], ]; }