diff --git a/archived/datana-gmbh.logz-io-handler/f4451b890bd52ca14812f70d68d733b5f2de6ea4.json b/archived/datana-gmbh.logz-io-handler/f4451b890bd52ca14812f70d68d733b5f2de6ea4.json new file mode 100644 index 00000000..6d2684b0 --- /dev/null +++ b/archived/datana-gmbh.logz-io-handler/f4451b890bd52ca14812f70d68d733b5f2de6ea4.json @@ -0,0 +1,34 @@ +{ + "manifests": { + "datana-gmbh/logz-io-handler": { + "manifest": { + "copy-from-recipe": { + "config/": "%CONFIG_DIR%/" + }, + "env": { + "LOGZ_IO_TOKEN": "", + "LOGZ_IO_APPLICATION_NAME": "" + } + }, + "files": { + "config/packages/datana_logz_io_handler.yaml": { + "contents": [ + "services:", + " Inpsyde\\LogzIoMonolog\\Handler\\LogzIoHandler:", + " arguments:", + " $token: '%env(LOGZ_IO_TOKEN)%'", + " $host: 'listener-eu.logz.io'", + "", + " Datana\\LogzIo\\Handler\\Processor\\AddApplicationNameProcessor:", + " arguments:", + " - '%env(LOGZ_IO_APPLICATION_NAME)%'", + " tags: ['monolog.processor']", + "" + ], + "executable": false + } + }, + "ref": "f4451b890bd52ca14812f70d68d733b5f2de6ea4" + } + } +} diff --git a/archived/datana-gmbh.zammad-api/a6faf65c34a5e17f25d32c1d54a50fd06246b8ae.json b/archived/datana-gmbh.zammad-api/a6faf65c34a5e17f25d32c1d54a50fd06246b8ae.json new file mode 100644 index 00000000..46c2d225 --- /dev/null +++ b/archived/datana-gmbh.zammad-api/a6faf65c34a5e17f25d32c1d54a50fd06246b8ae.json @@ -0,0 +1,48 @@ +{ + "manifests": { + "datana-gmbh/zammad-api": { + "manifest": { + "copy-from-recipe": { + "config/": "%CONFIG_DIR%/" + }, + "env": { + "ZAMMAD_API_BASE_URI": "", + "ZAMMAD_API_TOKEN": "" + } + }, + "files": { + "config/packages/datana_zammad_api.yaml": { + "contents": [ + "services:", + " _defaults:", + " autowire: true", + "", + " Datana\\Zammad\\Api\\ZammadClient:", + " arguments:", + " - '%env(ZAMMAD_API_BASE_URI)%'", + " - '%env(ZAMMAD_API_TOKEN)%'", + "", + " Datana\\Zammad\\Api\\TicketsApi: null", + " Datana\\Zammad\\Api\\NullTicketsApi: null", + " Datana\\Zammad\\Api\\TicketsApiInterface: '@Datana\\Zammad\\Api\\TicketsApi'", + "", + "when@prod:", + " services:", + " Datana\\Zammad\\Api\\TicketsApiInterface: '@Datana\\Zammad\\Api\\TicketsApi'", + "", + "when@dev:", + " services:", + " Datana\\Zammad\\Api\\TicketsApiInterface: '@Datana\\Zammad\\Api\\NullTicketsApi'", + "", + "when@test:", + " services:", + " Datana\\Zammad\\Api\\TicketsApiInterface: '@Datana\\Zammad\\Api\\NullTicketsApi'", + "" + ], + "executable": false + } + }, + "ref": "a6faf65c34a5e17f25d32c1d54a50fd06246b8ae" + } + } +} diff --git a/archived/jane-php.json-schema/4ff67f4938664fce920aee616c112a682519e512.json b/archived/jane-php.json-schema/4ff67f4938664fce920aee616c112a682519e512.json new file mode 100644 index 00000000..8306fe71 --- /dev/null +++ b/archived/jane-php.json-schema/4ff67f4938664fce920aee616c112a682519e512.json @@ -0,0 +1,75 @@ +{ + "manifests": { + "jane-php/json-schema": { + "manifest": { + "copy-from-recipe": { + "bin/": "%BIN_DIR%/", + "config/": "%CONFIG_DIR%/" + }, + "conflict": { + "symfony/symfony": "<5.0" + }, + "post-install-output": [ + " * Finish package configuration:", + " 1. Configure config/jane/json_schema.php with your specification details", + " 2. Run bin/jane-json-schema-generate", + " 3. Add generated/ directory to your composer autoload definition (eg. \"MyApp\\\\Library\\\\Generated\\\\\": \"generated/\")", + " 4. Open config/packages/jane.yaml and replace MyApp\\Library\\Generated\\ namespace with your generated namespace.", + " 5. Then remove line comments", + "", + "Documentation: https://jane.readthedocs.io/en/latest/" + ] + }, + "files": { + "bin/jane-json-schema-generate": { + "contents": [ + "#!/usr/bin/env php", + " __DIR__ . '/../config/jane/json_schema.php'], $command->getDefinition());", + "", + "$command->execute($inputArray, new NullOutput());", + "" + ], + "executable": true + }, + "config/jane/json_schema.php": { + "contents": [ + " __DIR__ . '/json-schema.json',", + " 'root-class' => 'MyModel',", + " 'namespace' => 'MyApp\\Library\\Generated',", + " 'directory' => __DIR__ . '/../../generated',", + "];", + "" + ], + "executable": false + }, + "config/packages/jane.yaml": { + "contents": [ + "services:", + " _defaults:", + " autowire: true", + " autoconfigure: true", + "", + "# MyApp\\Library\\Generated\\Normalizer\\JaneObjectNormalizer: null", + "" + ], + "executable": false + } + }, + "ref": "4ff67f4938664fce920aee616c112a682519e512" + } + } +} diff --git a/archived/jane-php.open-api-common/9443fa0142137a4a09eb7fd5caffc0710e0d7595.json b/archived/jane-php.open-api-common/9443fa0142137a4a09eb7fd5caffc0710e0d7595.json new file mode 100644 index 00000000..8633cd60 --- /dev/null +++ b/archived/jane-php.open-api-common/9443fa0142137a4a09eb7fd5caffc0710e0d7595.json @@ -0,0 +1,75 @@ +{ + "manifests": { + "jane-php/open-api-common": { + "manifest": { + "copy-from-recipe": { + "bin/": "%BIN_DIR%/", + "config/": "%CONFIG_DIR%/" + }, + "conflict": { + "symfony/symfony": "<5.0" + }, + "post-install-output": [ + " * Finish package configuration:", + " 1. Configure config/jane/open_api.php with your specification details", + " 2. Run bin/jane-open-api-generate", + " 3. Add generated/ directory to your composer autoload definition (eg. \"MyApp\\\\Library\\\\Generated\\\\\": \"generated/\")", + " 4. Open config/packages/jane.yaml and replace MyApp\\Library\\Generated\\ namespace with your generated namespace.", + " 5. Then remove line comments", + "", + "Documentation: https://jane.readthedocs.io/en/latest/" + ] + }, + "files": { + "bin/jane-open-api-generate": { + "contents": [ + "#!/usr/bin/env php", + " __DIR__ . '/../config/jane/open_api.php'], $command->getDefinition());", + "", + "$command->execute($inputArray, new NullOutput());", + "" + ], + "executable": true + }, + "config/jane/open_api.php": { + "contents": [ + " __DIR__ . '/open-api.yaml',", + " 'namespace' => 'MyApp\\Library\\Generated',", + " 'directory' => __DIR__ . '/../../generated',", + "];", + "" + ], + "executable": false + }, + "config/packages/jane.yaml": { + "contents": [ + "services:", + " _defaults:", + " autowire: true", + " autoconfigure: true", + "", + "# MyApp\\Library\\Generated\\Normalizer\\JaneObjectNormalizer: null", + "" + ], + "executable": false + } + }, + "ref": "9443fa0142137a4a09eb7fd5caffc0710e0d7595" + } + } +} diff --git a/archived/nucleos.dompdf-bundle/ac77a0c751bdccab42ddc73d7290719b31ecb691.json b/archived/nucleos.dompdf-bundle/ac77a0c751bdccab42ddc73d7290719b31ecb691.json new file mode 100644 index 00000000..13e531d8 --- /dev/null +++ b/archived/nucleos.dompdf-bundle/ac77a0c751bdccab42ddc73d7290719b31ecb691.json @@ -0,0 +1,29 @@ +{ + "manifests": { + "nucleos/dompdf-bundle": { + "manifest": { + "bundles": { + "Nucleos\\DompdfBundle\\NucleosDompdfBundle": [ + "all" + ] + }, + "copy-from-recipe": { + "config/": "%CONFIG_DIR%/" + } + }, + "files": { + "config/packages/nucleos_dompdf.yaml": { + "contents": [ + "nucleos_dompdf:", + " defaults:", + " chroot: '%kernel.project_dir%/public/assets' # See https://github.com/dompdf/dompdf/wiki/Usage#security-restrictions-for-local-files", + " logOutputFile: '' # Prevent creating `/tmp/log.htm` which causes problems in some server configurations", + "" + ], + "executable": false + } + }, + "ref": "ac77a0c751bdccab42ddc73d7290719b31ecb691" + } + } +} diff --git a/archived/sonata-project.block-bundle/b4edd2a1e6ac1827202f336cac2771cb529de542.json b/archived/sonata-project.block-bundle/b4edd2a1e6ac1827202f336cac2771cb529de542.json new file mode 100644 index 00000000..9493c4b7 --- /dev/null +++ b/archived/sonata-project.block-bundle/b4edd2a1e6ac1827202f336cac2771cb529de542.json @@ -0,0 +1,27 @@ +{ + "manifests": { + "sonata-project/block-bundle": { + "manifest": { + "bundles": { + "Sonata\\BlockBundle\\SonataBlockBundle": [ + "all" + ] + }, + "copy-from-recipe": { + "config/": "%CONFIG_DIR%/" + } + }, + "files": { + "config/packages/sonata_block.yaml": { + "contents": [ + "sonata_block:", + " http_cache: false", + "" + ], + "executable": false + } + }, + "ref": "b4edd2a1e6ac1827202f336cac2771cb529de542" + } + } +} diff --git a/archived/sonata-project.doctrine-extensions/4ea4a4b6730f83239608d7d4c849533645c70169.json b/archived/sonata-project.doctrine-extensions/4ea4a4b6730f83239608d7d4c849533645c70169.json new file mode 100644 index 00000000..5bc84f56 --- /dev/null +++ b/archived/sonata-project.doctrine-extensions/4ea4a4b6730f83239608d7d4c849533645c70169.json @@ -0,0 +1,15 @@ +{ + "manifests": { + "sonata-project/doctrine-extensions": { + "manifest": { + "bundles": { + "Sonata\\Doctrine\\Bridge\\Symfony\\SonataDoctrineBundle": [ + "all" + ] + } + }, + "files": [], + "ref": "4ea4a4b6730f83239608d7d4c849533645c70169" + } + } +} diff --git a/archived/sonata-project.exporter/93d6df022ef1dc24bdfa8667ddd560bbde89a7cc.json b/archived/sonata-project.exporter/93d6df022ef1dc24bdfa8667ddd560bbde89a7cc.json new file mode 100644 index 00000000..9a1c59f7 --- /dev/null +++ b/archived/sonata-project.exporter/93d6df022ef1dc24bdfa8667ddd560bbde89a7cc.json @@ -0,0 +1,15 @@ +{ + "manifests": { + "sonata-project/exporter": { + "manifest": { + "bundles": { + "Sonata\\Exporter\\Bridge\\Symfony\\SonataExporterBundle": [ + "all" + ] + } + }, + "files": [], + "ref": "93d6df022ef1dc24bdfa8667ddd560bbde89a7cc" + } + } +} diff --git a/archived/sonata-project.twig-extensions/30dba2f9b719f21b497a6302f41aac07f9079e13.json b/archived/sonata-project.twig-extensions/30dba2f9b719f21b497a6302f41aac07f9079e13.json new file mode 100644 index 00000000..67fef3c6 --- /dev/null +++ b/archived/sonata-project.twig-extensions/30dba2f9b719f21b497a6302f41aac07f9079e13.json @@ -0,0 +1,15 @@ +{ + "manifests": { + "sonata-project/twig-extensions": { + "manifest": { + "bundles": { + "Sonata\\Twig\\Bridge\\Symfony\\SonataTwigBundle": [ + "all" + ] + } + }, + "files": [], + "ref": "30dba2f9b719f21b497a6302f41aac07f9079e13" + } + } +} diff --git a/archived/victor-prdh.recaptcha-bundle/f604d862b3ce4434d131a0e9b3a2eb7bb1784aff.json b/archived/victor-prdh.recaptcha-bundle/f604d862b3ce4434d131a0e9b3a2eb7bb1784aff.json new file mode 100644 index 00000000..2ba6a220 --- /dev/null +++ b/archived/victor-prdh.recaptcha-bundle/f604d862b3ce4434d131a0e9b3a2eb7bb1784aff.json @@ -0,0 +1,32 @@ +{ + "manifests": { + "victor-prdh/recaptcha-bundle": { + "manifest": { + "bundles": { + "VictorPrdh\\RecaptchaBundle\\RecaptchaBundle": [ + "all" + ] + }, + "env": { + "GOOGLE_RECAPTCHA_SITE_KEY": "", + "GOOGLE_RECAPTCHA_SECRET_KEY": "" + }, + "copy-from-recipe": { + "config/": "%CONFIG_DIR%/" + } + }, + "files": { + "config/packages/recaptcha.yaml": { + "contents": [ + "recaptcha:", + " google_site_key: '%env(GOOGLE_RECAPTCHA_SITE_KEY)%'", + " google_secret_key: '%env(GOOGLE_RECAPTCHA_SECRET_KEY)%'", + "" + ], + "executable": false + } + }, + "ref": "f604d862b3ce4434d131a0e9b3a2eb7bb1784aff" + } + } +} diff --git a/datana-gmbh.logz-io-handler.1.0.json b/datana-gmbh.logz-io-handler.1.0.json new file mode 100644 index 00000000..6d2684b0 --- /dev/null +++ b/datana-gmbh.logz-io-handler.1.0.json @@ -0,0 +1,34 @@ +{ + "manifests": { + "datana-gmbh/logz-io-handler": { + "manifest": { + "copy-from-recipe": { + "config/": "%CONFIG_DIR%/" + }, + "env": { + "LOGZ_IO_TOKEN": "", + "LOGZ_IO_APPLICATION_NAME": "" + } + }, + "files": { + "config/packages/datana_logz_io_handler.yaml": { + "contents": [ + "services:", + " Inpsyde\\LogzIoMonolog\\Handler\\LogzIoHandler:", + " arguments:", + " $token: '%env(LOGZ_IO_TOKEN)%'", + " $host: 'listener-eu.logz.io'", + "", + " Datana\\LogzIo\\Handler\\Processor\\AddApplicationNameProcessor:", + " arguments:", + " - '%env(LOGZ_IO_APPLICATION_NAME)%'", + " tags: ['monolog.processor']", + "" + ], + "executable": false + } + }, + "ref": "f4451b890bd52ca14812f70d68d733b5f2de6ea4" + } + } +} diff --git a/datana-gmbh.zammad-api.1.0.json b/datana-gmbh.zammad-api.1.0.json new file mode 100644 index 00000000..46c2d225 --- /dev/null +++ b/datana-gmbh.zammad-api.1.0.json @@ -0,0 +1,48 @@ +{ + "manifests": { + "datana-gmbh/zammad-api": { + "manifest": { + "copy-from-recipe": { + "config/": "%CONFIG_DIR%/" + }, + "env": { + "ZAMMAD_API_BASE_URI": "", + "ZAMMAD_API_TOKEN": "" + } + }, + "files": { + "config/packages/datana_zammad_api.yaml": { + "contents": [ + "services:", + " _defaults:", + " autowire: true", + "", + " Datana\\Zammad\\Api\\ZammadClient:", + " arguments:", + " - '%env(ZAMMAD_API_BASE_URI)%'", + " - '%env(ZAMMAD_API_TOKEN)%'", + "", + " Datana\\Zammad\\Api\\TicketsApi: null", + " Datana\\Zammad\\Api\\NullTicketsApi: null", + " Datana\\Zammad\\Api\\TicketsApiInterface: '@Datana\\Zammad\\Api\\TicketsApi'", + "", + "when@prod:", + " services:", + " Datana\\Zammad\\Api\\TicketsApiInterface: '@Datana\\Zammad\\Api\\TicketsApi'", + "", + "when@dev:", + " services:", + " Datana\\Zammad\\Api\\TicketsApiInterface: '@Datana\\Zammad\\Api\\NullTicketsApi'", + "", + "when@test:", + " services:", + " Datana\\Zammad\\Api\\TicketsApiInterface: '@Datana\\Zammad\\Api\\NullTicketsApi'", + "" + ], + "executable": false + } + }, + "ref": "a6faf65c34a5e17f25d32c1d54a50fd06246b8ae" + } + } +} diff --git a/index.json b/index.json index 17422ee4..5ae0cd60 100644 --- a/index.json +++ b/index.json @@ -276,9 +276,15 @@ "datana-gmbh/intercom-config": [ "1.1" ], + "datana-gmbh/logz-io-handler": [ + "1.0" + ], "datana-gmbh/sendgrid-dynamic-template-mailer": [ "1.0" ], + "datana-gmbh/zammad-api": [ + "1.0" + ], "deamon/logger-extra-bundle": [ "4.0" ], @@ -631,10 +637,12 @@ ], "jane-php/json-schema": [ "5.0", - "6.0" + "6.0", + "7.0" ], "jane-php/open-api-common": [ - "6.0" + "6.0", + "7.0" ], "jawira/case-converter-twig": [ "0.0" @@ -1346,12 +1354,21 @@ "3.64", "4.0" ], + "sonata-project/block-bundle": [ + "4.11" + ], "sonata-project/classification-bundle": [ "3.7" ], "sonata-project/core-bundle": [ "3.9" ], + "sonata-project/doctrine-extensions": [ + "1.8" + ], + "sonata-project/exporter": [ + "2.4" + ], "sonata-project/form-extensions": [ "1.0", "1.4" @@ -1368,6 +1385,9 @@ "sonata-project/translation-bundle": [ "2.3" ], + "sonata-project/twig-extensions": [ + "1.2" + ], "spiechu/symfony-commons-bundle": [ "0.1" ], @@ -1565,6 +1585,9 @@ "vich/uploader-bundle": [ "1.7" ], + "victor-prdh/recaptcha-bundle": [ + "1.5" + ], "vincentchalamon/nav-bundle": [ "1.0" ], @@ -1647,11 +1670,17 @@ "jane-php/json-schema": { "6.0": { "symfony/symfony": "<5.0" + }, + "7.0": { + "symfony/symfony": "<5.0" } }, "jane-php/open-api-common": { "6.0": { "symfony/symfony": "<5.0" + }, + "7.0": { + "symfony/symfony": "<5.0" } } }, diff --git a/jane-php.json-schema.7.0.json b/jane-php.json-schema.7.0.json new file mode 100644 index 00000000..8306fe71 --- /dev/null +++ b/jane-php.json-schema.7.0.json @@ -0,0 +1,75 @@ +{ + "manifests": { + "jane-php/json-schema": { + "manifest": { + "copy-from-recipe": { + "bin/": "%BIN_DIR%/", + "config/": "%CONFIG_DIR%/" + }, + "conflict": { + "symfony/symfony": "<5.0" + }, + "post-install-output": [ + " * Finish package configuration:", + " 1. Configure config/jane/json_schema.php with your specification details", + " 2. Run bin/jane-json-schema-generate", + " 3. Add generated/ directory to your composer autoload definition (eg. \"MyApp\\\\Library\\\\Generated\\\\\": \"generated/\")", + " 4. Open config/packages/jane.yaml and replace MyApp\\Library\\Generated\\ namespace with your generated namespace.", + " 5. Then remove line comments", + "", + "Documentation: https://jane.readthedocs.io/en/latest/" + ] + }, + "files": { + "bin/jane-json-schema-generate": { + "contents": [ + "#!/usr/bin/env php", + " __DIR__ . '/../config/jane/json_schema.php'], $command->getDefinition());", + "", + "$command->execute($inputArray, new NullOutput());", + "" + ], + "executable": true + }, + "config/jane/json_schema.php": { + "contents": [ + " __DIR__ . '/json-schema.json',", + " 'root-class' => 'MyModel',", + " 'namespace' => 'MyApp\\Library\\Generated',", + " 'directory' => __DIR__ . '/../../generated',", + "];", + "" + ], + "executable": false + }, + "config/packages/jane.yaml": { + "contents": [ + "services:", + " _defaults:", + " autowire: true", + " autoconfigure: true", + "", + "# MyApp\\Library\\Generated\\Normalizer\\JaneObjectNormalizer: null", + "" + ], + "executable": false + } + }, + "ref": "4ff67f4938664fce920aee616c112a682519e512" + } + } +} diff --git a/jane-php.open-api-common.7.0.json b/jane-php.open-api-common.7.0.json new file mode 100644 index 00000000..8633cd60 --- /dev/null +++ b/jane-php.open-api-common.7.0.json @@ -0,0 +1,75 @@ +{ + "manifests": { + "jane-php/open-api-common": { + "manifest": { + "copy-from-recipe": { + "bin/": "%BIN_DIR%/", + "config/": "%CONFIG_DIR%/" + }, + "conflict": { + "symfony/symfony": "<5.0" + }, + "post-install-output": [ + " * Finish package configuration:", + " 1. Configure config/jane/open_api.php with your specification details", + " 2. Run bin/jane-open-api-generate", + " 3. Add generated/ directory to your composer autoload definition (eg. \"MyApp\\\\Library\\\\Generated\\\\\": \"generated/\")", + " 4. Open config/packages/jane.yaml and replace MyApp\\Library\\Generated\\ namespace with your generated namespace.", + " 5. Then remove line comments", + "", + "Documentation: https://jane.readthedocs.io/en/latest/" + ] + }, + "files": { + "bin/jane-open-api-generate": { + "contents": [ + "#!/usr/bin/env php", + " __DIR__ . '/../config/jane/open_api.php'], $command->getDefinition());", + "", + "$command->execute($inputArray, new NullOutput());", + "" + ], + "executable": true + }, + "config/jane/open_api.php": { + "contents": [ + " __DIR__ . '/open-api.yaml',", + " 'namespace' => 'MyApp\\Library\\Generated',", + " 'directory' => __DIR__ . '/../../generated',", + "];", + "" + ], + "executable": false + }, + "config/packages/jane.yaml": { + "contents": [ + "services:", + " _defaults:", + " autowire: true", + " autoconfigure: true", + "", + "# MyApp\\Library\\Generated\\Normalizer\\JaneObjectNormalizer: null", + "" + ], + "executable": false + } + }, + "ref": "9443fa0142137a4a09eb7fd5caffc0710e0d7595" + } + } +} diff --git a/nucleos.dompdf-bundle.3.1.json b/nucleos.dompdf-bundle.3.1.json index 13e1e298..13e531d8 100644 --- a/nucleos.dompdf-bundle.3.1.json +++ b/nucleos.dompdf-bundle.3.1.json @@ -17,12 +17,13 @@ "nucleos_dompdf:", " defaults:", " chroot: '%kernel.project_dir%/public/assets' # See https://github.com/dompdf/dompdf/wiki/Usage#security-restrictions-for-local-files", + " logOutputFile: '' # Prevent creating `/tmp/log.htm` which causes problems in some server configurations", "" ], "executable": false } }, - "ref": "1021b8850e3d41716cd324c73160384e70a9857e" + "ref": "ac77a0c751bdccab42ddc73d7290719b31ecb691" } } } diff --git a/sonata-project.block-bundle.4.11.json b/sonata-project.block-bundle.4.11.json new file mode 100644 index 00000000..9493c4b7 --- /dev/null +++ b/sonata-project.block-bundle.4.11.json @@ -0,0 +1,27 @@ +{ + "manifests": { + "sonata-project/block-bundle": { + "manifest": { + "bundles": { + "Sonata\\BlockBundle\\SonataBlockBundle": [ + "all" + ] + }, + "copy-from-recipe": { + "config/": "%CONFIG_DIR%/" + } + }, + "files": { + "config/packages/sonata_block.yaml": { + "contents": [ + "sonata_block:", + " http_cache: false", + "" + ], + "executable": false + } + }, + "ref": "b4edd2a1e6ac1827202f336cac2771cb529de542" + } + } +} diff --git a/sonata-project.doctrine-extensions.1.8.json b/sonata-project.doctrine-extensions.1.8.json new file mode 100644 index 00000000..5bc84f56 --- /dev/null +++ b/sonata-project.doctrine-extensions.1.8.json @@ -0,0 +1,15 @@ +{ + "manifests": { + "sonata-project/doctrine-extensions": { + "manifest": { + "bundles": { + "Sonata\\Doctrine\\Bridge\\Symfony\\SonataDoctrineBundle": [ + "all" + ] + } + }, + "files": [], + "ref": "4ea4a4b6730f83239608d7d4c849533645c70169" + } + } +} diff --git a/sonata-project.exporter.2.4.json b/sonata-project.exporter.2.4.json new file mode 100644 index 00000000..9a1c59f7 --- /dev/null +++ b/sonata-project.exporter.2.4.json @@ -0,0 +1,15 @@ +{ + "manifests": { + "sonata-project/exporter": { + "manifest": { + "bundles": { + "Sonata\\Exporter\\Bridge\\Symfony\\SonataExporterBundle": [ + "all" + ] + } + }, + "files": [], + "ref": "93d6df022ef1dc24bdfa8667ddd560bbde89a7cc" + } + } +} diff --git a/sonata-project.twig-extensions.1.2.json b/sonata-project.twig-extensions.1.2.json new file mode 100644 index 00000000..67fef3c6 --- /dev/null +++ b/sonata-project.twig-extensions.1.2.json @@ -0,0 +1,15 @@ +{ + "manifests": { + "sonata-project/twig-extensions": { + "manifest": { + "bundles": { + "Sonata\\Twig\\Bridge\\Symfony\\SonataTwigBundle": [ + "all" + ] + } + }, + "files": [], + "ref": "30dba2f9b719f21b497a6302f41aac07f9079e13" + } + } +} diff --git a/victor-prdh.recaptcha-bundle.1.5.json b/victor-prdh.recaptcha-bundle.1.5.json new file mode 100644 index 00000000..2ba6a220 --- /dev/null +++ b/victor-prdh.recaptcha-bundle.1.5.json @@ -0,0 +1,32 @@ +{ + "manifests": { + "victor-prdh/recaptcha-bundle": { + "manifest": { + "bundles": { + "VictorPrdh\\RecaptchaBundle\\RecaptchaBundle": [ + "all" + ] + }, + "env": { + "GOOGLE_RECAPTCHA_SITE_KEY": "", + "GOOGLE_RECAPTCHA_SECRET_KEY": "" + }, + "copy-from-recipe": { + "config/": "%CONFIG_DIR%/" + } + }, + "files": { + "config/packages/recaptcha.yaml": { + "contents": [ + "recaptcha:", + " google_site_key: '%env(GOOGLE_RECAPTCHA_SITE_KEY)%'", + " google_secret_key: '%env(GOOGLE_RECAPTCHA_SECRET_KEY)%'", + "" + ], + "executable": false + } + }, + "ref": "f604d862b3ce4434d131a0e9b3a2eb7bb1784aff" + } + } +}