Skip to content

Commit 016918f

Browse files
committed
Fix readme, comoser and the service provider
1 parent 78ab9c7 commit 016918f

File tree

3 files changed

+11
-8
lines changed

3 files changed

+11
-8
lines changed

README.md

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,23 @@
11
# An awesome code generator for laravel framework
22

3-
For full documentation please visit This is <a href="https://crestapps.com/laravel-code-generator/docs/1.0" target="_blank" title="Laravel Code Generator Documentation">CrestApps.com</a>
3+
For full documentation please visit <a href="https://crestapps.com/laravel-code-generator/docs/1.0" target="_blank" title="Laravel Code Generator Documentation">CrestApps.com</a>
44

55

66
## Introduction
77

8-
Clean code generator for Laravel framework that will save you time! This awesome tool will help you generate views, controllers, routes, migration or request forms! The source code of this project can be found at GitHub
8+
A clean code generator for Laravel framework that will save you time! This awesome tool will help you generate resources like views, controllers, routes, migration or request form!
99

1010
## Features
1111

12+
* Customizable templates to enable you to change the standard look and feel of your application.
1213
* Create standard CRUD controllers with standard or form-request validation.
1314
* Create model.
1415
* Create named routes.
1516
* Create standard CRUD views.
1617
* Create Form-Request
17-
* Customizable view’s templates to enable you to change the standard look and feel of your application.
18-
* Create layouts.
18+
* Create layouts for your views.
1919
* Create languages/Locale files.
20+
* Json support to define your fields.
2021

2122

2223

composer.json

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,15 @@
22
"name": "crestapps/laravel-code-generator",
33
"license": "MIT",
44
"description": "An awesome code generator for laravel framework.",
5-
"version": "v1.0.0",
5+
"version": "v1.0.1",
66
"keywords": [
77
"laravel","crud","crud generator",
88
"laravel crud generator","laravel crud builder",
99
"crud builder","views creator","routes creator",
1010
"controller creator","code generator","generators",
11-
"code generator", "laravel crud","laravel code generator"
11+
"code generator", "laravel crud","laravel code generator",
12+
"laravel-code-generator","code-generator","CrestApps",
13+
"Alhayek", "Mike Alhayek","Majd Alhayek"
1214
],
1315
"authors": [
1416
{

src/CodeGeneratorServiceProvider.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,11 +22,11 @@ public function boot()
2222
{
2323
$this->publishes([
2424
__DIR__ . '/../config/codegenerator.php' => config_path('codegenerator.php'),
25-
]);
25+
], 'config');
2626

2727
$this->publishes([
2828
__DIR__ . '/templates' => base_path('resources\\codegenerator-templates\\default'),
29-
]);
29+
], 'templates');
3030

3131
$this->createDirectory(base_path('resources\\codegenerator-files'));
3232
}

0 commit comments

Comments
 (0)