{"id":22463776,"url":"https://github.com/crowphp/crow","last_synced_at":"2026-02-21T11:02:24.496Z","repository":{"id":47744218,"uuid":"323630929","full_name":"crowphp/crow","owner":"crowphp","description":"Fast, unopinionated, minimalist web framework for PHP.","archived":false,"fork":false,"pushed_at":"2022-12-07T15:40:51.000Z","size":538,"stargazers_count":48,"open_issues_count":0,"forks_count":5,"subscribers_count":3,"default_branch":"master","last_synced_at":"2025-08-02T06:34:33.784Z","etag":null,"topics":["crowphp","framework","php","server","swoole"],"latest_commit_sha":null,"homepage":"https://crowphp.github.io/crow-web/","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/crowphp.png","metadata":{"files":{"readme":"Readme.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE.md","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":"SECURITY.md","support":null}},"created_at":"2020-12-22T13:17:03.000Z","updated_at":"2024-12-12T14:30:48.000Z","dependencies_parsed_at":"2023-01-23T18:00:19.470Z","dependency_job_id":null,"html_url":"https://github.com/crowphp/crow","commit_stats":null,"previous_names":[],"tags_count":9,"template":false,"template_full_name":null,"purl":"pkg:github/crowphp/crow","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/crowphp%2Fcrow","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/crowphp%2Fcrow/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/crowphp%2Fcrow/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/crowphp%2Fcrow/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/crowphp","download_url":"https://codeload.github.com/crowphp/crow/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/crowphp%2Fcrow/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29679049,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-21T09:33:50.764Z","status":"ssl_error","status_checked_at":"2026-02-21T09:33:19.949Z","response_time":107,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"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":["crowphp","framework","php","server","swoole"],"created_at":"2024-12-06T09:14:05.498Z","updated_at":"2026-02-21T11:02:24.481Z","avatar_url":"https://github.com/crowphp.png","language":"PHP","readme":"Fast un-opinionated minimalist web framework and server for PHP built on top of Async PHP server  (SwoolePHP).\nCrowPHP lets you build real microservices in PHP without the use of PHP-FPM/Nginx or Apache.\n\n\n![Build Status](https://github.com/crowphp/crow/workflows/build/badge.svg)\n![License](https://img.shields.io/github/license/crowphp/crow)\n![Coverage](https://img.shields.io/endpoint?url=https://badger.crowphp.com/coverage/0.x)\n\n### Installation\n\n#### Requirements\n\n1. PHP \u003e8.0\n2. Swoole PHP extension\n\n```\n$ pecl install swoole\n```\n\nInstallation of CrowPHP via composer, the following command will install the framework and all of its dependencies with it.\n\n```\ncomposer install crowphp/crow\n```\n\n### Hello world microservice using CrowPHP\n\n```php\n\u003c?php\nrequire 'vendor/autoload.php';\n\nuse Psr\\Http\\Message\\ResponseInterface;\nuse Psr\\Http\\Message\\ServerRequestInterface as RequestInterface;\nuse Crow\\Http\\Server\\Factory as CrowServer;\n\n$app = CrowServer::create(CrowServer::SWOOLE_SERVER);\n$router = Crow\\Router\\Factory::make();\n\n$router-\u003eget('/', function (RequestInterface $request, ResponseInterface $response) {\n    $response-\u003egetBody()-\u003ewrite('Hello World');\n    return $response;\n});\n\n$app-\u003ewithRouter($router);\n\n$app-\u003elisten(5005);\n```\nYou may quickly test your newly built service as follows:\n```bash\n$ php index.php\n```\nGoing to http://localhost:5005 will now display \"Hello World\".\n\nFor more information on how to configure your web server, see the Documentation.\n\n## Tests\nTo execute the test suite, you'll need to install all development dependencies.\n```\n$ git clone https://github.com/crowphp/crow\n$ composer install\n$ composer test\n```\n## Contributing\n\nPlease see [CONTRIBUTING](CONTRIBUTING.md) for details.\n\n## Learn More\nLearn more at these links:\n- [Website](https://crowphp.github.io/crow-web/)\n\n## Security\nIf you discover security related issues, please email yousaf@bmail.pk or use the issue tracker.\n\n## License\n\nThe Crow Framework is licensed under the MIT license. See [License File](LICENSE.md) for more information.\n\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcrowphp%2Fcrow","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fcrowphp%2Fcrow","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcrowphp%2Fcrow/lists"}