rockielin / yii2-basic-restful-api-template
Simple web api with Yii2 basic template
Installs: 71
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 2
Forks: 0
Open Issues: 0
Type:project
Requires
- php: >=5.4.0
- yiisoft/yii2: >=2.0.6
- yiisoft/yii2-bootstrap: *
- yiisoft/yii2-jui: *
- yiisoft/yii2-swiftmailer: *
Requires (Dev)
This package is auto-updated.
Last update: 2025-03-06 19:00:22 UTC
README
Simple web api
Basic web api using POST or GET method with json response
INSTALLATION
You can choose to install the application using one of the following methods.
Install via Composer
If you do not have Composer, you may install it by following the instructions at getcomposer.org.
You can then install the application using the following command:
php composer.phar global require "fxp/composer-asset-plugin:~1.1"
php composer.phar create-project --prefer-dist --stability=dev rockielin/yii2-basic-restful-api-template project-name
Enable debug:
create file "develop.me" in /config/
Request:
all request using POST or GET method.
POST parameter validate using in controller:
$this->checkParms(["parm1", "parm2",.....]);
Response:
success reqponse format:
{"data":json object,"status":200}
error reqponse format:
{"data":"message","status":status code}
example of error output:
throw new \yii\web\HttpException(401, "authentication failed!");