This file contains hidden or 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
| lsof -i :3306 > /dev/null && echo "Port 3306 is taken." || echo "Port 3306 is available." |
This file contains hidden or 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 | |
| $required_php_version = '8.2.0'; | |
| $required_extensions = [ | |
| 'bcmath', | |
| 'ctype', | |
| 'curl', | |
| 'dom', | |
| 'fileinfo', | |
| 'filter', |
This file contains hidden or 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
| APP_NAME=Laravel | |
| APP_ENV=local | |
| APP_KEY=base64:BS0/W7JURkLLlph3LBRO1bJH4YtXQNYL77udOHjIF+o= | |
| APP_DEBUG=true | |
| APP_URL=http://localhost | |
| LOG_CHANNEL=stack | |
| LOG_DEPRECATIONS_CHANNEL=null | |
| LOG_LEVEL=debug |