cdgco/php-rest-service

PHP REST Service is a simple and fast PHP class for server side RESTful APIs.

v0.2.4 2023-04-27 00:27 UTC

This package is auto-updated.

Last update: 2024-03-27 06:00:01 UTC


README

PHP REST Service is a simple and fast PHP class for RESTful JSON APIs.

Build Status PHP Version Package Version License

https://cdgco.github.io/php-rest-service

Features

  • Easy to use syntax
  • Regular Expression support
  • Error handling through PHP Exceptions
  • JSON, XML, and plain text responses
  • Automatic OpenAPI specification generation
  • Parameter validation through PHP function signature
  • Can return a summary of all routes or one route through OPTIONS method based on PHPDoc (if OPTIONS is not overridden)
  • Support of GET, POST, PUT, DELETE, PATCH, HEAD and OPTIONS
  • Suppress the HTTP status code with ?_suppress_status_code=1 (for clients that have troubles with that)
  • Supports custom error handling, logging, access control and response formatting functions.
  • Supports ?_method=httpMethod as addition to the actual HTTP method.
  • With auto-generation through PHP's reflection

Requirements

  • PHP 7.4+ (Tested on PHP 7.4 - 8.2)

Installation

php composer require cdgco/php-rest-service

Demo

Manual Endpoint Creation

use RestService\Server;

Server::create('/')
  ->addGetRoute('test/(\D+)', function($param){
    return 'Yay!' . $param; // $param pulled from URL capture group
  })
  ->addPostRoute('foo', function($field1) {
    return 'Hello ' . $field1; // same as "return 'Hello ' . $_POST('field1');"
  })
  ->addGetRoute('use/this/name', function(){
      return 'Hi there';
  })
->run();

Automatic Endpoint Creation

namespace MyRestApi;

use RestService\Server;

class Admin {
  /*
   * @url /test/(\d+)
   */
  public function getTest($param) {
    return 'Yay!' . $param; // $param pulled from URL capture group
  }
  public function postFoo($field1){
    return 'Hello ' . $field1; // same as "return 'Hello ' . $_POST('field1');"
  }
  /*
   * @url /use/this/name
   */
  public function getNotThisName($field1){
    return 'Hi there';
  }
}

Server::create('/', 'myRestApi\Admin')
    ->collectRoutes()
->run();

Both methods will generate the following endpoints:

+ GET  /test/:param
+ POST /foo
+ GET  /use/this/name

Documentation

Read the full documentation at https://cdgco.github.io/php-rest-service.

License

Licensed under the MIT License. See the LICENSE file for more details.