selikhovleonid/nadir-skeleton

Nadir PHP Microframework Skeleton

1.0.1 2017-11-23 18:23 UTC

This package is not auto-updated.

Last update: 2024-05-12 02:29:02 UTC


README

Nadir Microframework Project Skeleton

Latest Stable Version Latest Unstable Version License PHP from Packagist

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