Skip to content
This repository was archived by the owner on Apr 29, 2020. It is now read-only.

Commit 37d964a

Browse files
Added support for Laravel 5.5 make commands
1 parent ea3188d commit 37d964a

File tree

2 files changed

+8
-4
lines changed

2 files changed

+8
-4
lines changed

readme.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,10 @@ This package is an easy extension of the Artisan make commands provided by your
77
to your personal needs and to generate fully implemented php classes (controller, requests, policies, etc.) for a specified model.
88

99
## Requirements
10-
- [PHP](https://php.net) >=5.6.4
11-
- An existing >= [Laravel 5.4](https://laravel.com/docs/master/installation) project
10+
- [PHP](https://php.net) >=7.0.0
11+
- An existing >= [Laravel 5.5](https://laravel.com/docs/master/installation) project
1212

13+
Note: For Laravel 5.4 see version 1.0
1314

1415
## Installation
1516

src/Providers/ArtisanServiceProvider.php

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,8 @@ class ArtisanServiceProvider extends \Illuminate\Foundation\Providers\ArtisanSer
4747
'ControllerMake' => 'command.controller.make',
4848
'EventGenerate' => 'command.event.generate',
4949
'EventMake' => 'command.event.make',
50+
'ExceptionMake' => 'command.exception.make',
51+
'FactoryMake' => 'command.factory.make',
5052
'JobMake' => 'command.job.make',
5153
'ListenerMake' => 'command.listener.make',
5254
'MailMake' => 'command.mail.make',
@@ -61,12 +63,13 @@ class ArtisanServiceProvider extends \Illuminate\Foundation\Providers\ArtisanSer
6163
'QueueFailedTable' => 'command.queue.failed-table',
6264
'QueueTable' => 'command.queue.table',
6365
'RequestMake' => 'command.request.make',
66+
'ResourceMake' => 'command.resource.make',
67+
'RuleMake' => 'command.rule.make',
6468
'SeederMake' => 'command.seeder.make',
6569
'SessionTable' => 'command.session.table',
6670
'Serve' => 'command.serve',
6771
'TestMake' => 'command.test.make',
68-
'VendorPublish' => 'command.vendor.publish',
69-
'ResourceMake' => 'command.resource.make'
72+
'VendorPublish' => 'command.vendor.publish'
7073
];
7174

7275
/**

0 commit comments

Comments
 (0)