Skip to content

The fastest way to make a powerful JSON:API compatible Rest API with Laravel.

License

Notifications You must be signed in to change notification settings

dsindrilaru/laravel-restify

 
 

Repository files navigation

Build Status Total Downloads Latest Stable Version License

The first fully customizable Laravel JSON:API builder. "CRUD" and protect your resources with 0 (zero) extra line of code.

Installation

You can install the package via composer:

composer require binaryk/laravel-restify

Videos

If you are a visual learner, checkout our video course for the Laravel Restify.

Quick start

Setup package:

php artisan restify:setup

Generate repository:

php artisan restify:repository UserRepository --all

Now you have the REST CRUD over users and this beautiful repository:

Now you can go into Postman and check it out:

GET: http://laravel.test/api/restify/users
POST: http://laravel.test/api/restify/users
GET: http://laravel.test/api/restify/users/1
PUT: http://laravel.test/api/restify/users/1
DELETE: http://laravel.test/api/restify/users/1

Usage

See the official documentation.

Testing

composer test

Changelog

Please see CHANGELOG for more information what has changed recently.

Contributing

Please see CONTRIBUTING for details.

Security

If you discover any security related issues, please email [email protected] instead of using the issue tracker.

Credits

License

The MIT License (MIT). Please see License File for more information.

About

The fastest way to make a powerful JSON:API compatible Rest API with Laravel.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • PHP 99.9%
  • Blade 0.1%