selikhovleonid / nadir2-skeleton
Nadir2 PHP Microframework Skeleton
2.0.1
2017-11-25 17:24 UTC
Requires
- php: >=7.1.0
- selikhovleonid/nadir2: 2.*
This package is not auto-updated.
Last update: 2024-11-10 06:12:22 UTC
README
Nadir2 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