Download the PHP package aaron-lin/app-php without Composer
On this page you can find all versions of the php package aaron-lin/app-php. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Informations about the package app-php
Lin/App-PHP
Installation
Usage
There are three types of supported PHP applications: RESTful App, CRUD App and Single Page App.
RESTful App
To build RESTful App, extend the Lin\AppPhp\Server\RestfulApp
class, and override the OnGet|OnPost|OnPut|OnDelete|OnPatch
methods.
For detailed example, see example/restful_app.php.
CRUD App
To build CRUD App which only accept POST
method and receive command from resource path, extend the Lin\AppPhp\Server\CrudApp
class, and override the OnCreate|OnRead|OnUpdate|OnDelete
methods.
For detailed example, see example/crud_app.select.php.
Single Page App
To build single page app, instanciate the Lin\AppPhp\Server\SinglePageApp
class, and pass the web page html code as string to the constructor, and call AddPostAction
method to add actions for receiving post requests.
For detailed example, see example/single_page_app.php.
Authorization
To implement authorization:
- create a class implementing
Lin\AppPhp\Authorization\AuthorizationInterface
interface, and implement theAuthorize($Token, $RequestScopes = [])
method - pass the instance to
WithAuthorization
method ofLin\AppPhp\Server\App
class - call
AuthorizeRequest
method ofLin\AppPhp\Server\App
class to check authorization
For OAuth2 authorization with JWT, use Lin\AppPhp\Authorization\OAuthAuthorization
class:
- create a class extending
Lin\AppPhp\Authorization\OAuthAuthorization
class, and implement theIsTokenRevoked($JTI)
method - pass the instance to
WithAuthorization
method ofLin\AppPhp\Server\App
class - call
AuthorizeRequest
method ofLin\AppPhp\Server\App
class to check authorization
All versions of app-php with dependencies
nyholm/psr7 Version ^1.5
firebase/php-jwt Version ^6.4
psr/http-server-handler Version ^1.0
nyholm/psr7-server Version ^1.1