We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 06fc6f2 commit 629cdadCopy full SHA for 629cdad
docs/options.md
@@ -25,6 +25,27 @@ On Windows:
25
set SYMFONY_VERSION=6.4.* && docker compose up --wait&set SYMFONY_VERSION=
26
```
27
28
+> [!NOTE]
29
+>
30
+> If you install a Symfony 6.4 version, you also need to do these steps:
31
+> ```bash
32
+> composer require runtime/frankenphp-symfony
33
+> ```
34
35
+> Add this content `env APP_RUNTIME Runtime\FrankenPhpSymfony\Runtime` in the `frankenphp/Caddyfile` on the `worker`section.
36
+
37
+```
38
+frankenphp {
39
+ {$FRANKENPHP_CONFIG}
40
41
+ worker {
42
+ file ./public/index.php
43
+ env APP_RUNTIME Runtime\FrankenPhpSymfony\Runtime
44
+ {$FRANKENPHP_WORKER_CONFIG}
45
+ }
46
+}
47
48
49
## Installing Development Versions of Symfony
50
51
To install a non-stable version of Symfony,
0 commit comments