diff --git a/RECIPES.md b/RECIPES.md index 6e93b6f3..d8d1da64 100644 --- a/RECIPES.md +++ b/RECIPES.md @@ -110,6 +110,7 @@ Additional recipes can be found on the [Contrib Recipes Repository](https://gith | [symfony/turbo-sms-notifier](https://packagist.org/packages/symfony/turbo-sms-notifier) | [5.4](symfony/turbo-sms-notifier/5.4) | `turbo-sms-notifier`, `turbosmsnotifier` | | [symfony/twig-bundle](https://packagist.org/packages/symfony/twig-bundle) | [5.4](symfony/twig-bundle/5.4) | `twig-bundle`, `twigbundle` | | [symfony/twilio-notifier](https://packagist.org/packages/symfony/twilio-notifier) | [5.0](symfony/twilio-notifier/5.0) | `twilio-notifier`, `twilionotifier` | +| [symfony/uid](https://packagist.org/packages/symfony/uid) | [6.2](symfony/uid/6.2) | `uid` | | [symfony/ux-autocomplete](https://packagist.org/packages/symfony/ux-autocomplete) | [2.2](symfony/ux-autocomplete/2.2) | `ux-autocomplete`, `uxautocomplete` | | [symfony/ux-live-component](https://packagist.org/packages/symfony/ux-live-component) | [2.0](symfony/ux-live-component/2.0) | `ux-live-component`, `uxlivecomponent` | | [symfony/validator](https://packagist.org/packages/symfony/validator) | [5.3](symfony/validator/5.3) | `validation`, `validator` | diff --git a/archived/symfony.framework-bundle/af47254c5e4cd543e6af3e4508298ffebbdaddd3.json b/archived/symfony.framework-bundle/af47254c5e4cd543e6af3e4508298ffebbdaddd3.json new file mode 100644 index 00000000..9d9bc858 --- /dev/null +++ b/archived/symfony.framework-bundle/af47254c5e4cd543e6af3e4508298ffebbdaddd3.json @@ -0,0 +1,191 @@ +{ + "manifests": { + "symfony/framework-bundle": { + "manifest": { + "bundles": { + "Symfony\\Bundle\\FrameworkBundle\\FrameworkBundle": [ + "all" + ] + }, + "copy-from-recipe": { + "config/": "%CONFIG_DIR%/", + "public/": "%PUBLIC_DIR%/", + "src/": "%SRC_DIR%/" + }, + "composer-scripts": { + "cache:clear": "symfony-cmd", + "assets:install %PUBLIC_DIR%": "symfony-cmd" + }, + "env": { + "APP_ENV": "dev", + "APP_SECRET": "%generate(secret)%" + }, + "gitignore": [ + "/.env.local", + "/.env.local.php", + "/.env.*.local", + "/%CONFIG_DIR%/secrets/prod/prod.decrypt.private.php", + "/%PUBLIC_DIR%/bundles/", + "/%VAR_DIR%/", + "/vendor/" + ], + "post-install-output": [ + " * 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" + ] + }, + "files": { + "config/packages/cache.yaml": { + "contents": [ + "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", + "" + ], + "executable": false + }, + "config/packages/framework.yaml": { + "contents": [ + "# see https://symfony.com/doc/current/reference/configuration/framework.html", + "framework:", + " secret: '%env(APP_SECRET)%'", + " #csrf_protection: true", + " http_method_override: false", + " handle_all_throwables: true", + "", + " # Enables session support. Note that the session will ONLY be started if you read or write from it.", + " # Remove or comment this section to explicitly disable session support.", + " session:", + " handler_id: null", + " cookie_secure: auto", + " cookie_samesite: lax", + " storage_factory_id: session.storage.factory.native", + "", + " #esi: true", + " #fragments: true", + " php_errors:", + " log: true", + "", + "when@test:", + " framework:", + " test: true", + " session:", + " storage_factory_id: session.storage.factory.mock_file", + "" + ], + "executable": false + }, + "config/preload.php": { + "contents": [ + "