composer audit # See vulnerable packages
composer outdated # See outdated package and their last stable version
# Update some packages w/ command or in `composer.json`
composer update <package/name>:(^/~)<version>
"Aquarelle d'un dragon rouge en buste, buste face, regard tourné trois quart avant, portant un costume cravate et tenant d'une main un clavier informatique custom. Le style de dessin est enfantin mais pas trop, avec des traits doux et arrondis, dans des tons pastels. L'ensemble doit être représenté de sorte à ce que le dessin puisse entrer dans une bulle ronde. Centre le dessin en fonction de cette demande."
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import dotenv from 'dotenv'; | |
dotenv.config(); | |
const params = { | |
username: process.env.DATABASE_USERNAME, | |
password: process.env.PASSWORD, | |
host: process.env.HOST, | |
port: process.env.PORT, | |
databaseName: process.env.DATABASENAME, |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
include .env.local | |
project_name=${PROJECT_NAME} | |
apache: | |
docker exec -it ${PROJECT_NAME}_apache bash | |
php: | |
docker exec -it ${PROJECT_NAME}_php bash | |
db: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{"version":1,"resource":"file:///Users/mushu/development/personal/tuto-symfony-lior-docker/.gitignore","entries":[{"id":"rG2a","timestamp":1660652029008}]} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# sudo nano ~/.bash_aliases | |
# sudo nano ~./bashrc | |
# source ~/.bashrc | |
# For macOs | |
# nano ~/.bash_profile | |
# source ~/.zshrc | |
# source ~/.bashrc |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
127.0.0.1 mywebsite.lan | |
::1 mywebsite.lan | |
127.0.0.1 example.lan | |
::1 example.lan |
Ce PC > Connecter un lecteur réseau > Choisir le lecteur > Ajouter la distribution dans le champs Dossier : \\wsl$\ubuntu
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* Paiement | |
* | |
* Prix TTC = Prix HT + TVA | |
* Prix HT = Prix TTC / (1 + taux de TVA) | |
* | |
* total_paid = Prix TTC | |
* total_paid_tax_incl = Prix TTC |
NewerOlder