Download the PHP package gianlu-api/laravel-design without Composer
On this page you can find all versions of the php package gianlu-api/laravel-design. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download gianlu-api/laravel-design
More information about gianlu-api/laravel-design
Files in gianlu-api/laravel-design
Package laravel-design
Short Description Library to generate custom design structure in laravel
License MIT
Informations about the package laravel-design
Laravel Design
Laravel Design is the library that allows you to quickly generate the architecture you desire.
Requirements
- PHP ^8.1
- Laravel ^10 || ^11
Installation
Publish Resources
It is not mandatory to publish the config; you can create your own and specify it when running the command.
Usage
First, you will need to fill out the configuration as explained below. Once the configuration file is ready, if you are using the laravel-design configuration file run:
Otherwise, if you are using your own configuration file:
Configurations
it is possible to generate the following types of files:
- migrations =>
- classes =>
- interfaces =>
- abstract classes =>
- models =>
- controllers =>
- options: type
- requests =>
- middlewares =>
- vue components =>
- options: type
- react components =>
- blade components =>
you can choose between these types of configuration, you can also mix them if you need
-
name and path configuration
-
path and names configuration
-
name configuration
- mixed configuration example
Migrations configruration
Controllers configruration
it is possible for controllers to choose whether api or resource methods should be created as allowed by Laravel, by adding to the configuration array for api or for resources
Vue Components Configuration
it is possible for vue components to choose options between composition_api and , by default a compositions component is created
Name Passed by Command
If you want, you can also pass the domain name directly to the command, so you never have to change your config structure once it’s defined like this.
Now you can run the command like this
Configuration Example
First, you will need to fill out the configuration file as follows.
If you want to create only specific components, simply leave the unwanted arrays empty. For example, if you need to create only a migration, model, service, and repository.
Laravel Commands
Add before the path where you want to create the class; otherwise, the class will be created following Laravel's default path. For example, for the Controller: , the Controller will be created in . On the other hand, if we use , it will be created in .
Other Commands
Default type for Vue components is composition api.
All versions of laravel-design with dependencies
illuminate/console Version ^11 || ^12
illuminate/support Version ^11 || ^12