kaiidenaadhil / corexphp
CoreXPHP MVC Framework
Package info
github.com/kaiidenaadhil/CoreXPHP-v2.0
Type:project
pkg:composer/kaiidenaadhil/corexphp
Requires
- php: >=8.0
- firebase/php-jwt: ^6.11
- phpmailer/phpmailer: ^6.9
README
The zero-overhead PHP framework engineered for speed and scale.
CoreXPHP is a revolutionary, zero-overhead PHP framework that eliminates configuration fatigue through intelligent schema detection and autonomous auto-wiring. Built from the ground up for absolute performance, it achieves sub-millisecond execution times while maintaining a strict, enterprise-grade MVC architecture.
Unlike traditional frameworks that rely on deep, memory-heavy namespace nesting, CoreXPHP utilizes direct Composer Classmap autoloading and runtime reflection. It is natively dual-purpose—perfect for serving Server-Side Rendered (SSR) web portals or stateless JSON APIs for modern JavaScript frontends (React/Vue).
✨ Key Features
- 0ms Overhead: Bypasses massive PSR-4 nesting arrays for direct Classmap autoloading.
- Cognitive ORM: Automatic
SHOW COLUMNSschema detection. No$fillableor$guardedarrays required. - Smart Auto-Wiring: The Router automatically injects dependencies (
Request,Response) via the PHP Reflection API. - Data Pipelines: Native CSV bulk import/export built directly into the Model layer.
- MERN-Style API Errors: Automatically intercepts API routes to prevent HTML stack traces, returning standardized JSON error contracts instead.
- Airtight Security: 100% SQL Injection immunity via automated PDO bindings, strict mass-assignment protection, and built-in Session Fixation prevention.
📦 Quick Start
CoreXPHP is incredibly lightweight. You can scaffold a completely functional, secure web application in seconds.
Installation
Use Composer to create a new CoreXPHP project:
composer create-project kaiidenaadhil/corexphp my-app