Skip to content
This repository has been archived by the owner on Aug 2, 2021. It is now read-only.

Commit

Permalink
Updated meta data to reflect Laravel 5 dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
lookitsatravis committed May 7, 2015
1 parent 464f922 commit 02afdd8
Show file tree
Hide file tree
Showing 4 changed files with 21 additions and 9 deletions.
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
## 1.1.0 (May 7, 2015)

Features:

- Now that Laravel 5 is released, packages are registered in a different way. Because of this, Listify now only supports Laravel 5.

Bugfixes:

- None

## 1.0.6 (December 15, 2014)

Features:
Expand Down
8 changes: 5 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,9 @@ Turn any Eloquent model into a list!

## Requirements
* `Listify` currently requires php >= 5.4 (`Listify` is implemented via the use of traits).
* Laravel 4.0 or higher
* Laravel 5.0 or higher

> For use with Laravel 4, please use version 1.0.6.
## Installation
`Listify` is distributed as a composer package, which is how it should be used in your app.
Expand Down Expand Up @@ -277,8 +279,8 @@ Aside from that, I hope to just keep in parity with the Ruby gem `acts_as_list`
- Commit and push until you are happy with your contribution
- Make sure to add tests for it. This is important so I don't break it in a future version unintentionally.
- Please try not to mess with the Composer.json, version, or history. If you want to have your own version, or is otherwise necessary, that is fine, but please isolate to its own commit so I can cherry-pick around it.
- I would recommend using Laravel 4.0.x and higher for testing the build before a pull request.
- I would recommend using Laravel 5.0 and higher for testing the build before a pull request.

## Copyright

Copyright (c) 2013-2014 Travis Vignon, released under the MIT license
Copyright (c) 2013-2014 Travis Vignon, released under the MIT license
8 changes: 4 additions & 4 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,10 @@
}],
"require": {
"php": ">=5.4.0",
"illuminate/database": "~4.0|~5.0",
"illuminate/support": "~4.0|~5.0",
"illuminate/console": "~4.0|~5.0",
"illuminate/events": "~4.0|~5.0"
"illuminate/database": "~5.0",
"illuminate/support": "~5.0",
"illuminate/console": "~5.0",
"illuminate/events": "~5.0"
},
"require-dev": {
"satooshi/php-coveralls": "dev-master",
Expand Down
4 changes: 2 additions & 2 deletions src/Lookitsatravis/Listify/Listify.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
* Ported from https://github.com/swanandp/acts_as_list
*
* @package lookitsatravis/listify
* @version 1.0.5
* @version 1.1.0
* @author Travis Vignon <travis@lookitsatravis.com>
* @link
*/
Expand Down Expand Up @@ -873,4 +873,4 @@ private function reloadPosition()
{
$this->setListifyPosition($this->getOriginal()[$this->positionColumn()]);
}
}
}

0 comments on commit 02afdd8

Please sign in to comment.