Evolution over Convention • Structure meets Speed • Zero Configuration
I'm a passionate developer focused on creating modern, efficient solutions for the PHP ecosystem. Currently working on PivotPHP - The Evolutionary PHP Microframework, a framework that represents a paradigm shift in PHP development where structure meets speed.
- 🔭 I'm currently developing PivotPHP - Evolution over Convention
- 🌱 I'm exploring modern PHP practices, PSR standards, and reactive programming
- 👯 I'm looking to collaborate on open-source PHP projects
- 💬 Ask me about PHP, microframeworks, API development, and software architecture
- ⚡ Fun fact: PivotPHP is 2.9x faster than Slim 4 and 4.6x faster than Lumen!
Evolution over Convention - Where Structure meets Speed
PivotPHP represents a paradigm shift in PHP development - rapid adaptation with exceptional performance.
microframework
• php
• security
• api
• authentication
• cors
• router
• middleware
• express
• csrf
• xss
• jwt
• swagger
• openapi
⚡ Blazing Fast13.4K req/s 0.07ms latency |
🛡️ Security FirstCSRF Protected JWT Auth |
📐 Structure meets SpeedFull PSR PSR-7/11/12/14/15 |
🧬 EvolutionaryAdaptive Grows with you |
🏆 PivotPHP - The Evolutionary PHP Microframework is my flagship open source project, representing a paradigm shift in PHP development.
|
|
|
|
- 13,374 requests/second with average 0.07ms latency
- 2.9x faster than Slim 4, 4.6x faster than Lumen
- Optimized routing, caching, and middleware pipeline
- Built for high-throughput APIs and microservices
- 🎯 Express.js-inspired API - Familiar syntax for rapid development
- 🛡️ Security First - CSRF, XSS, Rate Limiting, JWT, API Key protection by default
- 📦 Full PSR Compliance - PSR-7, PSR-11, PSR-12, PSR-14, PSR-15 standards
- 🔌 Truly Extensible - Plugin system, Service Providers, Event System
- 🚀 ReactPHP Ready - Built-in asynchronous capabilities
- 📝 Auto Documentation - OpenAPI/Swagger generation
- 🧬 Evolution over Convention - Adapts to your needs, not the other way around
- 🧪 Battle-Tested - 270+ tests, PHPStan Level 9, 100% code coverage
Express-PHP → PivotPHP: What started as a simple Express.js-inspired prototype evolved into "The Evolutionary PHP Microframework" - where structure meets speed. PivotPHP represents a paradigm shift: frameworks should adapt to your project, not force your project to adapt to them.
┌─────────────────┬─────────────┬──────────────┬─────────────┐
│ Framework │ Requests/s │ Latency │ Comparison │
├─────────────────┼─────────────┼──────────────┼─────────────┤
│ PivotPHP │ 13,374 │ 0.07ms │ Baseline │
│ Slim 4 │ 4,612 │ 0.22ms │ 2.9x slower │
│ Lumen │ 2,906 │ 0.34ms │ 4.6x slower │
└─────────────────┴─────────────┴──────────────┴─────────────┘
- pivotphp/core - The main framework
- pivotphp/cycle-orm - Robust ORM integration with type safety
- Documentation - Complete guides and API reference
- Performance Report - Detailed benchmarks
<?php
// PivotPHP - The Evolutionary PHP Microframework
use PivotPHP\Core\Core\Application;
$app = new Application();
// That's it! Security middleware is already active by default
// Create a blazing fast API
$app->get('/api/users/:id', fn($req, $res) =>
$res->json(['user_id' => $req->param('id')])
);
// Advanced route validation with zero configuration
$app->get('/posts/:year<\d{4}>/:month<\d{2}>/:slug', fn($req, $res) =>
$res->json($req->params())
);
$app->run(); // 13.4K requests/second performance
🚀 Real Performance: While others promise, PivotPHP delivers. 13,374 requests/second with 0.07ms latency in real benchmarks.
composer require pivotphp/core
Project | Description | Technologies | Status |
---|---|---|---|
PivotPHP | The Evolutionary PHP Microframework - Evolution over Convention, Structure meets Speed | PHP 8.1+, PSR Standards, ReactPHP |
Project | Description | Technologies | Status |
---|---|---|---|
Whisper Insights | Plataforma avançada para transcrição de áudio, diarização de locutores e extração de insights | AI/ML, Audio Processing | |
Express PHP | Microframework PHP ultraleve - Evoluiu para PivotPHP: The Evolutionary PHP Microframework | PHP, Express.js concepts | |
Varion | Projeto inovador em desenvolvimento | 🚧 In Progress | |
API REST Digimon | API REST com validação JWT para gerenciamento de dados | PHP, JWT, REST |
- 🔨 Developing PivotPHP v1.0.2 with enhanced performance optimizations
- 📝 Writing comprehensive documentation and tutorials
- 🐛 Implementing community-requested features
- 🤝 Reviewing pull requests and fostering community growth
- 🧬 Evolving the framework based on real-world usage patterns
I'm always interested in:
- 🤝 Collaborating on innovative PHP projects
- 📚 Sharing knowledge about modern PHP development
- 🌐 Contributing to the open-source community
- 💼 Freelance projects and consulting opportunities
- 🧬 Growing the PivotPHP ecosystem
- 💡 Discussing "Evolution over Convention" philosophy
Check out our contribution guide and join the evolution!
composer require pivotphp/core
⭐️ From [CAFernandes](https://github.com/CAFernandes) with ❤️