diff --git a/symfony/framework-bundle/6.4/config/services.yaml b/symfony/framework-bundle/6.4/config/services.yaml new file mode 100644 index 00000000..8a44167f --- /dev/null +++ b/symfony/framework-bundle/6.4/config/services.yaml @@ -0,0 +1,23 @@ +# This file is the entry point to configure your own services. +# Files in the packages/ subdirectory configure your dependencies. + +# Put parameters here that don't need to change on each machine where the app is deployed +# https://symfony.com/doc/current/best_practices.html#use-parameters-for-application-configuration +parameters: + +services: + # default configuration for services in *this* file + _defaults: + autowire: true # Automatically injects dependencies in your services. + autoconfigure: true # Automatically registers your services as commands, event subscribers, etc. + # Binding arguments by name or type + # https://symfony.com/doc/current/service_container.html#binding-arguments-by-name-or-type + #bind: + # 'bool $isDebug': '%kernel.debug%' + + App\: + resource: '../src/' + exclude: + - '../src/DependencyInjection/' + - '../src/Entity/' + - '../src/Kernel.php' diff --git a/symfony/framework-bundle/6.4/manifest.json b/symfony/framework-bundle/6.4/manifest.json new file mode 100644 index 00000000..4c566fba --- /dev/null +++ b/symfony/framework-bundle/6.4/manifest.json @@ -0,0 +1,9 @@ +{ + "bundles": { + "Symfony\\Bundle\\FrameworkBundle\\FrameworkBundle": ["all"] + }, + "copy-from-recipe": { + "config/": "%CONFIG_DIR%/", + "src/": "%SRC_DIR%/" + } +} diff --git a/symfony/framework-bundle/6.4/src/Controller/.gitignore b/symfony/framework-bundle/6.4/src/Controller/.gitignore new file mode 100644 index 00000000..e69de29b diff --git a/symfony/routing/6.4/config/routes.yaml b/symfony/routing/6.4/config/routes.yaml new file mode 100644 index 00000000..2d0ef99e --- /dev/null +++ b/symfony/routing/6.4/config/routes.yaml @@ -0,0 +1,5 @@ +controllers: + resource: + path: ../src/Controller/ + namespace: App\Controller + type: attribute diff --git a/symfony/routing/6.4/manifest.json b/symfony/routing/6.4/manifest.json new file mode 100644 index 00000000..9b758be5 --- /dev/null +++ b/symfony/routing/6.4/manifest.json @@ -0,0 +1,6 @@ +{ + "composer-scripts": {}, + "copy-from-recipe": { + "config/": "%CONFIG_DIR%/" + } +}