├── README.md ├── RestapiModule.php ├── components ├── CommonRest.php ├── RestApiAccessControl.php ├── RestApiUserIdentity.php └── RestUrlRule.php ├── controllers └── ApiController.php ├── migrations └── m111118_024648_create_api_users.php └── models └── ApiUsers.php /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmoey/yii-restapi/HEAD/README.md -------------------------------------------------------------------------------- /RestapiModule.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmoey/yii-restapi/HEAD/RestapiModule.php -------------------------------------------------------------------------------- /components/CommonRest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmoey/yii-restapi/HEAD/components/CommonRest.php -------------------------------------------------------------------------------- /components/RestApiAccessControl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmoey/yii-restapi/HEAD/components/RestApiAccessControl.php -------------------------------------------------------------------------------- /components/RestApiUserIdentity.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmoey/yii-restapi/HEAD/components/RestApiUserIdentity.php -------------------------------------------------------------------------------- /components/RestUrlRule.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmoey/yii-restapi/HEAD/components/RestUrlRule.php -------------------------------------------------------------------------------- /controllers/ApiController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmoey/yii-restapi/HEAD/controllers/ApiController.php -------------------------------------------------------------------------------- /migrations/m111118_024648_create_api_users.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmoey/yii-restapi/HEAD/migrations/m111118_024648_create_api_users.php -------------------------------------------------------------------------------- /models/ApiUsers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmoey/yii-restapi/HEAD/models/ApiUsers.php --------------------------------------------------------------------------------