Download the PHP package pareshsoneri/rsp-crud-generator without Composer

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

RS CRUD Maker

pareshsoneri/rsp-crud-generator is a Laravel package designed to automatically generate CRUD operations for API resources. It adheres to the Repository and Service design patterns to promote clean, maintainable, and scalable code.

With a single command, this package sets up controllers, requests, resources, services, and repositories, enabling efficient management of your application's architecture.You only need to register my provider, as it automatically binds your repository.


Installation

Step 1: Install the Package

Run the following command to install the package via Composer:

Step 2: Add the Service Provider

Include the service provider in the providers array of your config/app.php file:

Step 3: Clear Laravel Cache

Ensure all changes are loaded by clearing Laravel's cache:


Usage

To generate the CRUD structure for a specific resource, use the following Artisan command:

Replace {Resource} with the name of the resource (e.g., Product).

Example

To create a CRUD structure for the Product resource, run:

Generated Folder Structure

Executing the command generates the following folder and file structure:


Magic Behind the Command

Database Schema Inspection

When you run the command php artisan make:rsp-crud User, the package inspects the users table in your database, fetching all columns except id and timestamp fields like created_at and updated_at.

Request Data Generation

The command automatically generates a {Resource}Request.php file containing validation rules for create and update operations. These rules are dynamically created based on the fields in the database table.

Route Generation

The command automatically generates the route and adds it to the api.php file, like this: Route::resource('users', UserController::class);.

Example: UserRequest.php

API Resource Response Generation

The package generates resource response files that map fields from the database table to API responses:

Example: UserShowResource.php


File Breakdown

Controllers

Defines API endpoints for managing CRUD operations.

Requests

Handles validation for incoming data during create and update operations.

Resources

Formats data for API responses:

Services

Encapsulates business logic related to CRUD operations.

Repositories

Manages data access, ensuring separation of concerns:


Customization

The generated files serve as a starting point. You can extend and modify them to suit your application's unique requirements, such as adding business logic, validation rules, or database relationships.


Features


Requirements


License

This package is open-source and licensed under the MIT License.


Author

Paresh Soneri
Email: [email protected]


Contributing

Contributions are welcome! To contribute:

For bug reports or feature requests, use the GitHub Issues section.


All versions of rsp-crud-generator with dependencies

PHP Build Version
Package Version
Requires php Version ^8.1
laravel/framework Version ^10.0
mrsoneri/rs-crud-maker Version dev-main
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 pareshsoneri/rsp-crud-generator contains the following files

Loading the files please wait ....