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

Commit

Permalink
bug fix
Browse files Browse the repository at this point in the history
  • Loading branch information
prateekkarki committed Dec 25, 2018
1 parent cedcd58 commit cdb1c36
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 15 deletions.
19 changes: 7 additions & 12 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,25 +1,19 @@
# laragen
# Laragen : Extensive generators for laravel

[![Latest Version on Packagist][ico-version]][link-packagist]
[![Software License][ico-license]](LICENSE.md)
[![Build Status][ico-travis]][link-travis]
[![Quality Score][ico-code-quality]][link-code-quality]
[![Total Downloads][ico-downloads]][link-downloads]

Generators for laravel
This is a work in progress. Please check back later for complete package.

## Structure
## Features
Generate and scaffold everything required for a basic laravel project. Starting with controllers, models, requests, views, assets, migrations, seeders, routes. More to be added in future releases.

If any of the following are applicable to your project, then the directory structure should follow industry best practices by being named the following.

```
bin/
config/
src/
tests/
vendor/
```
## Usage

This package is a work in progress. Please check back later.

## Install

Expand All @@ -29,6 +23,7 @@ Via Composer
$ composer require prateekkarki/laragen
```


## Security

If you discover any security related issues, please email [email protected] instead of using the issue tracker.
Expand Down
2 changes: 0 additions & 2 deletions src/Commands/Laragen.php
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,4 @@ protected function controller($name)

file_put_contents(app_path("/Http/Controllers/{$name}Controller.php"), $controllerTemplate);
}


}
2 changes: 1 addition & 1 deletion src/LaragenServiceProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ public function boot()
public function register()
{
$this->mergeConfigFrom(
__DIR__ . '/../config/laragen.php',
__DIR__ . '/../config/laragen.php',
'laragen'
);
}
Expand Down

0 comments on commit cdb1c36

Please sign in to comment.