Download the PHP package docnet/php-japi without Composer

On this page you can find all versions of the php package docnet/php-japi. 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 php-japi

Build Status Coverage Status

PHP JSON API Library

Version 2 of our library for building HTTP JSON APIs in PHP.

Some major changes in version 2

As we expand our Service Orientated Architecture (SOA) at Docnet, we're using this more and more - so I hope it's useful to someone else ;)

Intended to use HTTP status codes wherever possible for passing success/failure etc. back to the client.

Single Responsibility Controller

We've adopted a new (for us) take on routing and controller complexity in 2.0. As such, where previously, you might have had multiple actions (methods) on the same class like this:

Now this would be 4 name-spaced classes, like this

This allows for

You can still share common code via extension/composition - whatever takes your fancy!

JAPI will call the dispatch() method on your controller.

SOLID Routing

The bundled router will accept any depth of controller namespace, like this

When you construct the Router, you can give it a "root" namespace, like this:

Which results in this routing:

Static Routes

If you have some static routes you want to set up, that's no problem - they also bypass the routing regex code and so make calls very slightly faster.

Add a single custom route

Or set a load of them

Installation

Here's the require line for Composer users (during 2-series development)...

"docnet/php-japi": "2.0.*@dev"

...or just download and use the src folder.

Bootstrapping

Assuming...

...then something like this is all the code you need in your index.php

See the examples folder for a working demo (api.php).

Coding Standards

Desired adherence to PSR-2. Uses PSR-3 logging.


All versions of php-japi with dependencies

PHP Build Version
Package Version
Requires php Version >=5.3.0
ext-json Version *
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 docnet/php-japi contains the following files

Loading the files please wait ....