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

v1.0.0 2025-12-18 13:51 UTC

This package is auto-updated.

Last update: 2025-12-18 14:13:53 UTC


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

  1. Copy .env.example to .env
  2. Update database credentials
  3. 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