bytehunter / yii2-restful
Yii2 template focused solely on RESTful APIs development, with no control panel nor front end.
Installs: 36
Dependents: 0
Suggesters: 0
Security: 0
Stars: 1
Watchers: 1
Forks: 0
Open Issues: 2
Type:project
Requires
- php: >=7.1.0
- lcobucci/jwt: ^3.2
- yiisoft/yii2: ~2.0.10
- yiisoft/yii2-bootstrap: ~2.0.0
- yiisoft/yii2-shell: ^2.0
- yiisoft/yii2-swiftmailer: ~2.0.0
Requires (Dev)
- codeception/base: ^2.2.3
- codeception/verify: ~0.3.1
- yiisoft/yii2-debug: ~2.0.0
- yiisoft/yii2-faker: ~2.0.0
- yiisoft/yii2-gii: ~2.0.0
This package is not auto-updated.
Last update: 2025-03-29 02:02:23 UTC
README
This is a highly specialized Yii2 Template, which is focused mainly on RESTful API services development.
Be careful, this template has no frontend nor control panel so if you want those sections built-in go for the yii2-standard template or alternatively find it in Packagist: bytehunter/yii2-standard
DIRECTORY STRUCTURE
api
common/ contains common
config/ contains api configurations
modules/ contains api versions separated by modules
v1/ contains a major api version
controllers/ contains version specific api controllers
models/ contains version specific api models
runtime/ contains files generated during runtime
web/ contains the entry script
common
config/ contains shared configurations
mail/ contains view files for e-mails
models/ contains model classes used in both api and console
tests/ contains tests for common classes
console
config/ contains console configurations
controllers/ contains console controllers (commands)
migrations/ contains database migrations
models/ contains console-specific model classes
runtime/ contains files generated during runtime
vendor/ contains dependent 3rd-party packages
environments/ contains environment-based overrides