dev-master
9999999-dev https://github.com/gonzalo123/restSimple REST crud server.
MIT
The Requires
rest crud http
Wallogit.com
2017 © Pedro Peláez
Simple REST crud server.
Simple REST crud server., (*1)
model objects will share the interface:, (*3)
<?php
namespace Rest;
use \Symfony\Component\HttpFoundation\Request;
interface Iface
{
public function __construct($id, \PDO $pdo);
public function get();
public function delete();
public function update(Request $request);
public function create(Request $request);
public static function getAll(Request $request);
}
initialize the server mapping the model to the real class names:, (*4)
<?php
// index.php
use Rest\App;
$app = App::create(new \PDO('sqlite::memory:'));
$app->register('dogs', '\App\Dogs');
$app->register('cats', '\App\Cats');
$app->getResponse()->send();
The server will handle GET request to get(), DELETE to delete(), POST to update() and CREATE to create()., (*5)
If we perform a GET request without id (null) then the static getAll is raised, (*6)
Simple REST crud server.
MIT
rest crud http