Skip to content

chatisk/ApiAutoPilot

 
 

Repository files navigation

Latest Version on Packagist Total Downloads

Api Auto Pilot is laravel package that makes the procecess of creating laravel RESTful APIs a breeze!

Make sure to check the Documentation Website of the package for more information about the package

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.

About

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • PHP 100.0%