Skip to content

Commit

Permalink
Remove Laravel 4 references from readme
Browse files Browse the repository at this point in the history
  • Loading branch information
JeffreyWay committed Sep 13, 2014
1 parent 07be719 commit 4016d50
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

[![Build Status](https://travis-ci.org/JeffreyWay/Laravel-4-Generators.png?branch=master)](https://travis-ci.org/JeffreyWay/Laravel-4-Generators)

This Laravel 4 package provides a variety of generators to speed up your development process. These generators include:
This Laravel package provides a variety of generators to speed up your development process. These generators include:

- `generate:model`
- `generate:view`
Expand Down Expand Up @@ -38,15 +38,15 @@ That's it! You're all set to go. Run the `artisan` command from the Terminal to

php artisan

## Laravel 4.3 and Above
## Laravel 5.0 and Above

Begin by installing this package through Composer. Edit your project's `composer.json` file to require `way/generators`.

"require-dev": {
"way/generators": "~3.0"
}

> Version 3 of these generators works with Laravel 4.3 and higher, due to the new default folder structure in Laravel.
> Version 3 of these generators works with Laravel 5.0 and higher, due to the new default folder structure in Laravel.
Next, update Composer from the Terminal:

Expand Down Expand Up @@ -75,7 +75,7 @@ Think of generators as an easy way to speed up your workflow. Rather than openin

### Migrations

Laravel 4 offers a migration generator, but it stops just short of creating the schema (or the fields for the table). Let's review a couple examples, using `generate:migration`.
Laravel offers a migration generator, but it stops just short of creating the schema (or the fields for the table). Let's review a couple examples, using `generate:migration`.

php artisan generate:migration create_posts_table

Expand Down Expand Up @@ -303,7 +303,7 @@ This command will create an empty view, `/app/views/admin/reports/index.blade.ph

### Seeds

Laravel 4 provides us with a flexible way to seed new tables.
Laravel provides us with a flexible way to seed new tables.

php artisan generate:seed users

Expand Down

0 comments on commit 4016d50

Please sign in to comment.