An open API service indexing awesome lists of open source software.

https://github.com/md-aamroni/rest-api-in-php

A simple application which is build with Object Oriented Design Pattern in Core PHP 7.4
https://github.com/md-aamroni/rest-api-in-php

api-authorization api-client api-credentials authorizaion-in-php php-oop-rest-api rest-api restapi-in-php restful-api

Last synced: 10 months ago
JSON representation

A simple application which is build with Object Oriented Design Pattern in Core PHP 7.4

Awesome Lists containing this project

README

          

## RESTFUL API in PHP
![RESTful API Workflow](./public/restapi.png)

```bash
$ composer update
```

```php

require_once './vendor/autoload.php';
require_once 'config/app.php';

use App\Http\Controllers\ApiController;

$api = new ApiController();

route('posts', $api->index(), function ($data) {
arrayResponse($data);
});

route('post', $api->show(2), function ($data) {
arrayResponse($data);
});
```