kjos / command
Command tool for Laravel and other
Requires
- php: ^7.0|^8.0
- illuminate/console: ^8.0|^11.0
- illuminate/database: ^8.0|^11.0
- illuminate/routing: ^8.0|^11.0
- illuminate/support: ^8.0|^11.0
- laravel/pint: ^1.20
Requires (Dev)
- fakerphp/faker: ^1.23
- mockery/mockery: ^1.6
- nunomaduro/collision: ^5.0
- orchestra/testbench: ^6.47
- pestphp/pest: ^1.23
- pestphp/pest-plugin: ^1.1
- pestphp/pest-plugin-laravel: ^1.4
- phpro/grumphp: ^2.5
- phpstan/phpstan: ^0.12
- phpunit/phpunit: ^9.5
- dev-master
- v2.1.4
- v2.1.3
- v2.1.2
- 2.1.1
- 2.0.0
- 1.0.3
- 1.0.2
- 1.0.1
- v1.0.0
- dev-KJOSCOM-31-update-illuminate-support-version
- dev-KJOSCOM-40-create-new-version-2-1-1
- dev-KJOSCOM-38-update-endpoint-tables-name-to-plural
- dev-KJOSCOM-37-generate-unit-test-datas
- dev-KJOSCOM-36-update-version-and-documentation
- dev-KJOSCOM-35-add-model-factory-creation-process
- dev-KJOSCOM-34-centralize-all-controller-method
- dev-KJOSCOM-33-format-code-with-psr-12-convention-style
- dev-KJOSCOM-32-add-centralized-controller-error-handling
- dev-KJOSCOM-30-correct-repository-url
- dev-KJOSCOM-29-remove-package-lock-from-master
- dev-KJOSCOM-7-bug-on-model-namespace-order
- dev-KJOSCOM-6-correction-de-bug-version-1-0-0
- dev-KJOSCOM-2-make-command-to-create-route-api
- dev-KJOSCOM-1-installation-et-configuration-de-lenvironnement
This package is auto-updated.
Last update: 2025-03-06 05:34:28 UTC
README
OVERVIEW
3kjos Command is a Laravel package that provides a powerful command-line tool to quickly generate a complete API structure, including routes, controllers, models, form requests, resources, migrations, and tests. With just one command, you can scaffold an entire API module, significantly reducing development time and maintaining consistency across your project.
Features
Automatic API Generation
- Adds API route to
api.php
(index, show, store, put, delete) - Generates a
controller
with all CRUD methods. - Add
resource class
to structure API responses. - Builds a
model
with its table name, fillable fields, and relationships. - Generates a
form request class
with validation rules. - Creates a
migration
with predefined fields. - Generates
feature tests
for the API.
Error Handling with errorHandler
(Optional)
- Centralizes error management across controllers.
- Handles
ModelNotFoundException
,QueryException
, and other errors. - Ensures proper HTTP responses:
404
,403
,422
,500
.
Centralized Controller Logic (Optional)
- Uses a
Central
service to handle CRUD operations. - Reduces code duplication by managing common logic in one place.
Factory Generation
- Creates a
factory
for the model with relevant attributes. - Simplifies database seeding and testing.
Installation
composer require kjos/command
Usage
php artisan kjos:make:api name
- Replace
name
with the desired API entity (e.g.,user
,product
). - This will create all necessary files and append routes automatically.
Available Options
Option | Alias | Description |
---|---|---|
--force |
-f |
Overwrites existing files if they exist. |
--errorhandler |
-er |
Enables centralized error handling for controller methods. |
--centralize |
-c |
Uses a central class to manage CRUD operations. |
--factory |
Generates a model factory with sample data. | |
--test |
Generates tests files relative to a madel. |
Example with Options
php artisan kjos:make:api User --force --errorhandler --centralize --factory --test
This command will: ✅ Overwrite existing files. ✅ Enable centralized error handling. ✅ Use a central CRUD management system. ✅ Generate a factory for the User model.
Example Generated Code
Controller with Error Handling (--errorhandler or -er)
public function store(UserRequest $request) { return $this->errorHandler(function () use ($request) { return new UserResource(User::create($request->validated())); }); }
Error Handling with errorHandler Method
The errorHandler
method is a utility function designed to execute a callable while handling various exceptions that may occur. It provides robust error handling and ensures that different types of errors are appropriately managed.
-
ModelNotFoundException: If a model is not found, the method returns a
404 Not Found
response. -
QueryException: For security, reasons catches database query errors and returns a 404 Not Found response.
-
General Exceptions: The method checks the exception code and handles it as follows:
404
: Returns a404 Not Found
response.403
: Returns a403 Forbidden
response with the error message.422
: Returns a403 Forbidden
response with the error message.Other errors
: A generic500 Internal Server Error
response is returned with the exception message.
This approach ensures that your application responds to errors with proper HTTP status codes, making error handling more predictable and user-friendly.
Controller with Centralized Logic (--centralize or -c)
public function store(Request $request) { return $this->errorHandler(function () use ($request) { return Central::store(User::class, UserResource::class, $request->validated()); }); }
Centralized management of index
, show
, store
, update
and delete
methods
-Generated Factory (--factory)
public function definition(): array { return [ 'client_id' => 11, 'price' => 6765610, 'partner_id' => 25, ]; }
Why Use 3kjos Command?
🚀 Save Development Time – Automates repetitive tasks. ✅ Consistency – Ensures a structured and uniform API architecture. 🔧 Customizable – Offers multiple options for error handling, centralization, and testing. 📦 Scalable – Easily extendable for future enhancements.
License
This package is open-source and available under the MIT License. 🚀