Skip to content

Commit

Permalink
Merge branch 'develop'
Browse files Browse the repository at this point in the history
  • Loading branch information
Robin de Graaf committed Aug 3, 2016
2 parents e4481b5 + 1322c74 commit c815c7d
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 3 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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 ;)__
Expand Down
16 changes: 14 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion structure/app/Config/App.php
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ public function getValues() {
return [
'app' => [
'title' => 'Parable',
'version' => '0.8.0',
'version' => '0.8.1',
],
];
}
Expand Down

0 comments on commit c815c7d

Please sign in to comment.