Download the PHP package zulfajuniadi/php-rest-server without Composer

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

PHP REST Server

You can read the introduction on my blog.

Features

  1. Automatically generated resources (tables and table structure) based on incomming data.
  2. Routes are automatically generated from the database. Apart from the initial config.php edit, you won't need to modify the code.
  3. Supports multiple databases MySQL 5+ SQLite 3.6.19+ PostgreSQL 8+ CUBRUD.
  4. Can be accessed in subdirectories (Does not have to be located on a different vhost / webroot)
  5. Simple ACL System
  6. Supports where, limit, order queries
  7. Pure JSON API Server. User does not need to use the emulate_http in Backbone.js or other similar front-end frameworks
  8. Lightweight. Response around 10 - 20 ms per request under untweaked PHP.

Installation

  1. Install Composer.
  2. Create a new project by running:
  3. Alternatively you can download and extract / clone this repo into your htdocs directory then run composer install --prefer-dist --no-dev
  4. Change the configs in config.php.default and rename it to config.php.
  5. Go To: http://yourapiserver/ to make sure everything is ok. The response should be something like this : {"error":false,"data":"OK","status":200}.

Usage

  1. Go To: http://yourapiserver/manage to manage your Api server.
  2. Create new package by going to http://[installationpath]/manage.
  3. Once created, the routes under http://[installationpath]/[packagename]/[resourcename] will be activated
  4. [resourcename] will be automatically generated for you.

Routes

  1. List Records >> (GET) http://[installationpath]/[packagename]/[tableName]
  2. Get One >> (GET) http://[installationpath]/[packagename]/[tableName]/[id]
  3. Create New >> (POST) http://[installationpath]/[packagename]/[tableName]
  4. Update >> (PUT) http://[installationpath]/[packagename]/[tableName]/[id]
  5. Delete >> (DELETE) http://[installationpath]/[packagename]/[tableName]/[id]

Example

Let's say you create an application (package) called 'uberpackage' and you want to retrieve all users. The request should be: http://api.uberapp.com/uberapp/users

List Records is subject to the default limit as in the Querying::order section below.

Querying

Queries are appended as query strings to the List Records (GET) request.

Where

Key : where

Example : ",23],["name","like","%adam">http://api.uberapp.com/uberapp/users?where=[["id",">",23],["name","like","%adam"]]

Generates : select all from users where id > 23 and name like '%adam';

Right now only 'and' is supported

Order

Key : order

Example : http://api.uberapp.com/uberapp/users?order=[["age","desc"],["name","asc"]]

Generates : select all from users order by age desc, name asc;

Note that if you did not pass the second parameter in an order array, it will default to asc. The following syntax is valid

http://api.uberapp.com/uberapp/users?order=[["age"]]

Generates : select all from users order by age asc;

Limit

Key : limit

Params : [$start,$length]

Example : http://api.uberapp.com/uberapp/users?limit=[0,25]

Generates : select all from users limit 0, 25;

By default, all queries will return only 25 rows, you can change the default limit in config.php $config['default_sql_limit'] variable

Chained

Queries can be chained as per example below:

Example : ",18]]&order=[["age","desc"],["name"]]&limit=[0,50">http://api.uberapp.com/uberapp/users?where=[["age",">",18]]&order=[["age","desc"],["name"]]&limit=[0,50]

Generates : select * from users where age > 18 order by age desc, name asc limit 0, 50;

Access Control List (ACL)

This REST service offers very simple ACL system where you can set ACL per package level. You can define whether any user are able to list (and query), create, update or remove a record in any combinations. You can also disable the whole package by unchecking the 'Enabled' checkbox in /manage.

List of HTTP Responses

Data Structure

The server responds in the following data format:

Rate Limiting

You can set a limit on the number of request a user can make. The requests are set per package, per user, per hour. Upon hitting the limit, the REST Service will return a 503 Service Unavailable HTTP Error. Refer to the response headers Api-Utilization and Api-Limit To view the utilized requests in the current hour and the limit set on the package respectivly.

Authentication Token

A token can be generated via the management page. Once generated and tagged to a resource. All request with invalid or missing Auth-Token header, will directly return a 403 Forbidden HTTP Error.

Sample Backbone Auth Token Implementation

The below example demonstrates usage of the 'Auth-Token' header.

Example Usage

View the templates/_manage.html and js/manage.js to view API usage with Backbone.js

Todos

  1. Auto sync (Client data to be persistant on client side, can sync automatically from the server when there are new data)

All versions of php-rest-server with dependencies

PHP Build Version
Package Version
Requires php Version >=5.3.0
slim/slim Version 2.4.0
entomb/slim-json-api Version dev-master
gabordemooij/redbean Version v3.5.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 zulfajuniadi/php-rest-server contains the following files

Loading the files please wait ....