arpon / framework
A high-performance, lightweight PHP MVC framework core designed for simplicity and speed.
1.0.0
2026-02-03 08:04 UTC
Requires
- php: ^8.3
- ext-curl: *
- ext-json: *
- ext-mbstring: *
- ext-openssl: *
- ext-pdo: *
- symfony/console: ^6.4
Requires (Dev)
- mockery/mockery: ^1.6
- phpunit/phpunit: ^12.5
This package is auto-updated.
Last update: 2026-03-10 15:25:41 UTC
README
A high-performance, lightweight PHP MVC framework core designed for simplicity and speed.
Features
- Lightweight & Fast: Minimal overhead for maximum performance.
- Routing: Clean and expressive routing engine.
- Eloquent-like ORM: Intuitive database interactions.
- Dependency Injection: Powerful IoC container.
- Console: Built-in CLI for scaffolding and tasks.
- Auth & Security: Robust authentication and encryption systems.
- Cache & Session: Multiple drivers for efficient data handling.
- Mailing: SMTP and Mailgun support out of the box.
Requirements
- PHP 8.1 or higher
- JSON Extension
- MBString Extension
- OpenSSL Extension
- PDO Extension
- CURL Extension (for Mailgun)
Installation
Install via Composer:
composer require arponascension1/arpon-framework
Usage
Example of a basic route:
use Arpon\Support\Facades\Route; Route::get('/', function () { return 'Hello, Arpon!'; });
Author
Arpon - GitHub
License
This project is licensed under the MIT License - see the LICENSE file for details.