this is new repository for php-framework
Introduction
PHPR or PHP Array Framework is a framework highly dependent to an array structure. PHPR Framework uses URL Dispatcher type which looks like Django dispatcher. And PHPR bringing Modular type of framework into PHP framework world. Now, you dont need to set up everything from the start. Someone can give you only the apps and you're ready to go. Or, multiple development which each person working on 1 apps and compile into one.
Basic Folder Structure
├── assets
├── module
│ ├── .system
│ ├── apps
│ │ ├── your_apps_1
│ │ │ ├── subapps
│ │ │ │ ├── view.php
│ │ │ ├── urls.php
│ │ ├── your_apps_2
│ │ │ ├── subapps
│ │ │ │ ├── view.php
│ │ │ ├── urls.php
│ ├── root.php
│ ├── manage.php
│ ├── urls.php
│ └── settings.env
├── static
├── index.php
└── .htaccess (auto generated!)