N°7059 - Symfony 6.4 - Application skeleton (#587)

Mise en place d'un squelette temporaire fonctionnel d'application Symfony.

- Ajout bundles debug & runtime pour une implémentation standard
- Configuration minimale
- .env file in specific directory
- Frontal application app.php
This commit is contained in:
Benjamin Dalsass
2023-12-12 16:40:04 +01:00
committed by GitHub
parent 62d7e10257
commit fb29ff29cf
66 changed files with 2694 additions and 8 deletions

View File

@@ -26,6 +26,8 @@
"symfony/console": "~6.4.0",
"symfony/dotenv": "~6.4.0",
"symfony/framework-bundle": "~6.4.0",
"symfony/var-dumper": "~6.4.0",
"symfony/runtime": "~6.4.0",
"symfony/http-foundation": "~6.4.0",
"symfony/http-kernel": "~6.4.0",
"symfony/twig-bundle": "~6.4.0",
@@ -34,7 +36,8 @@
},
"require-dev": {
"symfony/stopwatch": "~6.4.0",
"symfony/web-profiler-bundle": "~6.4.0"
"symfony/web-profiler-bundle": "~6.4.0",
"symfony/debug-bundle": "~6.4.0"
},
"suggest": {
"ext-libsodium": "Required to use the AttributeEncryptedString.",
@@ -54,7 +57,10 @@
},
"sort-packages": true,
"classmap-authoritative": true,
"platform-check": true
"platform-check": true,
"allow-plugins": {
"symfony/runtime": true
}
},
"autoload": {
"classmap": [
@@ -81,6 +87,9 @@
"symfony": {
"allow-contrib": false,
"require": "3.4.*"
},
"runtime": {
"dotenv_path": "symfony/.env"
}
},
"scripts": {