No description
  • PHP 87.2%
  • Blade 11.5%
  • Dockerfile 0.6%
  • JavaScript 0.6%
Find a file
2026-02-24 16:12:53 +04:00
app feat: initial commit 2026-02-24 16:02:19 +04:00
bootstrap feat: initial commit 2026-02-24 16:02:19 +04:00
config feat: initial commit 2026-02-24 16:02:19 +04:00
database feat: initial commit 2026-02-24 16:02:19 +04:00
lang feat: initial commit 2026-02-24 16:02:19 +04:00
public feat: initial commit 2026-02-24 16:02:19 +04:00
resources feat: initial commit 2026-02-24 16:02:19 +04:00
routes feat: initial commit 2026-02-24 16:02:19 +04:00
storage feat: initial commit 2026-02-24 16:02:19 +04:00
tests feat: initial commit 2026-02-24 16:02:19 +04:00
.dockerignore feat: initial commit 2026-02-24 16:02:19 +04:00
.env.example feat: initial commit 2026-02-24 16:02:19 +04:00
.gitattributes feat: initial commit 2026-02-24 16:02:19 +04:00
.gitignore feat: initial commit 2026-02-24 16:02:19 +04:00
.php-cs-fixer.php feat: initial commit 2026-02-24 16:02:19 +04:00
artisan feat: initial commit 2026-02-24 16:02:19 +04:00
composer.json feat: initial commit 2026-02-24 16:02:19 +04:00
composer.lock feat: initial commit 2026-02-24 16:02:19 +04:00
Dockerfile fix: add caching to dockerfile 2026-02-24 16:12:53 +04:00
entrypoint.sh fix: add caching to dockerfile 2026-02-24 16:12:53 +04:00
LICENSE feat: initial commit 2026-02-24 16:02:19 +04:00
package-lock.json feat: initial commit 2026-02-24 16:02:19 +04:00
package.json feat: initial commit 2026-02-24 16:02:19 +04:00
phpstan.neon feat: initial commit 2026-02-24 16:02:19 +04:00
phpunit.xml.dist feat: initial commit 2026-02-24 16:02:19 +04:00
postcss.config.js feat: initial commit 2026-02-24 16:02:19 +04:00
README.md feat: initial commit 2026-02-24 16:02:19 +04:00
tailwind.config.js feat: initial commit 2026-02-24 16:02:19 +04:00
vite.config.js feat: initial commit 2026-02-24 16:02:19 +04:00

Build Status Total Downloads Latest Stable Version License

Introduction

Hypervel is a Laravel-style PHP framework with native coroutine support for ultra-high performance.

Hypervel ports many core components from Laravel while maintaining familiar usage patterns, making it instantly accessible to Laravel developers. The framework combines the elegant and expressive development experience of Laravel with the powerful performance benefits of coroutine-based programming. If you're a Laravel developer, you'll feel right at home with this framework, requiring minimal learning curve.

This is an ideal choice for building microservices, API gateways, and high-concurrency applications where traditional PHP frameworks often encounter performance constraints.

Why Hypervel?

While Laravel Octane impressively enhances your Laravel application's performance, it's crucial to understand the nature of modern web applications. In most cases, the majority of latency stems from I/O operations, such as file operations, database queries, and API requests.

However, Laravel doesn't support coroutines - the entire framework is designed for a blocking I/O environment. Applications heavily dependent on I/O operations will still face performance bottlenecks. Consider this scenario:

Imagine building an AI-powered chatbot where each conversation API takes 3-5 seconds to respond. With 10 workers in Laravel Octane receiving 10 concurrent requests, all workers would be blocked until these requests complete.

You can see benchmark comparison between Laravel Octane and Hypervel

Even with Laravel Octane's improvements, your application's concurrent request handling capacity remains constrained by I/O operation duration. Hypervel addresses this limitation through coroutines, enabling efficient handling of concurrent I/O operations without blocking workers. This approach significantly enhances performance and concurrency for I/O-intensive applications.

See this issue for more discussions.

Documentation

https://hypervel.org/docs

Hypervel provides comprehensive and user-friendly documentation that allows you to quickly get started. From this documentation, you can learn how to use various components in Hypervel and understand the differences between this framework and Laravel.

Most of the content in this documentation is referenced from the official Laravel documentation. We appreciate the Laravel community's contributions.

License

The Hypervel framework is open-sourced software licensed under the MIT license.