Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/maxca/lumpineevill
laravel auto generation file , [Request , Controller , Model , Repository]
https://github.com/maxca/lumpineevill
laravel-5-package laravel-autogenerator
Last synced: 15 days ago
JSON representation
laravel auto generation file , [Request , Controller , Model , Repository]
- Host: GitHub
- URL: https://github.com/maxca/lumpineevill
- Owner: maxca
- Created: 2018-05-28T09:45:40.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2018-06-29T09:38:32.000Z (over 6 years ago)
- Last Synced: 2024-11-13T02:43:47.762Z (3 months ago)
- Topics: laravel-5-package, laravel-autogenerator
- Language: PHP
- Homepage:
- Size: 71.3 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
[![Build Status](https://travis-ci.org/maxca/Lumpineevill.svg)](https://travis-ci.org/maxca/Lumpineevill)
# Lumpineevill v.1.0.6.*
For repository patten design under `Laravel framework`
# Feature
- can install via `composer`
- can create update delete search all ,where like ,find by id , filter language
- can reponse json format [not code API standard]
- can generate request file
- Create{namespace}Request
- Update{namespace}Request
- Delete{namespace}Request
- Get{namespace}Request
- can generate model and sync table automatically
- can generate controller
- can generate route and mapping auto to controller
- can generate repository extended on APIBaseRepository
- generate automatically interfaces of repository
- can generate migration file
# Installation
```php
composer require samark/lumpineevill
```
# Laravel 5.*: Serviceprovider
If you don't use auto-discovery, add the ServiceProvider to the providers array in config/app.php
```php
Lumpineevill\ServiceProvider\LumpineevillServiceProvider::class
```
# Command
```php
$ php artisan samark:genfile
$ php artisan samark:genfront
```
# copy environment
append `.env` file
```php
$ php samark:copy-env
```
# copy migration file
for copy migration file to dastabase/migrations/
```php
$ php samark:copy-migration
```
# publishes vendor config
```php
$ php artisan vendor:publish --provider="Lumpineevill\ServiceProvider\LumpineevillServiceProvider"
```