kinbalam / cakephp-restapi
RestAPI plugin for CakePHP
Package info
github.com/suiz0/cakephp-restapi
Type:cakephp-plugin
pkg:composer/kinbalam/cakephp-restapi
dev-master / 0.5.x-dev
2021-05-08 02:24 UTC
Requires
- cakephp/authentication: 1.1.x
- cakephp/cakephp: ^3.7.0
- firebase/php-jwt: ^5.2
Requires (Dev)
- phpunit/phpunit: ^5.7.14|^6.0
This package is auto-updated.
Last update: 2026-02-17 22:36:20 UTC
README
Installation
Composer
You can install this plugin into your CakePHP application using composer:
composer require kinbalam/capephp-restapi:dev-master
Manual
Clone or copy the plugin code into your plugins directory.
git clone https://github.com/suiz0/cakephp-restapi.git
Update composer.json
{
"autoload": {
"psr-4": {
"Kinbalam\\RestAPI\\": "plugins/Kinbalam/RestAPI/src/"
}
},
"autoload-dev": {
"psr-4": {
"Kinbalam\\RestAPI\\Test\\": "plugins/Kinbalam/RestAPI/tests/"
}
}
}
Load the plugin your Application bootstrap method
src\Application.php
public function bootstrap()
{
$this->addPlugin('Kinbalam/RestAPI');
}
Todo
- Stable version
- Further testing