kinbalam / cakephp-restapi
RestAPI plugin for CakePHP
Installs: 14
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 1
Type:cakephp-plugin
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: 2025-03-17 20:43:14 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