Download the PHP package shibuyakosuke/laravel-crud-command without Composer

On this page you can find all versions of the php package shibuyakosuke/laravel-crud-command. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.

FAQ

After the download, you have to make one include require_once('vendor/autoload.php');. After that you have to import the classes with use statements.

Example:
If you use only one package a project is not needed. But if you use more then one package, without a project it is not possible to import the classes with use statements.

In general, it is recommended to use always a project to download your libraries. In an application normally there is more than one library needed.
Some PHP packages are not free to download and because of that hosted in private repositories. In this case some credentials are needed to access such packages. Please use the auth.json textarea to insert credentials, if a package is coming from a private repository. You can look here for more information.

  • Some hosting areas are not accessible by a terminal or SSH. Then it is not possible to use Composer.
  • To use Composer is sometimes complicated. Especially for beginners.
  • Composer needs much resources. Sometimes they are not available on a simple webspace.
  • If you are using private repositories you don't need to share your credentials. You can set up everything on our site and then you provide a simple download link to your team member.
  • Simplify your Composer build process. Use our own command line tool to download the vendor folder as binary. This makes your build process faster and you don't need to expose your credentials for private repositories.
Please rate this library. Is it a good library?

Informations about the package laravel-crud-command

laravel-crud-command

日本語

Get the schema from the pre-created database and use the artisan command to batch output the files needed for CRUD.

Feature

  1. Generate a file for translation from MySQL table comment and column comment.
    • resourcees/lang/{locale}/tables.php
    • resourcees/lang/{locale}/columns.php
  2. Create validation rule from MySQL table definition.
    • rules/{model}.php
  3. Model creation
    • A property is automatically generated from the table column.
    • Output belongsTo, hasMany, belongsToMany methods from the foreign key constraint.
  4. Controller creation
    • Output all methods required for CRUD.
  5. Global scope creation
    • Create one global scope class for each model.
  6. Form request class creation
    • The rules are automatically output from the table definition.
  7. View composer creation
    • Automatically generate the logic that passes the form part to the view from the foreign key definition.
  8. View creation
    • Lists, details, new creations and updates are automatically generated.
  9. Bread crumb list creation
    • A breadcrumb trail is automatically output to the file generated by CRUD.
  10. Template customization
    • Depending on the project, you may need to customize the output template. In that case, you can edit the stub as you like.

Install

Setup

1. First and foremost, start by creating a migration file. Be sure to set the comment and foreign key as shown in the example.

For the table comment function, diplodocker/comments-loader is used.

2. Execute migration
3. Edit config/app.php to set language
4. Output resource
5. Output all CRUD files
Option

Other commands

To customize the output file, execute the following command to output multiple product files with the extension .stub in the /stubs directory. Customize the output file.


All versions of laravel-crud-command with dependencies

PHP Build Version
Package Version
Requires php Version ^7.2.5 | ^7.3 | ^7.4
barryvdh/laravel-dompdf Version ^0.8.6
laravel/framework Version ^6.0 | ^7.0 | ^8.0
laravelcollective/html Version ^6.1 | ^6.2
shibuyakosuke/laravel-form-extend Version ^1.0
diplodocker/comments-loader Version ^0.0.2
shibuyakosuke/laravel-database-validation Version ^1.2.0
shibuyakosuke/laravel-model-replacement Version ^1.1.1
shibuyakosuke/laravel-crud-breadcrumbs Version ^1.0.0
maatwebsite/excel Version ^3.1
watson/rememberable Version ^3.0 | ^4.0 | ^5.0
Composer command for our command line client (download client) This client runs in each environment. You don't need a specific PHP version etc. The first 20 API calls are free. Standard composer command

The package shibuyakosuke/laravel-crud-command contains the following files

Loading the files please wait ....