langaner/phalcon-micro-starter

Starter for Phalcon micro framework

dev-master 2017-07-08 05:23 UTC

This package is not auto-updated.

Last update: 2024-11-05 17:04:42 UTC


README

Latest Stable Version Total Downloads Latest Unstable Version License

A Skeleton project what include jwt token authentication.

How to install

Run composer create-project langaner/phalcon-micro-starter project-directory --prefer-source or download zip.

Folders

Controllers - all your app controllers

Middleware - collection of middleware

Models - models folder

Presenters - presenters. You can use it by call it from model $this->userRepository->getModel()->getPresenter()->test

Providers - all app providers

Repositories - all repositoreis. You can use it by call $this->userRepository->test()

Services - all app services. You can use it by call $this->userService->test()

routes - all routes. You can separate it to files or write all in routes.php

Routes

http://servarname.server/auth/login - login route. This route provide user auth return his token. All routes protected with AuthMiddleware. Auth settings located in auth config file.

Bindings

To use repositories, services, presenters you must register binding in AppProvider to it.

Examples:

Repository - $this->bindRepository('userRepository', UserRepository::class, [new UserModel]);

Service - $this->bindService('userService', UserService::class, [$this->getDi()->get('userRepository')]);

Presenter - $this->bindRepository('userPresenter', UserPresenter::class, [new UserModel]);