Download the PHP package jiordiviera/laravel-task-automator without Composer
On this page you can find all versions of the php package jiordiviera/laravel-task-automator. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Informations about the package laravel-task-automator
Laravel Task Automator 📦✨
Laravel Task Automator is a powerful Laravel package designed to supercharge your workflow by automating repetitive tasks like CRUD generation, authentication setup, seeder creation, API configuration, and more. Save time and focus on what truly matters—building awesome applications. 🚀
✨ Features
- CRUD Generation: Quickly generate CRUD scaffolding with models, controllers, migrations, views, and more.
- API & Web Ready: Supports both web-based and API-based controllers.
- Advanced Options: Includes seeding, form requests, policies, and testing capabilities.
- Developer Productivity: Generate files effortlessly and keep your application organized.
🚀 Installation
First, add Laravel Task Automator to your Laravel project using Composer:
Once installed, you can use the make:crud
command to generate various components for your application.
📜 Usage
Laravel Task Automator makes it easy to generate a complete CRUD setup with just a single command:
Arguments & Options:
name
(required): The name of the model. Example:Post
,User
.--fields
: Fields for the migration in the format:name:type,name:type,...
. Example:title:string,content:text
.--api
: Generate API-based controller and routes instead of web.--force
: Force overwrite existing files if they already exist.--seed
: Generate a seeder for the model.--policy
: Generate a policy for the model.--requests
: Generate form request classes for validation.--resource
: Generate an API resource.--test
: Generate feature or unit tests.
Example Command:
This command will generate:
- A Post model.
- A migration for the
posts
table with the specified fields. - An API Controller (
PostController
) and corresponding routes. - Views (if
--api
is not specified). - A Seeder (
PostSeeder
). - A Policy (
PostPolicy
). - Form Request validation classes (
StorePostRequest
,UpdatePostRequest
). - An API Resource (
PostResource
). - Feature or unit tests.
🛠️ Generated Files
Laravel Task Automator generates a complete set of files, customized to your application. Here’s a quick look at the generated components:
1. Model 🗂️
Path: app/Models/Post.php
The model is equipped with fillable
properties based on the fields you specify.
2. Migration 📅
Path: database/migrations/YYYY_MM_DD_HHMMSS_create_posts_table.php
The migration is automatically set up with all specified fields.
3. Controller 🖇️
Path: app/Http/Controllers/PostController.php
Depending on the --api
flag, either a web or API-based controller is generated with all CRUD methods.
4. Views (Optional) 👁️
Paths:
resources/views/post/index.blade.php
resources/views/post/create.blade.php
resources/views/post/edit.blade.php
resources/views/post/show.blade.php
Only generated if the --api
flag is not set.
5. Routes 🚦
You’ll be prompted to add the generated routes to your application. You can add them to either the web or API routes file.
6. Seeder 🌱
Path: database/seeders/PostSeeder.php
This seeder uses Faker to populate your database with random but sensible data.
7. Policy 🔒
Path: app/Policies/PostPolicy.php
Generated to handle authorization for your model’s actions.
8. Form Requests 📜
Paths:
app/Http/Requests/StorePostRequest.php
app/Http/Requests/UpdatePostRequest.php
Handles validation logic for storing and updating the model.
9. API Resource 🌐
Path: app/Http/Resources/PostResource.php
Generated for transforming your model’s data in API responses.
10. Tests 🧪
Paths:
tests/Feature/PostTest.php
(ortests/Unit/PostTest.php
for API)
Automatically generated feature or unit tests, making it easy to validate your generated CRUD.
📝 Advanced Usage
Using Stubs
You can customize your own stubs for more control over the generated code. Laravel Task Automator uses stub files located in stubs/
. Feel free to modify these to match your project’s style and standards.
To publish the stubs for customization:
Edit the stubs to suit your needs, and Laravel Task Automator will use your versions for code generation.
⚙️ Configuration
Laravel Task Automator is designed to work out-of-the-box, but there are a few things you might want to adjust for a more tailored experience.
Customizing Routes
You can modify the generated route template as per your app’s structure. You’ll find the routes in the stub files under stubs/routes/
.
Form Requests
Validation rules are generated automatically based on the provided fields, but you can edit the form request classes to add custom validation rules, messages, or other logic.
🛠️ Contributing
Contributions are welcome! If you have ideas, bug fixes, or improvements, please feel free to submit a pull request or open an issue on GitHub.
📝 License
Laravel Task Automator is open-sourced software licensed under the MIT license.
🫶 Acknowledgments
Special thanks to the Laravel community for creating an amazing framework that makes building web applications a joyful experience.
Feel free to enhance your development journey with Laravel Task Automator! Happy coding! 🎉🚀
All versions of laravel-task-automator with dependencies
illuminate/support Version ^8.0 || ^9.0 || ^10.0 || ^11.0
illuminate/console Version ^8.0 || ^9.0 || ^10.0 || ^11.0