The modern PHP app server https://frankenphp.dev/
![]() |
21 hours ago | |
---|---|---|
.github | 1 week ago | |
caddy | 1 day ago | |
docs | 1 week ago | |
internal | 2 weeks ago | |
testdata | 1 week ago | |
.dockerignore | 1 year ago | |
.gitignore | 1 year ago | |
.hadolint.yaml | 1 year ago | |
.markdown-lint.yaml | 1 year ago | |
CONTRIBUTING.md | 3 weeks ago | |
Dockerfile | 4 months ago | |
LICENSE | 2 years ago | |
README.md | 1 week ago | |
SECURITY.md | 4 months ago | |
alpine.Dockerfile | 1 month ago | |
app.tar | 1 year ago | |
app_checksum.txt | 1 year ago | |
backoff.go | 3 months ago | |
backoff_test.go | 3 months ago | |
build-static.sh | 2 days ago | |
cgi.go | 1 day ago | |
context.go | 1 day ago | |
debugstate.go | 2 weeks ago | |
dev-alpine.Dockerfile | 3 weeks ago | |
dev.Dockerfile | 3 weeks ago | |
docker-bake.hcl | 3 weeks ago | |
embed.go | 4 months ago | |
env.go | 1 week ago | |
frankenphp.c | 1 day ago | |
frankenphp.go | 21 hours ago | |
frankenphp.h | 1 day ago | |
frankenphp.png | 2 years ago | |
frankenphp.stub.php | 10 months ago | |
frankenphp_arginfo.h | 2 months ago | |
frankenphp_test.go | 21 hours ago | |
go.mod | 1 day ago | |
go.sum | 1 day ago | |
install.sh | 4 months ago | |
metrics.go | 1 week ago | |
metrics_test.go | 2 weeks ago | |
options.go | 2 weeks ago | |
phpmainthread.go | 1 week ago | |
phpmainthread_test.go | 1 day ago | |
phpthread.go | 1 day ago | |
recorder_test.go | 4 months ago | |
release.sh | 2 months ago | |
reload_test.sh | 7 months ago | |
request_options.go | 1 day ago | |
scaling.go | 1 day ago | |
scaling_test.go | 2 weeks ago | |
state.go | 2 weeks ago | |
state_test.go | 2 months ago | |
static-builder.Dockerfile | 2 days ago | |
threadinactive.go | 1 day ago | |
threadregular.go | 1 day ago | |
threadworker.go | 21 hours ago | |
watcher_test.go | 2 weeks ago | |
worker.go | 1 day ago | |
worker_test.go | 1 month ago |
FrankenPHP is a modern application server for PHP built on top of the Caddy web server.
FrankenPHP gives superpowers to your PHP apps thanks to its stunning features: Early Hints, worker mode, real-time capabilities, automatic HTTPS, HTTP/2, and HTTP/3 support...
FrankenPHP works with any PHP app and makes your Laravel and Symfony projects faster than ever thanks to their official integrations with the worker mode.
FrankenPHP can also be used as a standalone Go library to embed PHP in any app using net/http
.
Learn more on frankenphp.dev and in this slide deck:
We provide static FrankenPHP binaries for Linux and macOS containing PHP 8.4 and most popular PHP extensions.
On Windows, use WSL to run FrankenPHP.
Download FrankenPHP or copy this line into your terminal to automatically install the version appropriate for your platform:
curl https://frankenphp.dev/install.sh | sh
mv frankenphp /usr/local/bin/
To serve the content of the current directory, run:
frankenphp php-server
You can also run command-line scripts with:
frankenphp php-cli /path/to/your/script.php
![WARNING]
In production, prefer using the Docker images, the Brew package or compiling FrankenPHP from sources. The standalone binary is provided for development and testing purposes.
Alternatively, Docker images are available:
docker run -v .:/app/public \
-p 80:80 -p 443:443 -p 443:443/udp \
dunglas/frankenphp
Go to https://localhost
, and enjoy!
[!TIP]
Do not attempt to use
https://127.0.0.1
. Usehttps://localhost
and accept the self-signed certificate. Use theSERVER_NAME
environment variable to change the domain to use.
FrankenPHP is also available as a Homebrew package for macOS and Linux.
To install it:
brew install dunglas/frankenphp/frankenphp
To serve the content of the current directory, run:
frankenphp php-server