The minimum requirement by this project template that your Web server supports PHP 7.2.0.
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
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 loggingweb/assets/
- folder for caching js and cssyii
- executable for running terminal scripts (on windows machine yii.bat should be executable too, I guess)
- 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)