https://github.com/zonblade/phpr
new PHP Framework on development.
https://github.com/zonblade/phpr
framework php php-framework php7
Last synced: 3 months ago
JSON representation
new PHP Framework on development.
- Host: GitHub
- URL: https://github.com/zonblade/phpr
- Owner: zonblade
- License: cc0-1.0
- Created: 2021-10-23T04:29:17.000Z (almost 4 years ago)
- Default Branch: master
- Last Pushed: 2021-12-26T09:17:13.000Z (almost 4 years ago)
- Last Synced: 2025-07-17T15:58:01.594Z (3 months ago)
- Topics: framework, php, php-framework, php7
- Language: PHP
- Homepage: https://retas.dev
- Size: 160 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
- License: LICENSE
Awesome Lists containing this project
README
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](https://docs.djangoproject.com/en/3.2/topics/http/urls/) 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.
- [x] Project Initiator : [zonblade](https://instagram.com/zonblade)
- [x] System Inspiration : [Django](https://docs.djangoproject.com/)```
currently under intense development,
not recomended to use current version.
version 6 LTS release might delayed,
due to project overload.
```## Basic Folder Structure
```bash
├── 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!)
```