frankenphp/README.md

38 lines
1.7 KiB
Markdown
Raw Normal View History

# FrankenPHP: Modern App Server for PHP
2021-09-24 16:52:20 +00:00
2022-10-14 10:20:57 +00:00
<h1 align="center"><a href="https://frankenphp.dev"><img src="frankenphp.png" alt="FrankenPHP" width="600"></a></h1>
FrankenPHP is a modern application server for PHP built on top of the [Caddy](https://caddyserver.com/) web server.
2022-10-14 15:54:33 +00:00
FrankenPHP gives superpowers to your PHP apps thanks to its stunning features: [*Early Hints*](docs/early-hints.md), [worker mode](docs/worker.md), [real-time capabilities](docs/mercure.md), automatic HTTPS, HTTP/2 and HTTP/3 support...
2022-10-14 10:20:57 +00:00
FrankenPHP works with any PHP app and makes your Symfony projects faster than ever thanks to provided integration with the worker mode (Laravel Octane support coming).
FrankenPHP can also be used as a standalone Go library to embed PHP in any app using `net/http`.
2022-10-15 08:50:49 +00:00
[**Learn more** on *frankenphp.dev*](https://frankenphp.dev) in this slide deck:
2022-10-14 15:14:17 +00:00
<a href="https://dunglas.dev/2022/10/frankenphp-the-modern-php-app-server-written-in-go/"><img src="https://dunglas.dev/wp-content/uploads/2022/10/frankenphp.png" alt="Slides" width="600"></a>
2022-10-14 10:20:57 +00:00
## Getting Started
2021-09-24 16:52:20 +00:00
☢️ FrankenPHP is very experimental, don't use it in production yet, [file bugs](https://github.com/dunglas/frankenphp/issues) and write patches! ☢️
2022-10-14 10:20:57 +00:00
2021-09-24 16:52:20 +00:00
```
docker run -v $PWD:/app/public \
-p 80:80 -p 443:443 \
dunglas/frankenphp
```
2022-10-14 10:20:57 +00:00
Go to `https://localhost`, and enjoy!
2021-09-24 16:52:20 +00:00
## Docs
2021-09-24 16:52:20 +00:00
2022-10-14 10:20:57 +00:00
* [The worker mode](docs/worker.md)
* [Early Hints support (103 HTTP status code)](docs/early-hints.md)
2022-10-14 10:20:57 +00:00
* [Real-time](docs/mercure.md)
* [Configuration](docs/config.md)
* [Demo app (Symfony) and benchmarks](https://github.com/dunglas/frankenphp-demo)
* [Compile from sources](docs/compile.md)
* [Go library documentation](https://pkg.go.dev/github.com/dunglas/frankenphp)