ppeco / apipp
Library for api backend
Installs: 28
Dependents: 1
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
pkg:composer/ppeco/apipp
Requires
- php: >=8.0
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();