Skip to content

gonzalo123/rest

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Simple REST crud server.

Build Status

model objects will share the interface:

<?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:

<?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().

If we perform a GET request without id (null) then the static getAll is raised

About

Simple REST crud server.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published