diff --git a/symfony/framework-bundle/7.2/config/packages/cache.yaml b/symfony/framework-bundle/7.2/config/packages/cache.yaml new file mode 100644 index 000000000..6899b7200 --- /dev/null +++ b/symfony/framework-bundle/7.2/config/packages/cache.yaml @@ -0,0 +1,19 @@ +framework: + cache: + # Unique name of your app: used to compute stable namespaces for cache keys. + #prefix_seed: your_vendor_name/app_name + + # The "app" cache stores to the filesystem by default. + # The data in this cache should persist between deploys. + # Other options include: + + # Redis + #app: cache.adapter.redis + #default_redis_provider: redis://localhost + + # APCu (not recommended with heavy random-write workloads as memory fragmentation can cause perf issues) + #app: cache.adapter.apcu + + # Namespaced pools use the above "app" backend by default + #pools: + #my.dedicated.cache: null diff --git a/symfony/framework-bundle/7.2/config/packages/framework.yaml b/symfony/framework-bundle/7.2/config/packages/framework.yaml new file mode 100644 index 000000000..877eb25d1 --- /dev/null +++ b/symfony/framework-bundle/7.2/config/packages/framework.yaml @@ -0,0 +1,16 @@ +# see https://symfony.com/doc/current/reference/configuration/framework.html +framework: + secret: '%env(APP_SECRET)%' + #csrf_protection: true + + # Note that the session will be started ONLY if you read or write from it. + session: true + + #esi: true + #fragments: true + +when@test: + framework: + test: true + session: + storage_factory_id: session.storage.factory.mock_file diff --git a/symfony/framework-bundle/7.2/config/preload.php b/symfony/framework-bundle/7.2/config/preload.php new file mode 100644 index 000000000..5ebcdb215 --- /dev/null +++ b/symfony/framework-bundle/7.2/config/preload.php @@ -0,0 +1,5 @@ +Run your application: + 1. Go to the project directory + 2. Create your code repository with the git init command + 3. Download the Symfony CLI at https://symfony.com/download to install a development web server + + * Read the documentation at https://symfony.com/doc diff --git a/symfony/framework-bundle/7.2/public/index.php b/symfony/framework-bundle/7.2/public/index.php new file mode 100644 index 000000000..9982c218d --- /dev/null +++ b/symfony/framework-bundle/7.2/public/index.php @@ -0,0 +1,9 @@ +