{"id":20536219,"url":"https://github.com/easysoft/frankenphp-win","last_synced_at":"2026-01-31T15:32:43.374Z","repository":{"id":261740927,"uuid":"885101526","full_name":"easysoft/frankenphp-win","owner":"easysoft","description":null,"archived":false,"fork":false,"pushed_at":"2024-11-08T07:39:00.000Z","size":591,"stargazers_count":2,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-04-08T22:17:32.374Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Go","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/easysoft.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","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":"2024-11-08T00:40:36.000Z","updated_at":"2025-03-31T15:58:42.000Z","dependencies_parsed_at":"2024-11-08T07:22:26.850Z","dependency_job_id":"4e57edea-3d45-4719-9dd4-a79a4310511a","html_url":"https://github.com/easysoft/frankenphp-win","commit_stats":null,"previous_names":["easysoft/frankenphp-win"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/easysoft/frankenphp-win","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/easysoft%2Ffrankenphp-win","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/easysoft%2Ffrankenphp-win/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/easysoft%2Ffrankenphp-win/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/easysoft%2Ffrankenphp-win/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/easysoft","download_url":"https://codeload.github.com/easysoft/frankenphp-win/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/easysoft%2Ffrankenphp-win/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28946778,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-31T14:26:55.697Z","status":"ssl_error","status_checked_at":"2026-01-31T14:26:52.545Z","response_time":128,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6: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":[],"created_at":"2024-11-16T00:35:48.421Z","updated_at":"2026-01-31T15:32:43.360Z","avatar_url":"https://github.com/easysoft.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"# FrankenPHP: Modern App Server for PHP\n\n\u003ch1 align=\"center\"\u003e\u003ca href=\"https://frankenphp.dev\"\u003e\u003cimg src=\"frankenphp.png\" alt=\"FrankenPHP\" width=\"600\"\u003e\u003c/a\u003e\u003c/h1\u003e\n\nFrankenPHP is a modern application server for PHP built on top of the [Caddy](https://caddyserver.com/) web server.\n\nFrankenPHP gives superpowers to your PHP apps thanks to its stunning features: [*Early Hints*](https://frankenphp.dev/docs/early-hints/), [worker mode](https://frankenphp.dev/docs/worker/), [real-time capabilities](https://frankenphp.dev/docs/mercure/), automatic HTTPS, HTTP/2, and HTTP/3 support...\n\nFrankenPHP works with any PHP app and makes your Laravel and Symfony projects faster than ever thanks to their official integrations with the worker mode.\n\nFrankenPHP can also be used as a standalone Go library to embed PHP in any app using `net/http`.\n\n[**Learn more** on *frankenphp.dev*](https://frankenphp.dev) and in this slide deck:\n\n\u003ca href=\"https://dunglas.dev/2022/10/frankenphp-the-modern-php-app-server-written-in-go/\"\u003e\u003cimg src=\"https://dunglas.dev/wp-content/uploads/2022/10/frankenphp.png\" alt=\"Slides\" width=\"600\"\u003e\u003c/a\u003e\n\n## Getting Started\n\n### Docker\n\n```console\ndocker run -v $PWD:/app/public \\\n    -p 80:80 -p 443:443 -p 443:443/udp \\\n    dunglas/frankenphp\n```\n\nGo to `https://localhost`, and enjoy!\n\n\u003e [!TIP]\n\u003e\n\u003e Do not attempt to use `https://127.0.0.1`. Use `https://localhost` and accept the self-signed certificate.\n\u003e Use the [`SERVER_NAME` environment variable](docs/config.md#environment-variables) to change the domain to use.\n\n### Standalone Binary\n\nIf you prefer not to use Docker, we provide standalone FrankenPHP binaries for Linux and macOS\ncontaining [PHP 8.3](https://www.php.net/releases/8.3/en.php) and most popular PHP extensions: [Download FrankenPHP](https://github.com/dunglas/frankenphp/releases)\n\nTo serve the content of the current directory, run:\n\n```console\n./frankenphp php-server\n```\n\nYou can also run command-line scripts with:\n\n```console\n./frankenphp php-cli /path/to/your/script.php\n```\n\n## Docs\n\n* [The worker mode](https://frankenphp.dev/docs/worker/)\n* [Early Hints support (103 HTTP status code)](https://frankenphp.dev/docs/early-hints/)\n* [Real-time](https://frankenphp.dev/docs/mercure/)\n* [Configuration](https://frankenphp.dev/docs/config/)\n* [Docker images](https://frankenphp.dev/docs/docker/)\n* [Deploy in production](docs/production.md)\n* [Create **standalone**, self-executable PHP apps](https://frankenphp.dev/docs/embed/)\n* [Create static binaries](https://frankenphp.dev/docs/static/)\n* [Compile from sources](https://frankenphp.dev/docs/compile/)\n* [Laravel integration](https://frankenphp.dev/docs/laravel/)\n* [Known issues](https://frankenphp.dev/docs/known-issues/)\n* [Demo app (Symfony) and benchmarks](https://github.com/dunglas/frankenphp-demo)\n* [Go library documentation](https://pkg.go.dev/github.com/dunglas/frankenphp)\n* [Contributing and debugging](https://frankenphp.dev/docs/contributing/)\n\n## Examples and Skeletons\n\n* [Symfony](https://github.com/dunglas/symfony-docker)\n* [API Platform](https://api-platform.com/docs/distribution/)\n* [Laravel](https://frankenphp.dev/docs/laravel/)\n* [Sulu](https://sulu.io/blog/running-sulu-with-frankenphp)\n* [WordPress](https://github.com/dunglas/frankenphp-wordpress)\n* [Drupal](https://github.com/dunglas/frankenphp-drupal)\n* [Joomla](https://github.com/alexandreelise/frankenphp-joomla)\n* [TYPO3](https://github.com/ochorocho/franken-typo3)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Feasysoft%2Ffrankenphp-win","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Feasysoft%2Ffrankenphp-win","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Feasysoft%2Ffrankenphp-win/lists"}