{"id":31799530,"url":"https://github.com/hypervel/hypervel","last_synced_at":"2026-01-05T05:04:50.948Z","repository":{"id":283332135,"uuid":"951442215","full_name":"hypervel/hypervel","owner":"hypervel","description":"Hypervel is a Laravel-style framework with native coroutine support for ultra-high performance.","archived":false,"fork":false,"pushed_at":"2025-10-08T06:29:32.000Z","size":294,"stargazers_count":529,"open_issues_count":0,"forks_count":22,"subscribers_count":7,"default_branch":"main","last_synced_at":"2025-10-08T08:27:20.556Z","etag":null,"topics":["coroutine","framework","hyperf","laravel","php","swoole"],"latest_commit_sha":null,"homepage":"https://hypervel.org","language":"PHP","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/hypervel.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":".github/FUNDING.yml","license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null},"funding":{"ko_fi":"hypervel"}},"created_at":"2025-03-19T17:25:19.000Z","updated_at":"2025-10-08T06:29:35.000Z","dependencies_parsed_at":"2025-05-30T06:31:56.111Z","dependency_job_id":"78d6fec7-a6e2-403d-9a70-442590021b7f","html_url":"https://github.com/hypervel/hypervel","commit_stats":null,"previous_names":["hypervel/hypervel"],"tags_count":23,"template":false,"template_full_name":null,"purl":"pkg:github/hypervel/hypervel","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hypervel%2Fhypervel","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hypervel%2Fhypervel/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hypervel%2Fhypervel/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hypervel%2Fhypervel/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/hypervel","download_url":"https://codeload.github.com/hypervel/hypervel/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hypervel%2Fhypervel/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":279002635,"owners_count":26083425,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-10-10T02:00:06.843Z","response_time":62,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["coroutine","framework","hyperf","laravel","php","swoole"],"created_at":"2025-10-10T22:19:24.467Z","updated_at":"2025-10-10T22:19:25.479Z","avatar_url":"https://github.com/hypervel.png","language":"PHP","readme":"\u003cp align=\"center\"\u003e\u003ca href=\"https://hypervel.org\" target=\"_blank\"\u003e\u003cimg src=\"https://hypervel.org/logo.png\" width=\"400\"\u003e\u003c/a\u003e\u003c/p\u003e\n\n\u003cp align=\"center\"\u003e\n\u003ca href=\"https://github.com/hypervel/hypervel/actions\"\u003e\u003cimg src=\"https://github.com/hypervel/hypervel/workflows/tests/badge.svg\" alt=\"Build Status\"\u003e\u003c/a\u003e\n\u003ca href=\"https://packagist.org/packages/hypervel/framework\"\u003e\u003cimg src=\"https://img.shields.io/packagist/dt/hypervel/framework\" alt=\"Total Downloads\"\u003e\u003c/a\u003e\n\u003ca href=\"https://packagist.org/packages/hypervel/hypervel\"\u003e\u003cimg src=\"https://img.shields.io/packagist/v/hypervel/hypervel\" alt=\"Latest Stable Version\"\u003e\u003c/a\u003e\n\u003ca href=\"https://packagist.org/packages/hypervel/hypervel\"\u003e\u003cimg src=\"https://img.shields.io/packagist/l/hypervel/hypervel\" alt=\"License\"\u003e\u003c/a\u003e\n\u003c/p\u003e\n\n## Introduction\n\n**Hypervel** is a Laravel-style PHP framework with native coroutine support for ultra-high performance.\n\nHypervel 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.\n\nThis is an ideal choice for building microservices, API gateways, and high-concurrency applications where traditional PHP frameworks often encounter performance constraints.\n\n## Why Hypervel?\n\nWhile 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.\n\nHowever, 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:\n\nImagine 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.\n\n\u003e You can see [benchmark comparison](https://hypervel.org/docs/introduction.html#benchmark) between Laravel Octane and Hypervel\n\nEven 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.\n\n\u003e See [this issue](https://github.com/laravel/octane/issues/765) for more discussions.\n\n## Documentation\n\n[https://hypervel.org/docs](https://hypervel.org/docs)\n\nHypervel 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.\n\n\u003e Most of the content in this documentation is referenced from the official Laravel documentation. We appreciate the Laravel community's contributions.\n\n## License\n\nThe Hypervel framework is open-sourced software licensed under the [MIT](https://opensource.org/licenses/MIT) license.","funding_links":["https://ko-fi.com/hypervel"],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhypervel%2Fhypervel","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fhypervel%2Fhypervel","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhypervel%2Fhypervel/lists"}