{"id":13462546,"url":"https://github.com/bixuehujin/blink","last_synced_at":"2025-05-14T03:09:03.071Z","repository":{"id":39787864,"uuid":"43488468","full_name":"bixuehujin/blink","owner":"bixuehujin","description":"A high performance web framework and application server in PHP. ","archived":false,"fork":false,"pushed_at":"2025-02-12T04:18:14.000Z","size":642,"stargazers_count":835,"open_issues_count":2,"forks_count":120,"subscribers_count":80,"default_branch":"v1","last_synced_at":"2025-04-12T19:43:03.315Z","etag":null,"topics":["api-framework","blink","blink-framework","framework","php","php-framework","restful","swoole","webserver"],"latest_commit_sha":null,"homepage":"https://docs.rethinkphp.com/blink-framework/","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/bixuehujin.png","metadata":{"files":{"readme":"README.md","changelog":"ChangeLog.md","contributing":null,"funding":null,"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}},"created_at":"2015-10-01T09:31:14.000Z","updated_at":"2025-03-15T00:12:13.000Z","dependencies_parsed_at":"2023-11-16T18:25:53.027Z","dependency_job_id":"3d110235-45d4-47a9-a97f-4d03d7ce8ede","html_url":"https://github.com/bixuehujin/blink","commit_stats":{"total_commits":451,"total_committers":16,"mean_commits":28.1875,"dds":0.09312638580931265,"last_synced_commit":"f1e8e5cd793e8b1a446a9f8f9fd539a12dfe01bd"},"previous_names":[],"tags_count":8,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bixuehujin%2Fblink","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bixuehujin%2Fblink/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bixuehujin%2Fblink/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bixuehujin%2Fblink/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/bixuehujin","download_url":"https://codeload.github.com/bixuehujin/blink/tar.gz/refs/heads/v1","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":254059508,"owners_count":22007768,"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","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":["api-framework","blink","blink-framework","framework","php","php-framework","restful","swoole","webserver"],"created_at":"2024-07-31T12:00:51.510Z","updated_at":"2025-05-14T03:09:03.055Z","avatar_url":"https://github.com/bixuehujin.png","language":"PHP","funding_links":[],"categories":["Uncategorized","PHP","Swoole","微框架( Micro Frameworks )","Framework"],"sub_categories":["Uncategorized"],"readme":"Blink - A high performance web framework and application server in PHP\n======================================================================\n\n[![Build Status](https://travis-ci.org/bixuehujin/blink.svg?branch=master)](https://travis-ci.org/bixuehujin/blink)\n[![Latest Stable Version](https://poser.pugx.org/blink/blink/v/stable)](https://packagist.org/packages/blink/blink)\n[![Latest Unstable Version](https://poser.pugx.org/blink/blink/v/unstable)](https://packagist.org/packages/blink/blink)\n\n\nBlink is a micro web framework for building long-running and high performance services, the design heavily inspired by Yii2\nand Laravel. Blink aims to provide the most expressive and elegant API and try to make the experience of web development\nas pleasant as possible.\n\nBesides, Blink is also an application server that can serve requests directly in PHP, without php-fpm or Apache's mod_php.\nwe use the [Swoole extension](https://github.com/swoole/swoole-src) as the underlying networking library. This can easily make\nour PHP application 100% faster in just a blink.\n\n## Why build this?\n\nIn php-fpm or mod_php, all resources like objects and database connections only live within a single request,\nall these resources will be freed once the request terminates. This works fine with simple applications without\nmuch traffic, but for large scale applications, the performance impact of reallocating resources on every request\nis really huge.\n\nBecause of this, we are always trying to find a way to reduce unnecessary resources reallocating on every request, and\nI'm finally very glad to announce that **Blink** is exactly the answer!\n\n\n## Features\n\n* Powered by Swoole, serve requests in PHP directly\n* Dependency Injection \u0026 Service Locator\n* Routing for Restful APIs\n* Authentication \u0026 Authorization abstraction\n* Session Management abstraction\n* Middleware support for Request and Response\n* Plugins support\n* PHPUnit integration for unit tests\n\n## Installation\n\nInstall the latest version with\n\n```bash\ncomposer create-project --prefer-dist blink/seed your-app\n```\n\n## Documentation\n\nBlink is fully documented in both English and Chinese:\n\n * [English Documentation](https://docs.rethinkphp.com/blink-framework/v0.4/en/)\n * [简体中文文档](https://docs.rethinkphp.com/blink-framework/v0.4/zh-CN/)\n\nFor the documentation of v0.3, please visit https://docs.rethinkphp.com/blink-framework/v0.3/\n\n## Related Projects\n\n * [blink-redis](https://github.com/rethinkphp/blink-redis) A Redis component for the Blink Framework\n * [blink-sentry](https://github.com/bixuehujin/blink-sentry) The Sentry integration for Blink Framework.\n * [notejam_blink](https://github.com/Whyounes/notejam_blink) A notejam demo application for Blink.\n\n## Participating\n\n**Blink is still in active development, so your participation is very welcome!**\n\nYou may participate in the following ways:\n\n* [Report issues or Start a design discussion](https://github.com/bixuehujin/blink/issues)\n* Develop features or write documentation via [Pull Requests](https://github.com/bixuehujin/blink/pulls)\n\n## Author\n\nFollow me on [Weibo](http://weibo.com/bixuehujin) (Mainland China) to receive news and updates about the framework.\n\n## License\n\nThe Blink framework is open-sourced software licensed under the [MIT license](http://opensource.org/licenses/MIT)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbixuehujin%2Fblink","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fbixuehujin%2Fblink","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbixuehujin%2Fblink/lists"}