Download the PHP package klisica/api-formula without Composer
On this page you can find all versions of the php package klisica/api-formula. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download klisica/api-formula
More information about klisica/api-formula
Files in klisica/api-formula
Package api-formula
Short Description Laravel API architecture builder based on artisan commands.
License MIT
Informations about the package api-formula
🧑🔬 API-Formula
Laravel API architecture builder based on artisan commands.
This package provides a nice and fluent way to generate combined controllers, models, migrations, requests, resources, repositories and services, thus keeping the code well structured and organized.
Installation
Install the package with composer, execute the setup command and register the RepositoryServiceProvider.php
file in config > app.php
under the providers
array.
Next, in routes > api.php
add // @API_FORMULA_AUTOIMPORT
comment in order to enable auto importing of resource routes. For example, I like to bind the importing in middleware group:
To publish the config file run:
Usage
⭐ To start the API builder run the following command:
To manually create specific file you can use one of these commands:
Other external packages used with this package:
Filtering and sorting on models
Each model is using a custom Filterable trait, which is handling simple query-based filtering and sorting functions on models.
- Filters are accepted in format
column[operator]=value
. - To filter by relations the format is
relationName|column[operator]=value
(note the|
separator in between). - Free-text filter is by default
_text
query parameter.
JSON example:
Raw URL-Query example:
All versions of api-formula with dependencies
goldspecdigital/laravel-eloquent-uuid Version ^8.0
laracasts/generators Version ^2.0