Yii 2 API Project Template

v1.0.1 2019-06-27 12:14 UTC

This package is auto-updated.

Last update: 2024-04-16 03:31:39 UTC


README

REQUIREMENTS

The minimum requirement by this project template that your Web server supports PHP 7.2.0.

CREATE NEW PROJECT USING TEMPLATE

Install via Composer

If you do not have Composer, you may install it by following the instructions at getcomposer.org.

composer create-project --prefer-dist damidev/yii2-api api

INSTALLATION

If you do not have Composer, you may install it by following the instructions at getcomposer.org.

You can then install this site using the following command:

php composer.phar install
php yii migrate

In composer.json we have postInstall script which setup permissions on files and folders. But if php script itself can't change his own files and folders, you have to change permissions yourself.

  • runtime/ - folder for caching and logging
  • web/assets/ - folder for caching js and css
  • yii - executable for running terminal scripts (on windows machine yii.bat should be executable too, I guess)

Endpoint dev checklist

  • create model
  • create resource model
  • create controller or/and action
  • define verbs
  • add AccessControl rule?
  • API documentation of request (by actions annotation)
  • API documentation of response (inside definitions)
  • API documentation of resource (by resource's annotation)