You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
3 years ago | |
---|---|---|
config | 3 years ago | |
mailcatcher | 3 years ago | |
phpfpm | 3 years ago | |
.gitignore | 3 years ago | |
LICENSE | 7 years ago | |
Makefile | 3 years ago | |
README.md | 3 years ago | |
docker-compose.yml | 3 years ago |
README.md
Environnement de développement PHP
Usage
# Initialiser l'environnement
make init
# Démarrer
make up
# Mettre à jour
make upgrade
# vider les logs
make clear-log
# remettre a plat les droits
make set-acl
Configuration de VSCodium pour utiliser xdebug
Nécessite l'extension PHP debug.
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"name": "Listen for XDebug",
"type": "php",
"request": "launch",
"hostname": "172.17.0.1",
"port": 9000,
"pathMappings": {
"/var/www/html": "/home/[user_name]/public"
},
"xdebugSettings": {
"max_data": 65535,
"show_hidden": 1,
"max_children": 100,
"max_depth": 5
}
}
]
}