langaner / phalcon-micro-starter
Starter for Phalcon micro framework
Installs: 11
Dependents: 0
Suggesters: 0
Security: 0
Stars: 1
Watchers: 3
Forks: 2
Open Issues: 0
Type:package
Requires
- firebase/php-jwt: ^5.0
- symfony/var-dumper: *
This package is not auto-updated.
Last update: 2024-11-05 17:04:42 UTC
README
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]);