Download the PHP package mostafizurmaruf/bingo-crud without Composer

On this page you can find all versions of the php package mostafizurmaruf/bingo-crud. 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 bingo-crud

Laravel CRUD Generator (make:crud)

A self-contained Artisan command that scaffolds a complete CRUD stack from a single schema string — model, migration, form request, resource controller, Blade views (index / create / edit / show + shared form partial + layout) and the resource route — with no third-party packages.


1. Installation

Install via Composer — no copy/paste required:

3. Usage

Argument / option Description
Model Singular model name, e.g. Product.
--schema= Comma-separated field definitions (see below).
--force Overwrite files that already exist.

Example

Then:

4. Schema syntax

Supported types

string, char, email, password, text, longText, integer, bigInteger, unsignedInteger, unsignedBigInteger, boolean, decimal, float, double, date, datetime, timestamp, time, year, json, enum, uuid.

Each type automatically maps to:

Type Migration column Validation Form input Cast
string string string, max:255 text
email string email, max:255 email
text text string textarea
integer integer integer number integer
boolean boolean boolean checkbox boolean
decimal decimal(p,s) numeric number decimal:s
date date date date date
datetime dateTime date datetime-local datetime
enum enum([...]) in:... select
json json json textarea array

Modifiers

5. What gets generated

File Notes
database/migrations/<ts>_create_<table>_table.php Columns, modifiers, id() + timestamps(). Skipped if a create_<table>_table migration already exists.
app/Models/<Model>.php $fillable + typed casts() method.
app/Http/Requests/<Model>Request.php rules() derived from the schema; Rule import only when needed.
app/Http/Controllers/<Model>Controller.php Full resource controller using the form request + route-model binding.
resources/views/<table>/{index,create,edit,show,_form}.blade.php Bootstrap 5 views; create/edit share _form.
resources/views/layouts/app.blade.php Generated only if missing — flash + validation summary.
routes/web.php Route::resource(...) appended with its controller use import, idempotently.

6. Safety & idempotency

7. Notes


All versions of bingo-crud with dependencies

PHP Build Version
Package Version
Requires php Version ^8.2
illuminate/console Version ^11.0|^12.0
illuminate/filesystem Version ^11.0|^12.0
illuminate/support Version ^11.0|^12.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 mostafizurmaruf/bingo-crud contains the following files

Loading the files please wait ...