The modern PHP app server https://frankenphp.dev/

Alliballibaba 6fa90d655d Adds perf tests. 2 months ago
.github b16b60b053 ci: fix artifact upload 2 months ago
caddy bd4af113e0 Merge branch 'main' into feat/auto-scale-clock-time 2 months ago
docs bd4af113e0 Merge branch 'main' into feat/auto-scale-clock-time 2 months ago
internal 0328d0600e fix: missing build tag for fastabs 3 months ago
testdata 6fa90d655d Adds perf tests. 2 months ago
.dockerignore 6f108a4203 fix: do not extract embedded app on every execution (#488) 1 year ago
.gitignore 2e72b50d10 ci: add Apple Silicon build script (#313) 1 year ago
.hadolint.yaml c9bf9940d1 ci: add Super-Linter (#323) 1 year ago
.markdown-lint.yaml c9bf9940d1 ci: add Super-Linter (#323) 1 year ago
CONTRIBUTING.md 75dab8f33d chore: bump deps and misc improvements (#1135) 4 months ago
Dockerfile 69c43ee43d chore: use upstream e-dant/watcher headers and build system (#1119) 4 months ago
LICENSE f8bdd640cf docs: add license (#24) 2 years ago
README.md a396e64ad6 feat: build static binaries with 8.4 (#1193) 3 months ago
SECURITY.md 17e57287eb docs: fix link in SECURITY.md (#1111) 4 months ago
alpine.Dockerfile 69c43ee43d chore: use upstream e-dant/watcher headers and build system (#1119) 4 months ago
app.tar 537f899939 feat: use tar to embed apps (#333) 1 year ago
app_checksum.txt 6f108a4203 fix: do not extract embedded app on every execution (#488) 1 year ago
backoff.go 1e279bc348 refactor: simplify exponential backoff and refactor env (#1185) 3 months ago
backoff_test.go 1e279bc348 refactor: simplify exponential backoff and refactor env (#1185) 3 months ago
build-static.sh d276032e20 feat(static): add custom Caddy modules support (#1210) 2 months ago
cgi.go ef1bd0d975 Changes Unpin() logic as suggested by @withinboredom 3 months ago
dev-alpine.Dockerfile 8a199bb4d7 chore: remove useless EDANT_WATCHER_VERSION Docker ARG 3 months ago
dev.Dockerfile 6fa90d655d Adds perf tests. 2 months ago
docker-bake.hcl 8a199bb4d7 chore: remove useless EDANT_WATCHER_VERSION Docker ARG 3 months ago
embed.go d53f909d20 chore: various cleanups 4 months ago
env.go 1e279bc348 refactor: simplify exponential backoff and refactor env (#1185) 3 months ago
frankenphp.c 3b9f5774a2 Fixes alpine (probably) 2 months ago
frankenphp.go dc10546b05 Merges main. 2 months ago
frankenphp.h 031424784a Adds autoscale tests. 2 months ago
frankenphp.png 625ab8906f docs: update logo 2 years ago
frankenphp.stub.php ea5e19ff4b fix: getallheaders() must return request headers (#772) 10 months ago
frankenphp_arginfo.h c080608661 Applies suggestions by @dunglas 3 months ago
frankenphp_test.go 660efcd490 Merge branch 'main' into refactor/start-worker-threads-directly 3 months ago
go.mod 79ab84dad7 chore: bump deps 2 months ago
go.sum 79ab84dad7 chore: bump deps 2 months ago
install.sh cda74730ae fix: term capability code may not be available 4 months ago
metrics.go 843d199469 perf: cache computations in WithRequestDocumentRoot (#1154) 4 months ago
metrics_test.go aa585f7da0 handle worker failures gracefully (#1038) 5 months ago
options.go fcb5f8c188 Adds max threads option and debug status. 3 months ago
phpmainthread.go b4474126e5 Removes unnecessary 'isProtected' 2 months ago
phpmainthread_test.go ec0bc0f479 Removes the test's randomness. 2 months ago
phpthread.go b4474126e5 Removes unnecessary 'isProtected' 2 months ago
recorder_test.go 75dab8f33d chore: bump deps and misc improvements (#1135) 4 months ago
release.sh 6c708be99d ci: upgrade to super-linter 6 (#952) 7 months ago
reload_test.sh 6c708be99d ci: upgrade to super-linter 6 (#952) 7 months ago
request_options.go 843d199469 perf: cache computations in WithRequestDocumentRoot (#1154) 4 months ago
scaling.go 29de62afd2 go fmt 2 months ago
state.go e9f62b930c Refactors wait-time. 2 months ago
state_test.go 3672c60fa0 Also adds compareAndSwap to the test. 3 months ago
static-builder.Dockerfile d276032e20 feat(static): add custom Caddy modules support (#1210) 2 months ago
thread-inactive.go e9f62b930c Refactors wait-time. 2 months ago
thread-regular.go 442a558ec5 Removes unnecessary import. 2 months ago
thread-worker.go d408bdd2b9 Replaces clock with probing. 2 months ago
watcher_test.go a43ecbe3df Adds test with debug message. 3 months ago
worker.go bfe3de1cb6 Allows regular thread scaling. 2 months ago
worker_test.go 75dab8f33d chore: bump deps and misc improvements (#1135) 4 months ago

README.md

FrankenPHP: Modern App Server for PHP

FrankenPHP

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:

Slides

Getting Started

Docker

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. Use https://localhost and accept the self-signed certificate. Use the SERVER_NAME environment variable to change the domain to use.

Standalone Binary

If you prefer not to use Docker, we provide standalone 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

Docs

Examples and Skeletons