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

Kévin Dunglas 102b4d1ad0 chore: prepare release 1.3.0 1 день назад
.github e5ca97308e perf: optimize $_SERVER import (#1106) 1 неделя назад
caddy 102b4d1ad0 chore: prepare release 1.3.0 1 день назад
docs 51e4445c00 docs: update php.ini path (#1110) 1 день назад
internal 56d5d50ea9 fix: watcher pattern matching and retrying (#1143) 2 дней назад
testdata 75dab8f33d chore: bump deps and misc improvements (#1135) 1 неделя назад
.dockerignore 6f108a4203 fix: do not extract embedded app on every execution (#488) 9 месяцев назад
.gitignore 2e72b50d10 ci: add Apple Silicon build script (#313) 11 месяцев назад
.hadolint.yaml c9bf9940d1 ci: add Super-Linter (#323) 11 месяцев назад
.markdown-lint.yaml c9bf9940d1 ci: add Super-Linter (#323) 11 месяцев назад
CONTRIBUTING.md 75dab8f33d chore: bump deps and misc improvements (#1135) 1 неделя назад
Dockerfile 69c43ee43d chore: use upstream e-dant/watcher headers and build system (#1119) 1 неделя назад
LICENSE f8bdd640cf docs: add license (#24) 2 лет назад
README.md 334139ca2b feat: improve install script (#1097) 4 недель назад
SECURITY.md 17e57287eb docs: fix link in SECURITY.md (#1111) 3 недель назад
alpine.Dockerfile 69c43ee43d chore: use upstream e-dant/watcher headers and build system (#1119) 1 неделя назад
app.tar 537f899939 feat: use tar to embed apps (#333) 11 месяцев назад
app_checksum.txt 6f108a4203 fix: do not extract embedded app on every execution (#488) 9 месяцев назад
build-static.sh 69c43ee43d chore: use upstream e-dant/watcher headers and build system (#1119) 1 неделя назад
cgi.go 75dab8f33d chore: bump deps and misc improvements (#1135) 1 неделя назад
dev-alpine.Dockerfile 69c43ee43d chore: use upstream e-dant/watcher headers and build system (#1119) 1 неделя назад
dev.Dockerfile 69c43ee43d chore: use upstream e-dant/watcher headers and build system (#1119) 1 неделя назад
docker-bake.hcl 8d9b6e755b feat: restart workers when on source changes (#1013) 1 месяц назад
embed.go d53f909d20 chore: various cleanups 2 недель назад
frankenphp.c 9013614801 fix: sapi_module.getenv() should delegate to Go 2 дней назад
frankenphp.go 022b8f1094 perf: use buffered chans for requests (#1146) 1 день назад
frankenphp.h e5ca97308e perf: optimize $_SERVER import (#1106) 1 неделя назад
frankenphp.png 625ab8906f docs: update logo 2 лет назад
frankenphp.stub.php ea5e19ff4b fix: getallheaders() must return request headers (#772) 6 месяцев назад
frankenphp_arginfo.h ea5e19ff4b fix: getallheaders() must return request headers (#772) 6 месяцев назад
frankenphp_test.go 75dab8f33d chore: bump deps and misc improvements (#1135) 1 неделя назад
go.mod 172b598f3b chore: bump deps (#1150) 1 день назад
go.sum 172b598f3b chore: bump deps (#1150) 1 день назад
install.sh cda74730ae fix: term capability code may not be available 3 недель назад
metrics.go d53f909d20 chore: various cleanups 2 недель назад
metrics_test.go aa585f7da0 handle worker failures gracefully (#1038) 1 месяц назад
options.go 8d9b6e755b feat: restart workers when on source changes (#1013) 1 месяц назад
php_thread.go 1c3ce114f6 perf: use hot worker threads when possible (#1126) 1 неделя назад
php_thread_test.go d99b16a158 perf: remove all cgo handles (#1073) 1 месяц назад
recorder_test.go 75dab8f33d chore: bump deps and misc improvements (#1135) 1 неделя назад
release.sh 6c708be99d ci: upgrade to super-linter 6 (#952) 3 месяцев назад
reload_test.sh 6c708be99d ci: upgrade to super-linter 6 (#952) 3 месяцев назад
request_options.go 75dab8f33d chore: bump deps and misc improvements (#1135) 1 неделя назад
static-builder.Dockerfile 69c43ee43d chore: use upstream e-dant/watcher headers and build system (#1119) 1 неделя назад
watcher_test.go afedeb9d58 refactor: use build tags to disable, instead of to enable a feature (#1113) 2 недель назад
worker.go 75dab8f33d chore: bump deps and misc improvements (#1135) 1 неделя назад
worker_test.go 75dab8f33d chore: bump deps and misc improvements (#1135) 1 неделя назад

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 $PWD:/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.3 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