Download the PHP package z1lab/laravel-json-api without Composer

On this page you can find all versions of the php package z1lab/laravel-json-api. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.

FAQ

After the download, you have to make one include require_once('vendor/autoload.php');. After that you have to import the classes with use statements.

Example:
If you use only one package a project is not needed. But if you use more then one package, without a project it is not possible to import the classes with use statements.

In general, it is recommended to use always a project to download your libraries. In an application normally there is more than one library needed.
Some PHP packages are not free to download and because of that hosted in private repositories. In this case some credentials are needed to access such packages. Please use the auth.json textarea to insert credentials, if a package is coming from a private repository. You can look here for more information.

  • Some hosting areas are not accessible by a terminal or SSH. Then it is not possible to use Composer.
  • To use Composer is sometimes complicated. Especially for beginners.
  • Composer needs much resources. Sometimes they are not available on a simple webspace.
  • If you are using private repositories you don't need to share your credentials. You can set up everything on our site and then you provide a simple download link to your team member.
  • Simplify your Composer build process. Use our own command line tool to download the vendor folder as binary. This makes your build process faster and you don't need to expose your credentials for private repositories.
Please rate this library. Is it a good library?

Informations about the package laravel-json-api

Installation

Define .env keys:

CACHE_LIFETIME for set the default cache lifetime.

PAGINATION_SIZE for define the page size of collection results (Ex: GET index method).

PS: This package manipulate the cache using Cache::tags() so change the the CACHE_DRIVER to redis or memcache and install the required dephs. By default the predis/predis is included on the composer.json.

Introduction

Laravel Json Api is a minimal library for normalize Laravel Apps to return Json Api results.

Before start take a look in the Json API Spec.

This package takes advantage of Laravel Eloquent Api Resources and some simple dependencies for improve the Json API pattern:

API Version Control

API Exception Handler

CORS Middleware

HTTP Cache

After starts, check the packages official docs for the default configuration of each one.

Usage

Just extends the required classes and apply the error handling.

Error handling

Change the render() method in the App\Exceptions\Handler:

API Controllers

In your controller class just extends the ApiController and set the constructor according the following example:

The fist parameter sets the repository for access the datasets; The second parameter defines the namespace to JsonResource class.

The ApiController extends all base methods from Laravel BaseController and delivery the initial methods for your ApiResourceController:

public function index() {}

public function show(string $id) {}

public function destroy(string $id) {}

public function makeResource($obj) {}

public function collectResource($collection) {}

You only have to implement the store() and update() methods with your FormRequest rules.

Api FormRequests

For optimal handle errors in yours FormRequests Just extends the ApiFormRequest class:

Api Repositories

In your repository class just extends the ApiRepository and set the constructor according the following example:

The fist parameter sets the model for access the data; The second parameter defines the cache prefix name.

The ApiRepository delivery some common methods for you handle your data accross the app.

public function create(array $data) {}

public function update(array $data, string $id) {}

public function destroy(string $id) {}

public function find(string $id, array $with = []) {}

public function list(int $items = 0) {}

public function findWhere(string $column, $value, array $with = []) {}

public function all(array $keys = []) {}

License

Laravel Json Api is open-sourced software licensed under the MIT license.


All versions of laravel-json-api with dependencies

PHP Build Version
Package Version
Requires php Version >=7.1.3
barryvdh/laravel-httpcache Version ^0.3.4
barryvdh/laravel-cors Version ^0.11.2
optimus/heimdal Version ~1.0
illuminate/contracts Version 5.8.*
illuminate/http Version 5.8.*
illuminate/routing Version 5.8.*
illuminate/support Version 5.8.*
illuminate/validation Version 5.8.*
juampi92/api-resources Version 1.2.*
predis/predis Version ^1.1
Composer command for our command line client (download client) This client runs in each environment. You don't need a specific PHP version etc. The first 20 API calls are free. Standard composer command

The package z1lab/laravel-json-api contains the following files

Loading the files please wait ....