selikhovleonid / nadir-skeleton
Nadir PHP Microframework Skeleton
Installs: 13
Dependents: 0
Suggesters: 0
Security: 0
Stars: 1
Watchers: 1
Forks: 0
Open Issues: 1
pkg:composer/selikhovleonid/nadir-skeleton
Requires
- php: >=5.3.0
- selikhovleonid/nadir: 1.*
This package is not auto-updated.
Last update: 2025-10-12 10:13:12 UTC
README
Nadir Microframework Project Skeleton
Project structure
The prepared project template has the following structure after installing:
├── cli
│ └── cli.php
├── composer.json
├── composer.lock
├── config
│ └── main.php
├── controllers
│ ├── Cli.php
│ ├── System.php
│ └── Test.php
├── extensions
│ └── core
│ ├── AbstractAuth.php
│ ├── AbstractModel.php
│ ├── Auth.php
│ ├── Process.php
│ └── SystemCtrlInterface.php
├── LICENSE
├── models
│ └── Test.php
├── README.md
├── vendor
├── views
│ ├── layouts
│ │ └── main.php
│ ├── snippets
│ │ └── topbar.php
│ └── views
│ ├── system
│ │ ├── page401.php
│ │ ├── page403.php
│ │ └── page404.php
│ └── test
│ └── default.php
└── web
└── index.php