Download the PHP package hackerboy/json-api without Composer

On this page you can find all versions of the php package hackerboy/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 json-api

Current version: 2.x

Packagist: hackerboy/json-api

Making JSON API implementation (server side) easiest for you

Install

Run examples:

Then config your localhost nginx/apache to access [LOCALHOST_PATH]/examples/index.php

Table of Contents

How to use?

Create your resource schema

Mapping your id, type, attributes from your model objects by creating Schema classes. Inside the Schema class, you can retrieve your model object through $this->model. For example, I'm gonna talk in a Laravel project context. Firstly, let's create a resource file: /app/Http/JsonApiResources/UserResource.php

Configuration and mapping your resources

Now we can easily generate a JSON API document object like this:

Document methods

The difference between "set methods" and "add methods" are is: "Set methods" will override the data while "add methods" will append to data.

Available "set" methods from $document object are:

Available "get" methods from $document object are:

Available "add" methods from $document object are:

Example:

Implement relationships

Simply return an array in getRelationships() method

Set data as relationships

Second param allows you to set data as relationship (for request like: /api/posts/1/relationships/comments)

toArray() and toJson() methods

New methods in v1.1. Available for document, elements and resources

Easily create elements for your document

Suppose that we created a $document object

Create errors

Create links

Create other elements

It'll work the same way, available methods are:

You can see more examples in /examples/index.php

Document Query

New feature in v2, now you can make query to find resources (HackerBoy\JsonApi\Abstracts\Resource) in a document by using $document->getQuery() method. $document->getQuery() return an instance of Laravel Illuminate\Support\Collection (Check the link for full document of querying methods).

Objects returned by query are \HackerBoy\JsonApi\Abstracts\Resource

Example of document query

Client-Side usages

Flexible document and resources

Example of flexible document

Parse from string or array

Parse from string


All versions of json-api with dependencies

PHP Build Version
Package Version
Requires php Version >=7.1.0
art4/json-api-client Version ^1.0
illuminate/support Version ^5.0 || ^6.0 || ^7.0 || ^8.0 || ^9.0
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 hackerboy/json-api contains the following files

Loading the files please wait ....