You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+15-9Lines changed: 15 additions & 9 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -4,7 +4,7 @@
4
4
5
5
FrankenPHP is a modern application server for PHP built on top of the [Caddy](https://caddyserver.com/) web server.
6
6
7
-
FrankenPHP 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...
7
+
FrankenPHP 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/), [hot reloading](https://frankenphp.dev/docs/hot-reload/), automatic HTTPS, HTTP/2, and HTTP/3 support...
8
8
9
9
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.
10
10
@@ -16,33 +16,39 @@ FrankenPHP can also be used as a standalone Go library to embed PHP in any app u
16
16
17
17
## Getting Started
18
18
19
-
On Windows, use [WSL](https://learn.microsoft.com/windows/wsl/) to run FrankenPHP.
20
-
21
19
### Install Script
22
20
23
-
You can copy this line into your terminal to automatically
21
+
On Linux and macOS, copy this line into your terminal to automatically
24
22
install an appropriate version for your platform:
25
23
26
24
```console
27
25
curl https://frankenphp.dev/install.sh | sh
28
26
```
29
27
28
+
On Windows, run this in PowerShell:
29
+
30
+
```powershell
31
+
irm https://frankenphp.dev/install.ps1 | iex
32
+
```
33
+
30
34
### Standalone Binary
31
35
32
-
We provide static FrankenPHP binaries for development purposes on Linuxand macOS
33
-
containing [PHP 8.4](https://www.php.net/releases/8.4/en.php) and most popular PHP extensions.
36
+
We provide FrankenPHP binaries for Linux, macOS and Windows
Linux binaries are statically linked, so they can be used on any Linux distribution without installing any dependency. macOS binaries are also self-contained.
40
+
They contain most popular PHP extensions.
41
+
Windows archives contain the official PHP binary for Windows.
36
42
37
-
**Installing extensions:** Most common extensions are bundled. It's not possible to install more extensions.
0 commit comments