Contains all necessary to develop with larvavel and vscode devcontainer plugin using php artisan serve for serve your project.
For degugging you should make a call with Xdebug Chrome extension or pass by parameter XDEBUG_SESSION_START. For example: http://localhost:8000/?XDEBUG_SESSION_START
Packages:
PHP Extencions:
example of .vscode/lauch.json for debug:
{
"version": "0.2.0",
"configurations": [
{
"name": "Listen for XDebug",
"type": "php",
"request": "launch",
"port": 9001,
"hostname": "0.0.0.0",
"pathMappings": {
"/app/": "${workspaceFolder}/",
}
}
]
}
Content type
Image
Digest
Size
224 MB
Last updated
about 5 years ago
docker pull markdomkan/laravel-devcontainer:php8.0