ppeco/apipp

Library for api backend

1.1.1 2021-07-26 12:41 UTC

This package is auto-updated.

Last update: 2024-04-26 18:53:09 UTC


README

Library to simplify writing API

Installation

composer require ppeco/apipp

Example

use apipp\ApiPP;

require_once "vendor/autoload.php";

ApiPP::create()
    ->method("hello_world", function(ApiPP $apiKit) {
        return "Hello, world!";
    })
    ->method("hwp", function(ApiPP $apiKit) {
        [$someKey] = $apiKit->get(["key"]);
        return "Key: $someKey";
    })
    ->start();