genproframework / skeleton
GenPro Framework Skeleton Application
Installs: 0
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 0
Forks: 0
Open Issues: 0
Type:project
pkg:composer/genproframework/skeleton
Requires
- php: >=8.1
- genproframework/framework: ^1.0
README
A modern PHP framework skeleton for building web applications.
Requirements
- PHP >= 8.1
- Composer
Installation
composer create-project genproframework/skeleton myapp
cd myapp
Configuration
- Copy
.env.exampleto.env - Update database credentials
- Configure your application settings
Directory Structure
├── public_html/ # Web root
│ └── index.php # Entry point
├── src/
│ ├── application/ # Application code
│ │ ├── backend/ # Backend modules
│ │ └── frontend/ # Frontend modules
│ └── configs/ # Configuration files
├── cache/ # Cache directory
├── logs/ # Log files
└── vendor/ # Composer dependencies
Quick Start
// src/application/backend/modules/home/controller.php class HomeController extends \GenProFramework\Abstracts\ControllerAbstract { public function index() { $this->assign('title', 'Welcome'); $this->show('index', true); } }
License
MIT License