-
-
Notifications
You must be signed in to change notification settings - Fork 871
Update options.md with Symfony 6.4 installation steps #881
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Conversation
ca982f6 to
4c44260
Compare
7-zete-7
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
IMO this is useful information for documentation.
I have a couple of comments.
Added instructions for installing Symfony 6.4 and configuring FrankenPHP.
|
Closes #884? |
| > ```Caddyfile | ||
| > frankenphp { | ||
| > {$FRANKENPHP_CONFIG} | ||
| > | ||
| > worker { | ||
| > file ./public/index.php | ||
| > env APP_RUNTIME Runtime\FrankenPhpSymfony\Runtime | ||
| > {$FRANKENPHP_WORKER_CONFIG} | ||
| > } | ||
| > } | ||
| > ``` |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can we instead use a diff like these :
| > ```Caddyfile | |
| > frankenphp { | |
| > {$FRANKENPHP_CONFIG} | |
| > | |
| > worker { | |
| > file ./public/index.php | |
| > env APP_RUNTIME Runtime\FrankenPhpSymfony\Runtime | |
| > {$FRANKENPHP_WORKER_CONFIG} | |
| > } | |
| > } | |
| > ``` | |
| > ```diff | |
| > worker { | |
| > file ./public/index.php | |
| > + env APP_RUNTIME Runtime\FrankenPhpSymfony\Runtime | |
| > {$FRANKENPHP_WORKER_CONFIG} | |
| > } | |
| > ``` |
|
|
||
| > [!NOTE] | ||
| > | ||
| > If you install a Symfony 6.4 version, you also need to do these steps: |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
| > If you install a Symfony 6.4 version, you also need to do these steps: | |
| > If you're using Symfony 7.3 or earlier with FrankenPHP in worker mode, you also need to follow these steps |
Added instructions for installing Symfony 6.4 and configuring FrankenPHP.