apiautopilot / apiautopilot
This is my package apiautopilot
1.0.0
2022-12-03 03:50 UTC
Requires
- php: ^8.0
- illuminate/contracts: ^9.0
- spatie/laravel-package-tools: ^1.13.0
Requires (Dev)
- laravel/pint: ^1.0
- nunomaduro/collision: ^6.0
- nunomaduro/larastan: ^2.0.1
- orchestra/testbench: ^7.0
- pestphp/pest: ^1.21
- pestphp/pest-plugin-laravel: ^1.1
- phpstan/extension-installer: ^1.1
- phpstan/phpstan-deprecation-rules: ^1.0
- phpstan/phpstan-phpunit: ^1.0
- phpunit/phpunit: ^9.5
This package is auto-updated.
Last update: 2025-04-25 05:32:53 UTC
README
Api Auto Pilot is laravel package that makes the procecess of creating laravel RESTful APIs a breeze!
Installation
You can install the package via composer:
composer require apiautopilot/apiautopilot
After you required the packager from packagist, make sure to run the installation command:
php artisan apiautopilot:install
You can publish the config file with:
php artisan vendor:publish --tag="apiautopilot-config"
This is the contents of the published config file:
<?php return [ 'index' => [ 'exclude' => [ ], ], 'show' => [ 'exclude' => [ ], ], 'create' => [ 'exclude' => [ ], ], 'update' => [ 'exclude' => [ ], ], 'delete' => [ 'exclude' => [ ], ], 'attach' => [ 'exclude' => [ ], ], 'detach' => [ 'exclude' => [ ], ], 'sync' => [ 'exclude' => [ ], ], 'settings' => [ ], ];
Testing
composer test
Credits
License
The MIT License (MIT). Please see License File for more information.