Skip to content

Commit 3ef0b8d

Browse files
7-zete-7maxhelias
authored andcommitted
docs: update artifacts
1 parent 1b01814 commit 3ef0b8d

File tree

4 files changed

+17
-12
lines changed

4 files changed

+17
-12
lines changed

docs/mysql.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ Change the database image to use MySQL instead of PostgreSQL in `compose.yaml`:
1010

1111
```diff
1212
###> doctrine/doctrine-bundle ###
13-
- image: postgres:${POSTGRES_VERSION:-15}-alpine
13+
- image: postgres:${POSTGRES_VERSION:-16}-alpine
1414
+ image: mysql:${MYSQL_VERSION:-8}
1515
environment:
1616
- POSTGRES_DB: ${POSTGRES_DB:-app}

docs/options.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ You can also customize the `Caddyfile` by using the following environment variab
6060
| `CADDY_SERVER_LOG_OPTIONS` | the [server log options block](https://caddyserver.com/docs/caddyfile/directives/log), one per line | |
6161
| `SERVER_NAME` | the server name or address | `localhost` |
6262
| `FRANKENPHP_CONFIG` | a list of extra [FrankenPHP directives](https://frankenphp.dev/docs/config/#caddyfile-config), one per line | `import worker.Caddyfile` |
63-
| `MERCURE_TRANSPORT_URL` | the value passed to the `transport_url` directive | `bolt://mercure.db` |
63+
| `MERCURE_TRANSPORT_URL` | the value passed to the `transport_url` directive | `bolt:///data/mercure.db` |
6464
| `MERCURE_PUBLISHER_JWT_KEY` | the JWT key to use for publishers | |
6565
| `MERCURE_PUBLISHER_JWT_ALG` | the JWT algorithm to use for publishers | `HS256` |
6666
| `MERCURE_SUBSCRIBER_JWT_KEY` | the JWT key to use for subscribers | |

docs/tls.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ For instance, to use self-signed certificates created with [mkcert](https://gith
3434
# ...
3535
volumes:
3636
+ - ./frankenphp/certs:/etc/caddy/certs:ro
37-
- ./public:/app/public:ro
37+
# ...
3838
```
3939
5. Restart your `php` service
4040

docs/xdebug.md

+14-9
Original file line numberDiff line numberDiff line change
@@ -49,23 +49,28 @@ You can now use the debugger!
4949
## Debugging with Xdebug and VScode
5050

5151
1. Install necessery [PHP extension for VScode](https://marketplace.visualstudio.com/items?itemName=DEVSENSE.phptools-vscode).
52-
2. Add [debug configuration](https://code.visualstudio.com/docs/editor/debugging#_launch-configurations) into your `.vscode\launch.json` file.
52+
2. Add [debug configuration](https://code.visualstudio.com/docs/debugtest/debugging-configuration#_launch-configurations) into your `.vscode\launch.json` file.
5353

5454
Example:
5555
5656
```
5757
{
58-
"name": "Listen for Xdebug",
59-
"type": "php",
60-
"request": "launch",
61-
"port": 9003,
62-
"pathMappings": {
63-
"/app": "${workspaceFolder}"
64-
}
58+
"version": "0.2.0",
59+
"configurations": [
60+
{
61+
"name": "Listen for Xdebug",
62+
"type": "php",
63+
"request": "launch",
64+
"port": 9003,
65+
"pathMappings": {
66+
"/app": "${workspaceFolder}"
67+
}
68+
}
69+
]
6570
}
6671
```
6772
68-
3. Use [Run and Debug](https://code.visualstudio.com/docs/editor/debugging) options and run `Listen for Xdebug` command to listen for upcomming connections with [the **Xdebug extension**](https://xdebug.org/docs/step_debug#browser-extensions) installed and active.
73+
3. Use [Run and Debug](https://code.visualstudio.com/docs/debugtest/debugging#_start-a-debugging-session) options and run `Listen for Xdebug` command to listen for upcomming connections with [the **Xdebug extension**](https://xdebug.org/docs/step_debug#browser-extensions) installed and active.
6974

7075
## Troubleshooting
7176

0 commit comments

Comments
 (0)