diff --git a/.travis.yml b/.travis.yml index e08751a5..76b43896 100644 --- a/.travis.yml +++ b/.travis.yml @@ -8,10 +8,15 @@ cache: matrix: fast_finish: true include: - - php: 7.4snapshot + - php: 7.4 + env: SKELETON_VERSION="^3.4" + - php: 7.4 + env: SKELETON_VERSION="^4.4" + - php: 7.4 + env: SKELETON_VERSION="^5.0" + allow_failures: + - php: 7.4 env: SKELETON_VERSION="^3.4" - - php: 7.4snapshot - env: SKELETON_VERSION="^4.0" before_install: - phpenv config-rm xdebug.ini || true @@ -24,5 +29,24 @@ install: - cd flex - composer config extra.symfony.allow-contrib true -script: - - composer req --ignore-platform-reqs $(echo $PACKAGES) +before_script: + - | + install_package() { + composer require --ignore-platform-reqs $@; + EXIT_CODE=$?; + + MESSAGE=""; + if [[ EXIT_CODE -eq 0 ]]; then + exit 0; + elif [[ EXIT_CODE -eq 1 ]]; then + MESSAGE="Could not install package and configure package."; + elif [[ EXIT_CODE -eq 2 ]]; then + MESSAGE="Could not resolve dependencies.\n# You can ignore this error if your package does not support Symfony $SKELETON_VERSION"; + fi + + echo -e "\n#\n#\n# $MESSAGE\n#\n#\n#\n"; + exit $EXIT_CODE; + } + export -f install_package + +script: install_package $(echo $PACKAGES) diff --git a/akondas/symfony-consul-bundle/0.1/config/packages/consul.yaml b/akondas/symfony-consul-bundle/0.1/config/packages/consul.yaml new file mode 100644 index 00000000..e3144479 --- /dev/null +++ b/akondas/symfony-consul-bundle/0.1/config/packages/consul.yaml @@ -0,0 +1,7 @@ +consul: + service: + name: '%env(resolve:CONSUL_SERVICE_NAME)%' + host: '%env(resolve:CONSUL_SERVICE_HOST)%' + port: '%env(resolve:CONSUL_SERVICE_PORT)%' + client: + base_uri: '%env(resolve:CONSUL_CLIENT_BASE_URI)%' diff --git a/akondas/symfony-consul-bundle/0.1/config/routes/consul.yaml b/akondas/symfony-consul-bundle/0.1/config/routes/consul.yaml new file mode 100644 index 00000000..aec921f5 --- /dev/null +++ b/akondas/symfony-consul-bundle/0.1/config/routes/consul.yaml @@ -0,0 +1,2 @@ +consul_bundle: + resource: "@ConsulBundle/Resources/config/routing.yml" diff --git a/akondas/symfony-consul-bundle/0.1/manifest.json b/akondas/symfony-consul-bundle/0.1/manifest.json new file mode 100644 index 00000000..a1d56073 --- /dev/null +++ b/akondas/symfony-consul-bundle/0.1/manifest.json @@ -0,0 +1,14 @@ +{ + "bundles": { + "Akondas\\ConsulBundle\\ConsulBundle": ["all"] + }, + "copy-from-recipe": { + "config/": "%CONFIG_DIR%/" + }, + "env": { + "CONSUL_SERVICE_NAME": "symfony-app", + "CONSUL_SERVICE_HOST": "localhost", + "CONSUL_SERVICE_PORT": "8000", + "CONSUL_CLIENT_BASE_URI": "http://127.0.0.1:8500" + } +} diff --git a/alexandret/evc-bundle/1.0/config/packages/alexandre_evc.yaml b/alexandret/evc-bundle/1.0/config/packages/alexandre_evc.yaml new file mode 100644 index 00000000..b36cf618 --- /dev/null +++ b/alexandret/evc-bundle/1.0/config/packages/alexandre_evc.yaml @@ -0,0 +1,4 @@ +alexandre_evc: + api_id: '%env(EVC_API)%' + username: '%env(EVC_USERNAME)%' + password: '%env(EVC_PASSWORD)%' diff --git a/alexandret/evc-bundle/1.0/manifest.json b/alexandret/evc-bundle/1.0/manifest.json new file mode 100644 index 00000000..4389932b --- /dev/null +++ b/alexandret/evc-bundle/1.0/manifest.json @@ -0,0 +1,13 @@ +{ + "bundles": { + "Alexandre\\EvcBundle\\AlexandreEvcBundle": ["all"] + }, + "copy-from-recipe": { + "config/": "%CONFIG_DIR%/" + }, + "env": { + "EVC_API": "Enter the api version provided by evc.de support", + "EVC_USERNAME": "Enter your reseller account number", + "EVC_PASSWORD": "Enter your api password, not the password to connect on evc.de website" + } +} diff --git a/ambient-link/ability-sdk/1.0/config/packages/ability.yaml b/ambient-link/ability-sdk/1.0/config/packages/ability.yaml new file mode 100644 index 00000000..86db1c41 --- /dev/null +++ b/ambient-link/ability-sdk/1.0/config/packages/ability.yaml @@ -0,0 +1,18 @@ +services: + AmbientLink\SDK\SmartMonkeyConnection: + arguments: ['@amnient.link_connection_settings', '%env(AMBIENT_LINK_USERNAME)%', '%env(AMBIENT_LINK_PASSWORD)%'] + + amnient.link_connection_settings: + class: PhpMqtt\Client\ConnectionSettings + + PhpMqtt\Client\Contracts\MQTTClient: '@PhpMqtt\Client\MQTTClient' + PhpMqtt\Client\MQTTClient: + arguments: + - '%env(AMBIENT_LINK_HOST)%' + - '%env(AMBIENT_LINK_PORT)%' + - '%env(AMBIENT_LINK_MONKEY_ID)%' + + AmbientLink\SDK\Mqtt\MqttAdapter: + arguments: + $username: '%env(AMBIENT_LINK_USERNAME)%' + $password: '%env(AMBIENT_LINK_PASSWORD)%' diff --git a/ambient-link/ability-sdk/1.0/manifest.json b/ambient-link/ability-sdk/1.0/manifest.json new file mode 100644 index 00000000..2c42a2fd --- /dev/null +++ b/ambient-link/ability-sdk/1.0/manifest.json @@ -0,0 +1,12 @@ +{ + "env": { + "AMBIENT_LINK_HOST": "", + "AMBIENT_LINK_PORT": "1883", + "AMBIENT_LINK_USERNAME": "", + "AMBIENT_LINK_PASSWORD": "", + "AMBIENT_LINK_MONKEY_ID": "" + }, + "copy-from-recipe": { + "config/": "%CONFIG_DIR%/" + } +} diff --git a/ambient-link/ability-sdk/1.0/post-install.txt b/ambient-link/ability-sdk/1.0/post-install.txt new file mode 100644 index 00000000..ba43d62d --- /dev/null +++ b/ambient-link/ability-sdk/1.0/post-install.txt @@ -0,0 +1,26 @@ + + To finish the install + + + * Your ability is almost ready: + 1. Edit src/AbilityEventSubscriber and implement your logic: + + public static function getSubscribedEvents(): array + { + return [ + // can be found in AmbientLink\SDK\Event\ + EnterRoomEvent::NAME => 'onEnterRoom', + ]; + } + + public function onEnterRoom(EnterRoomEvent $event): void + { + $roomName = $event->roomName(); + + $this->logger->debug(sprintf('Some person enters room "%s".', $roomName)); + + // @todo implement logic here + } + + * You can found Events in AmbientLink\SDK\Event\ + * Using Ability Command? Try php bin/console ability:debug --dummy diff --git a/andchir/shopkeeper4-comments/1.0/config/packages/comments.yaml b/andchir/shopkeeper4-comments/1.0/config/packages/comments.yaml new file mode 100644 index 00000000..0dba19fb --- /dev/null +++ b/andchir/shopkeeper4-comments/1.0/config/packages/comments.yaml @@ -0,0 +1,3 @@ +comments: + comment_class: App\MainBundle\Document\Comment + status_default: pending diff --git a/andchir/shopkeeper4-comments/1.0/config/routes/comments.yaml b/andchir/shopkeeper4-comments/1.0/config/routes/comments.yaml new file mode 100644 index 00000000..4edb88de --- /dev/null +++ b/andchir/shopkeeper4-comments/1.0/config/routes/comments.yaml @@ -0,0 +1,3 @@ +comments: + resource: '@CommentsBundle' + type: annotation diff --git a/andchir/shopkeeper4-comments/1.0/manifest.json b/andchir/shopkeeper4-comments/1.0/manifest.json new file mode 100644 index 00000000..79eef4cf --- /dev/null +++ b/andchir/shopkeeper4-comments/1.0/manifest.json @@ -0,0 +1,8 @@ +{ + "bundles": { + "Andchir\\CommentsBundle\\CommentsBundle": ["all"] + }, + "copy-from-recipe": { + "config/": "%CONFIG_DIR%/" + } +} diff --git a/antishov/doctrine-extensions-bundle/1.4/config/packages/stof_doctrine_extensions.yaml b/antishov/doctrine-extensions-bundle/1.4/config/packages/stof_doctrine_extensions.yaml new file mode 100644 index 00000000..c83f3b1d --- /dev/null +++ b/antishov/doctrine-extensions-bundle/1.4/config/packages/stof_doctrine_extensions.yaml @@ -0,0 +1,4 @@ +# Read the documentation: https://symfony.com/doc/current/bundles/StofDoctrineExtensionsBundle/index.html +# See the official DoctrineExtensions documentation for more details: https://github.com/Atlantic18/DoctrineExtensions/tree/master/doc/ +stof_doctrine_extensions: + default_locale: en_US diff --git a/antishov/doctrine-extensions-bundle/1.4/manifest.json b/antishov/doctrine-extensions-bundle/1.4/manifest.json new file mode 100644 index 00000000..5cdd299e --- /dev/null +++ b/antishov/doctrine-extensions-bundle/1.4/manifest.json @@ -0,0 +1,8 @@ +{ + "bundles": { + "Stof\\DoctrineExtensionsBundle\\StofDoctrineExtensionsBundle": ["all"] + }, + "copy-from-recipe": { + "config/": "%CONFIG_DIR%/" + } +} diff --git a/anyx/login-gate-bundle/1.0/config/packages/login_gate.yaml b/anyx/login-gate-bundle/1.0/config/packages/login_gate.yaml new file mode 100644 index 00000000..b19a34e3 --- /dev/null +++ b/anyx/login-gate-bundle/1.0/config/packages/login_gate.yaml @@ -0,0 +1,7 @@ +login_gate: + storages: ['session'] # Attempts storage engine. Available engines: ['orm', 'session', 'mongodb'] + options: + max_count_attempts: 3 + timeout: 600 # Ban period (in seconds ... 600 = 10 minutes) + watch_period: 3600 + diff --git a/anyx/login-gate-bundle/1.0/manifest.json b/anyx/login-gate-bundle/1.0/manifest.json new file mode 100644 index 00000000..29733aaa --- /dev/null +++ b/anyx/login-gate-bundle/1.0/manifest.json @@ -0,0 +1,8 @@ +{ + "bundles": { + "Anyx\\LoginGateBundle\\LoginGateBundle": ["all"] + }, + "copy-from-recipe": { + "config/": "%CONFIG_DIR%/" + } +} diff --git a/artox-lab/clarc-bundle/0.1/config/packages/artox_lab_clarc.yaml b/artox-lab/clarc-bundle/0.1/config/packages/artox_lab_clarc.yaml new file mode 100644 index 00000000..f72086be --- /dev/null +++ b/artox-lab/clarc-bundle/0.1/config/packages/artox_lab_clarc.yaml @@ -0,0 +1,4 @@ +artox_lab_clarc: + api: + serializer: + class: \ArtoxLab\Bundle\ClarcBundle\Core\Interfaces\UI\API\Transformers\Serializers\NullObjectArraySerializer diff --git a/artox-lab/clarc-bundle/0.1/manifest.json b/artox-lab/clarc-bundle/0.1/manifest.json new file mode 100644 index 00000000..bcc2701b --- /dev/null +++ b/artox-lab/clarc-bundle/0.1/manifest.json @@ -0,0 +1,14 @@ +{ + "bundles": { + "ArtoxLab\\Bundle\\ClarcBundle\\ArtoxLabClarcBundle": ["all"] + }, + "copy-from-recipe": { + "config/": "%CONFIG_DIR%/" + }, + "copy-from-package": { + "Layers/Entities/": "%SRC_DIR%/Entities/", + "Layers/UseCases/": "%SRC_DIR%/UseCases/", + "Layers/Interfaces/": "%SRC_DIR%/Interfaces/", + "Layers/Infrastructure/": "%SRC_DIR%/Infrastructure/" + } +} diff --git a/artox-lab/sms-bundle/1.0/config/packages/artox_lab_sms.yaml b/artox-lab/sms-bundle/1.0/config/packages/artox_lab_sms.yaml new file mode 100644 index 00000000..7e744ee9 --- /dev/null +++ b/artox-lab/sms-bundle/1.0/config/packages/artox_lab_sms.yaml @@ -0,0 +1,4 @@ +artox_lab_sms: + providers: + # You must to define at least one provider configuration + # See more info at https://github.com/artox-lab/sms-bundle diff --git a/artox-lab/sms-bundle/1.0/manifest.json b/artox-lab/sms-bundle/1.0/manifest.json new file mode 100644 index 00000000..1b1be053 --- /dev/null +++ b/artox-lab/sms-bundle/1.0/manifest.json @@ -0,0 +1,8 @@ +{ + "bundles": { + "ArtoxLab\\Bundle\\SmsBundle\\ArtoxLabSmsBundle": ["all"] + }, + "copy-from-recipe": { + "config/": "%CONFIG_DIR%/" + } +} diff --git a/artox-lab/sms-bundle/1.0/post-install.txt b/artox-lab/sms-bundle/1.0/post-install.txt new file mode 100644 index 00000000..e4268991 --- /dev/null +++ b/artox-lab/sms-bundle/1.0/post-install.txt @@ -0,0 +1,5 @@ +Getting started using artox-lab/sms-bundle. What's next? + + You must to define at least one provider configuration in %CONFIG_DIR%/packages/artox_lab_sms.yaml. + + * More info you can find in the documentation at https://github.com/artox-lab/sms-bundle#step-3-configuration diff --git a/async-aws/async-aws-bundle/0.1/config/packages/async_aws.yaml b/async-aws/async-aws-bundle/0.1/config/packages/async_aws.yaml new file mode 100644 index 00000000..664611e5 --- /dev/null +++ b/async-aws/async-aws-bundle/0.1/config/packages/async_aws.yaml @@ -0,0 +1,9 @@ +# Read documentation at https://async-aws.com/integration/symfony-bundle.html +async_aws: + config: + region: eu-central-1 + accessKeyId: '%env(AWS_KEY)%' + accessKeySecret: '%env(AWS_SECRET)%' + + # All installed clients are automatically autowired. Use this section to customize clients + clients: diff --git a/async-aws/async-aws-bundle/0.1/manifest.json b/async-aws/async-aws-bundle/0.1/manifest.json new file mode 100644 index 00000000..f0371b71 --- /dev/null +++ b/async-aws/async-aws-bundle/0.1/manifest.json @@ -0,0 +1,12 @@ +{ + "bundles": { + "AsyncAws\\Symfony\\Bundle\\AsyncAwsBundle": ["all"] + }, + "copy-from-recipe": { + "config/": "%CONFIG_DIR%/" + }, + "env": { + "AWS_KEY": "your-aws-key", + "AWS_SECRET": "your-aws-secret" + } +} diff --git a/async-aws/async-aws-bundle/1.0/config/packages/async_aws.yaml b/async-aws/async-aws-bundle/1.0/config/packages/async_aws.yaml new file mode 100644 index 00000000..a421c703 --- /dev/null +++ b/async-aws/async-aws-bundle/1.0/config/packages/async_aws.yaml @@ -0,0 +1,6 @@ +# Read documentation at https://async-aws.com/integration/symfony-bundle.html +async_aws: + config: + + # All installed clients are automatically autowired. Use this section to customize clients + clients: diff --git a/async-aws/async-aws-bundle/1.0/manifest.json b/async-aws/async-aws-bundle/1.0/manifest.json new file mode 100644 index 00000000..f7acf1e8 --- /dev/null +++ b/async-aws/async-aws-bundle/1.0/manifest.json @@ -0,0 +1,8 @@ +{ + "bundles": { + "AsyncAws\\Symfony\\Bundle\\AsyncAwsBundle": ["all"] + }, + "copy-from-recipe": { + "config/": "%CONFIG_DIR%/" + } +} diff --git a/baldinof/roadrunner-bundle/0.1/config/packages/baldinof_road_runner.yaml b/baldinof/roadrunner-bundle/0.1/config/packages/baldinof_road_runner.yaml new file mode 100644 index 00000000..74e34d15 --- /dev/null +++ b/baldinof/roadrunner-bundle/0.1/config/packages/baldinof_road_runner.yaml @@ -0,0 +1,2 @@ +baldinof_road_runner: + should_reboot_kernel: false diff --git a/baldinof/roadrunner-bundle/0.1/manifest.json b/baldinof/roadrunner-bundle/0.1/manifest.json new file mode 100644 index 00000000..bbbcf73a --- /dev/null +++ b/baldinof/roadrunner-bundle/0.1/manifest.json @@ -0,0 +1,14 @@ +{ + "copy-from-recipe": { + "config/": "%CONFIG_DIR%/" + }, + "copy-from-package": { + ".rr.yaml": ".rr.yaml" + }, + "bundles": { + "Baldinof\\RoadRunnerBundle\\BaldinofRoadRunnerBundle": ["all"] + }, + "gitignore": [ + "/bin/rr" + ] +} diff --git a/baldinof/roadrunner-bundle/0.1/post-install.txt b/baldinof/roadrunner-bundle/0.1/post-install.txt new file mode 100644 index 00000000..c77cdd5d --- /dev/null +++ b/baldinof/roadrunner-bundle/0.1/post-install.txt @@ -0,0 +1,7 @@ + + What's next for RoadRunner Bundle + + + * Download RoadRunner locally: vendor/bin/rr get --location bin/ + * Run your application: bin/rr serve --debug + * Visit http://localhost:8080 diff --git a/baldinof/roadrunner-bundle/1.2/config/packages/baldinof_road_runner.yaml b/baldinof/roadrunner-bundle/1.2/config/packages/baldinof_road_runner.yaml new file mode 100644 index 00000000..65267f38 --- /dev/null +++ b/baldinof/roadrunner-bundle/1.2/config/packages/baldinof_road_runner.yaml @@ -0,0 +1,18 @@ +baldinof_road_runner: + # The kernel is preserved between requests. Change this to `true` + # if you want to reboot it, and use a fresh container on each request. + should_reboot_kernel: false + + # Integrations are automatically detected, depending on installed bundle & current configuration + # See https://github.com/baldinof/roadrunner-bundle#integrations + default_integrations: true + + # Allow to send prometheus metrics to the master RoadRunner process, + # via a `Spiral\RoadRunner\MetricsInterface` service. + # See https://github.com/baldinof/roadrunner-bundle#metrics + metrics_enabled: false + + # You can use middlewares to manipulate PSR requests & responses. + # See https://github.com/baldinof/roadrunner-bundle#middlewares + # middlewares: + # - App\Middleware\YourMiddleware diff --git a/baldinof/roadrunner-bundle/1.2/manifest.json b/baldinof/roadrunner-bundle/1.2/manifest.json new file mode 100644 index 00000000..2bbe3132 --- /dev/null +++ b/baldinof/roadrunner-bundle/1.2/manifest.json @@ -0,0 +1,15 @@ +{ + "copy-from-recipe": { + "config/": "%CONFIG_DIR%/" + }, + "copy-from-package": { + ".rr.yaml": ".rr.yaml", + ".rr.dev.yaml": ".rr.dev.yaml" + }, + "bundles": { + "Baldinof\\RoadRunnerBundle\\BaldinofRoadRunnerBundle": ["all"] + }, + "gitignore": [ + "/bin/rr" + ] +} diff --git a/baldinof/roadrunner-bundle/1.2/post-install.txt b/baldinof/roadrunner-bundle/1.2/post-install.txt new file mode 100644 index 00000000..6f4781be --- /dev/null +++ b/baldinof/roadrunner-bundle/1.2/post-install.txt @@ -0,0 +1,8 @@ + + What's next for RoadRunner Bundle + + + * Download RoadRunner locally: vendor/bin/rr get --location bin/ + * Run your application: bin/rr serve -c .rr.dev.yaml --debug + * For production, use: bin/rr serve + * Visit http://localhost:8080 diff --git a/becklyn/javascript-routing/1.0/config/routes/becklyn_javascript_routing.yaml b/becklyn/javascript-routing/1.0/config/routes/becklyn_javascript_routing.yaml new file mode 100644 index 00000000..ecffc565 --- /dev/null +++ b/becklyn/javascript-routing/1.0/config/routes/becklyn_javascript_routing.yaml @@ -0,0 +1,3 @@ +_import.becklyn_javascript_routing: + resource: '@BecklynJavaScriptRoutingBundle/Resources/config/routes.yaml' + prefix: /_v/routing diff --git a/becklyn/javascript-routing/1.0/manifest.json b/becklyn/javascript-routing/1.0/manifest.json new file mode 100644 index 00000000..a3439073 --- /dev/null +++ b/becklyn/javascript-routing/1.0/manifest.json @@ -0,0 +1,8 @@ +{ + "bundles": { + "Becklyn\\JavaScriptRouting\\BecklynJavaScriptRoutingBundle": ["all"] + }, + "copy-from-recipe": { + "config/": "%CONFIG_DIR%/" + } +} diff --git a/becklyn/translations/1.0/config/routes/becklyn_translations.yaml b/becklyn/translations/1.0/config/routes/becklyn_translations.yaml new file mode 100644 index 00000000..618562af --- /dev/null +++ b/becklyn/translations/1.0/config/routes/becklyn_translations.yaml @@ -0,0 +1,3 @@ +_import.becklyn_translations: + resource: '@BecklynTranslationsBundle/Resources/config/routes.yaml' + prefix: /_v/translations/ diff --git a/becklyn/translations/1.0/manifest.json b/becklyn/translations/1.0/manifest.json new file mode 100644 index 00000000..537b7314 --- /dev/null +++ b/becklyn/translations/1.0/manifest.json @@ -0,0 +1,8 @@ +{ + "bundles": { + "Becklyn\\Translations\\BecklynTranslationsBundle": ["all"] + }, + "copy-from-recipe": { + "config/": "%CONFIG_DIR%/" + } +} diff --git a/biig/domain/1.0/config/packages/biig_domain.yaml b/biig/domain/1.0/config/packages/biig_domain.yaml new file mode 100644 index 00000000..e723c16b --- /dev/null +++ b/biig/domain/1.0/config/packages/biig_domain.yaml @@ -0,0 +1,9 @@ +biig_domain: + # Learn more about configuration in the bundle configuration reference + # https://github.com/biig-io/DomainComponent/blob/v1/docs/domain_event_dispatcher.md#configuration-reference + + # Post persist events are *not* activated by default, you need to enable the post persist listeners + persist_listeners: + # As doctrine supports many connections, you need to enable your connections one by one + doctrine: ['default'] + diff --git a/biig/domain/1.0/manifest.json b/biig/domain/1.0/manifest.json new file mode 100644 index 00000000..48c4d407 --- /dev/null +++ b/biig/domain/1.0/manifest.json @@ -0,0 +1,8 @@ +{ + "bundles": { + "Biig\\Component\\Domain\\Integration\\Symfony\\DomainBundle": ["all"] + }, + "copy-from-recipe": { + "config/": "%CONFIG_DIR%/" + } +} diff --git a/boshurik/telegram-bot-bundle/3.1/config/packages/boshurik_telegram_bot.yaml b/boshurik/telegram-bot-bundle/3.1/config/packages/boshurik_telegram_bot.yaml new file mode 100644 index 00000000..81f53c18 --- /dev/null +++ b/boshurik/telegram-bot-bundle/3.1/config/packages/boshurik_telegram_bot.yaml @@ -0,0 +1,3 @@ +boshurik_telegram_bot: + api: + token: "%env(TELEGRAM_BOT_TOKEN)%" diff --git a/boshurik/telegram-bot-bundle/3.1/config/routes/boshurik_telegram_bot.yaml b/boshurik/telegram-bot-bundle/3.1/config/routes/boshurik_telegram_bot.yaml new file mode 100644 index 00000000..f1071ece --- /dev/null +++ b/boshurik/telegram-bot-bundle/3.1/config/routes/boshurik_telegram_bot.yaml @@ -0,0 +1,3 @@ +boshurik_telegram_bot_routing: + resource: "@BoShurikTelegramBotBundle/Resources/config/routing.yml" + prefix: "/_telegram/%telegram_route_secret%" diff --git a/boshurik/telegram-bot-bundle/3.1/manifest.json b/boshurik/telegram-bot-bundle/3.1/manifest.json new file mode 100644 index 00000000..eb3c11fa --- /dev/null +++ b/boshurik/telegram-bot-bundle/3.1/manifest.json @@ -0,0 +1,14 @@ +{ + "bundles": { + "BoShurik\\TelegramBotBundle\\BoShurikTelegramBotBundle": ["all"] + }, + "copy-from-recipe": { + "config/": "%CONFIG_DIR%/" + }, + "env": { + "TELEGRAM_BOT_TOKEN": "bot-token" + }, + "container": { + "telegram_route_secret": "%env(TELEGRAM_BOT_TOKEN)%" + } +} diff --git a/boshurik/telegram-bot-bundle/3.1/post-install.txt b/boshurik/telegram-bot-bundle/3.1/post-install.txt new file mode 100644 index 00000000..48438772 --- /dev/null +++ b/boshurik/telegram-bot-bundle/3.1/post-install.txt @@ -0,0 +1,6 @@ + + Next for TelegramBotBundle + + + * Set TELEGRAM_BOT_TOKEN in your environment + * Read the documentation at https://github.com/BoShurik/TelegramBotBundle diff --git a/ckrack/optimus-bundle/0.1/config/packages/ckrack_optimus.yaml b/ckrack/optimus-bundle/0.1/config/packages/ckrack_optimus.yaml new file mode 100644 index 00000000..bd001f4d --- /dev/null +++ b/ckrack/optimus-bundle/0.1/config/packages/ckrack_optimus.yaml @@ -0,0 +1,8 @@ +ckrack_optimus: + # Set options, as documented at https://github.com/jenssegers/optimus#usage + prime: "%env(int:OPTIMUS_PRIME)%" + inverse: "%env(int:OPTIMUS_INVERSE)%" + random: "%env(int:OPTIMUS_RANDOM)%" + + # if set to true, param converter will continue with the next available param converters + passthrough: true diff --git a/ckrack/optimus-bundle/0.1/manifest.json b/ckrack/optimus-bundle/0.1/manifest.json new file mode 100644 index 00000000..54d50acc --- /dev/null +++ b/ckrack/optimus-bundle/0.1/manifest.json @@ -0,0 +1,14 @@ +{ + "bundles": { + "Ckrack\\OptimusBundle\\CkrackOptimusBundle": ["all"] + }, + "copy-from-recipe": { + "config/": "%CONFIG_DIR%/" + }, + "env": { + "#1": "Replace these env vars with the output of `php vendor/bin/optimus spark -f env`", + "OPTIMUS_PRIME": "3", + "OPTIMUS_INVERSE": "715827883", + "OPTIMUS_RANDOM": "1592469642" + } +} diff --git a/ckrack/optimus-bundle/0.1/post-install.txt b/ckrack/optimus-bundle/0.1/post-install.txt new file mode 100644 index 00000000..f5fbdf85 --- /dev/null +++ b/ckrack/optimus-bundle/0.1/post-install.txt @@ -0,0 +1,10 @@ + + Next: OptimusBundle Configuration + + + * Generate your spark numbers by running php vendor/bin/optimus spark -f env + and configure them in your .env + +Optimus Documentation: https://github.com/jenssegers/optimus +Bundle Documentation: https://github.com/ckrack/optimus-bundle + diff --git a/codebuds/mattermost-publication-bundle/0.3/config/packages/mattermost_publication.yaml b/codebuds/mattermost-publication-bundle/0.3/config/packages/mattermost_publication.yaml new file mode 100644 index 00000000..fc24d3d8 --- /dev/null +++ b/codebuds/mattermost-publication-bundle/0.3/config/packages/mattermost_publication.yaml @@ -0,0 +1,5 @@ +mattermost_publication: + webhook_url: '%env(MATTERMOST_WEBHOOK_URL)%' + # You can also set the default channel, username and icon_url + # for more information you can checkout the bundle documentation + # https://github.com/codebuds33/mattermost-publication-bundle/blob/master/README.md diff --git a/codebuds/mattermost-publication-bundle/0.3/manifest.json b/codebuds/mattermost-publication-bundle/0.3/manifest.json new file mode 100644 index 00000000..efab6d9c --- /dev/null +++ b/codebuds/mattermost-publication-bundle/0.3/manifest.json @@ -0,0 +1,11 @@ +{ + "bundles": { + "CodeBuds\\MattermostPublicationBundle\\MattermostPublicationBundle": ["all"] + }, + "copy-from-recipe": { + "config/": "%CONFIG_DIR%/" + }, + "env": { + "MATTERMOST_WEBHOOK_URL": "http://{your-mattermost-site}/hooks/xxx-generatedkey-xxx" + } +} diff --git a/codeception/codeception/2.3/post-install.txt b/codeception/codeception/2.3/post-install.txt index d7e828fb..7f76b8fe 100644 --- a/codeception/codeception/2.3/post-install.txt +++ b/codeception/codeception/2.3/post-install.txt @@ -1,15 +1,15 @@ Bootstrapping Codeception -File codeception.yaml created <- global configuration +File codeception.yml created <- global configuration tests/unit created <- unit tests -tests/unit.suite.yaml written <- unit tests suite configuration +tests/unit.suite.yml written <- unit tests suite configuration tests/functional created <- functional tests -tests/functional.suite.yaml written <- functional tests suite configuration +tests/functional.suite.yml written <- functional tests suite configuration tests/acceptance created <- acceptance tests -tests/acceptance.suite.yaml written <- acceptance tests suite configuration +tests/acceptance.suite.yml written <- acceptance tests suite configuration Codeception is installed for acceptance, functional, and unit testing Next steps: -1. Edit tests/acceptance.suite.yaml to set url of your application. Change PhpBrowser to WebDriver to enable browser testing -2. Edit tests/functional.suite.yaml to enable a Doctrine module if needs. -3. Create your first acceptance tests using vendor/bin/codecept g:cest acceptance First -4. Write first test in tests/acceptance/FirstCest.php +1. Edit tests/acceptance.suite.yml to set the url of your application. Change PhpBrowser to WebDriver to enable browser testing. +2. Edit tests/functional.suite.yml to enable Doctrine module if needed. +3. Create your first acceptance test using vendor/bin/codecept g:cest acceptance First +4. Write your first test in tests/acceptance/FirstCest.php 5. Run tests using: vendor/bin/codecept run diff --git a/coka/file-bundle/3.0/config/packages/oka_file.yaml b/coka/file-bundle/3.0/config/packages/oka_file.yaml index c2d81c1e..8f4da55d 100644 --- a/coka/file-bundle/3.0/config/packages/oka_file.yaml +++ b/coka/file-bundle/3.0/config/packages/oka_file.yaml @@ -1,7 +1,6 @@ oka_file: db_driver: orm storage: - root_path: '%env(OKAFILE_STORAGE_ROOT_PATH)%' + root_path: '%env(resolve:OKAFILE_STORAGE_ROOT_PATH)%' webserver: - host: '%env(OKAFILE_STORAGE_WEB_SERVER_HOST)%' - + host: '%env(resolve:OKAFILE_STORAGE_WEB_SERVER_HOST)%' diff --git a/coka/file-bundle/3.0/manifest.json b/coka/file-bundle/3.0/manifest.json index 819a632e..e4f6ecdd 100644 --- a/coka/file-bundle/3.0/manifest.json +++ b/coka/file-bundle/3.0/manifest.json @@ -10,4 +10,3 @@ "OKAFILE_STORAGE_WEB_SERVER_HOST": "localhost" } } - diff --git a/coka/pagination-bundle/5.0/config/packages/oka_pagination.yaml b/coka/pagination-bundle/5.0/config/packages/oka_pagination.yaml new file mode 100644 index 00000000..15cd830f --- /dev/null +++ b/coka/pagination-bundle/5.0/config/packages/oka_pagination.yaml @@ -0,0 +1,4 @@ +oka_pagination: + db_driver: orm + twig: + enabled: false diff --git a/coka/pagination-bundle/5.0/manifest.json b/coka/pagination-bundle/5.0/manifest.json new file mode 100644 index 00000000..411770c8 --- /dev/null +++ b/coka/pagination-bundle/5.0/manifest.json @@ -0,0 +1,8 @@ +{ + "bundles": { + "Oka\\PaginationBundle\\OkaPaginationBundle": ["all"] + }, + "copy-from-recipe": { + "config/": "%CONFIG_DIR%/" + } +} diff --git a/coka/rate-limit-bundle/1.0/config/packages/oka_rate_limit.yaml b/coka/rate-limit-bundle/1.0/config/packages/oka_rate_limit.yaml new file mode 100644 index 00000000..4ab2217b --- /dev/null +++ b/coka/rate-limit-bundle/1.0/config/packages/oka_rate_limit.yaml @@ -0,0 +1,3 @@ +oka_rate_limit: + configs: + - {path: ''} diff --git a/coka/rate-limit-bundle/1.0/manifest.json b/coka/rate-limit-bundle/1.0/manifest.json new file mode 100644 index 00000000..a977cdec --- /dev/null +++ b/coka/rate-limit-bundle/1.0/manifest.json @@ -0,0 +1,8 @@ +{ + "bundles": { + "Oka\\RateLimitBundle\\OkaRateLimitBundle": ["all"] + }, + "copy-from-recipe": { + "config/": "%CONFIG_DIR%/" + } +} diff --git a/coka/rest-request-validator-bundle/1.0/config/packages/oka_rest_request_validator.yaml b/coka/rest-request-validator-bundle/1.0/config/packages/oka_rest_request_validator.yaml new file mode 100644 index 00000000..b1d17858 --- /dev/null +++ b/coka/rest-request-validator-bundle/1.0/config/packages/oka_rest_request_validator.yaml @@ -0,0 +1,3 @@ +oka_rest_request_validator: + exception: + enabled: true diff --git a/coka/rest-request-validator-bundle/1.0/manifest.json b/coka/rest-request-validator-bundle/1.0/manifest.json new file mode 100644 index 00000000..aefe617f --- /dev/null +++ b/coka/rest-request-validator-bundle/1.0/manifest.json @@ -0,0 +1,8 @@ +{ + "bundles": { + "Oka\\RESTRequestValidatorBundle\\OkaRESTRequestValidatorBundle": ["all"] + }, + "copy-from-recipe": { + "config/": "%CONFIG_DIR%/" + } +} diff --git a/commercetools/symfony-bundle/0.4/manifest.json b/commercetools/symfony-bundle/0.4/manifest.json index 457cf97e..42291c6e 100644 --- a/commercetools/symfony-bundle/0.4/manifest.json +++ b/commercetools/symfony-bundle/0.4/manifest.json @@ -11,8 +11,8 @@ "CTP_CLIENT_ID": "", "CTP_CLIENT_SECRET": "", "CTP_PROJECT_KEY": "", - "CTP_AUTH_URL": "https://auth.commercetools.com or https://auth.commercetools.co", - "CTP_API_URL": "https://api.commercetools.com or https://api.commercetools.co", + "CTP_AUTH_URL": "https://auth.commercetools.com", + "CTP_API_URL": "https://api.commercetools.com", "CTP_SCOPES": "" } } diff --git a/connectholland/timechimp-bundle/1.0/config/packages/connectholland_timechimp.yaml b/connectholland/timechimp-bundle/1.0/config/packages/connectholland_timechimp.yaml new file mode 100644 index 00000000..6f608c09 --- /dev/null +++ b/connectholland/timechimp-bundle/1.0/config/packages/connectholland_timechimp.yaml @@ -0,0 +1,2 @@ +connectholland_timechimp: + api_key: '%env(string:TIMECHIMP_ACCESS_TOKEN)%' diff --git a/connectholland/timechimp-bundle/1.0/manifest.json b/connectholland/timechimp-bundle/1.0/manifest.json new file mode 100644 index 00000000..2565f3bb --- /dev/null +++ b/connectholland/timechimp-bundle/1.0/manifest.json @@ -0,0 +1,11 @@ +{ + "bundles": { + "ConnectHolland\\TimechimpBundle\\ConnecthollandTimechimpBundle": ["all"] + }, + "copy-from-recipe": { + "config/": "%CONFIG_DIR%/" + }, + "env": { + "TIMECHIMPBUNDLE_ACCESS_TOKEN": "baerer-token-value" + } +} diff --git a/connectholland/timechimp-bundle/1.0/post-install.txt b/connectholland/timechimp-bundle/1.0/post-install.txt new file mode 100644 index 00000000..2009c2ae --- /dev/null +++ b/connectholland/timechimp-bundle/1.0/post-install.txt @@ -0,0 +1,6 @@ + + To finish the install + + + * Your Connect Holland Timechimp bundle installation is almost ready: + 1. Add your Timechimp Access Token to the .env file diff --git a/connectholland/uptime-robot-bundle/1.0/config/packages/connectholland_uptime_robot.yaml b/connectholland/uptime-robot-bundle/1.0/config/packages/connectholland_uptime_robot.yaml new file mode 100644 index 00000000..093d1d1c --- /dev/null +++ b/connectholland/uptime-robot-bundle/1.0/config/packages/connectholland_uptime_robot.yaml @@ -0,0 +1,2 @@ +connectholland_uptime_robot: + api_key: '%env(string:UPTIMEROBOT_API_KEY)%' diff --git a/connectholland/uptime-robot-bundle/1.0/manifest.json b/connectholland/uptime-robot-bundle/1.0/manifest.json new file mode 100644 index 00000000..c533f7b2 --- /dev/null +++ b/connectholland/uptime-robot-bundle/1.0/manifest.json @@ -0,0 +1,11 @@ +{ + "bundles": { + "ConnectHolland\\UptimeRobotBundle\\ConnecthollandUptimeRobotBundle": ["all"] + }, + "copy-from-recipe": { + "config/": "%CONFIG_DIR%/" + }, + "env": { + "UPTIMEROBOT_API_KEY": "api_key" + } +} diff --git a/connectholland/uptime-robot-bundle/1.0/post-install.txt b/connectholland/uptime-robot-bundle/1.0/post-install.txt new file mode 100644 index 00000000..0dc30dc7 --- /dev/null +++ b/connectholland/uptime-robot-bundle/1.0/post-install.txt @@ -0,0 +1,6 @@ + + To finish the install + + + * Your Connect Holland Uptime Robot bundle installation is almost ready: + 1. Add your Uptime Robot Api Key to the .env file diff --git a/dekalee/autopilot-bundle/1.0/config/packages/dekalee_autopilot_swarrot.yaml b/dekalee/autopilot-bundle/1.0/config/packages/dekalee_autopilot_swarrot.yaml new file mode 100644 index 00000000..c49c9917 --- /dev/null +++ b/dekalee/autopilot-bundle/1.0/config/packages/dekalee_autopilot_swarrot.yaml @@ -0,0 +1,2 @@ +dekalee_autopilot: + api_key: '%env(DEKALEE_AUTOPILOT_APIKEY)%' diff --git a/dekalee/autopilot-bundle/1.0/manifest.json b/dekalee/autopilot-bundle/1.0/manifest.json new file mode 100644 index 00000000..f48a3719 --- /dev/null +++ b/dekalee/autopilot-bundle/1.0/manifest.json @@ -0,0 +1,11 @@ +{ + "bundles": { + "Dekalee\\AutopilotBundle\\DekaleeAutopilotBundle": ["all"] + }, + "copy-from-recipe": { + "config/": "%CONFIG_DIR%/" + }, + "env": { + "#DEKALEE_AUTOPILOT_APIKEY": "the-autopilot-api-key" + } +} diff --git a/dekalee/autopilot-bundle/1.0/post-install.txt b/dekalee/autopilot-bundle/1.0/post-install.txt new file mode 100644 index 00000000..823bb933 --- /dev/null +++ b/dekalee/autopilot-bundle/1.0/post-install.txt @@ -0,0 +1,6 @@ + + DekaleeAutopilotSwarrot, What's next? + + + * The Dekalee/AutopilotBundle needs your pubsub configuration. + Modify your DEKALEE_AUTOPILOT_APIKEY config in .env diff --git a/dekalee/enom-bundle/1.0/config/packages/dekalee_enom.yaml b/dekalee/enom-bundle/1.0/config/packages/dekalee_enom.yaml new file mode 100644 index 00000000..42d19cf1 --- /dev/null +++ b/dekalee/enom-bundle/1.0/config/packages/dekalee_enom.yaml @@ -0,0 +1,4 @@ +dekalee_enom: + uid: '%env(ENOM_UID)%' + password: '%env(ENOM_PASSWORD)%' + base_url: '%env(ENOM_BASE_URL)%' diff --git a/dekalee/enom-bundle/1.0/manifest.json b/dekalee/enom-bundle/1.0/manifest.json new file mode 100644 index 00000000..ecc33429 --- /dev/null +++ b/dekalee/enom-bundle/1.0/manifest.json @@ -0,0 +1,13 @@ +{ + "bundles": { + "Dekalee\\EnomBundle\\DekaleeEnomBundle": ["all"] + }, + "copy-from-recipe": { + "config/": "%CONFIG_DIR%/" + }, + "env": { + "#ENOM_UID": "your-enom-uid", + "#ENOM_PASSWORD": "your-enom-password", + "#ENOM_BASE_URL": "your-enom-api-base-url" + } +} diff --git a/dekalee/enom-bundle/1.0/post-install.txt b/dekalee/enom-bundle/1.0/post-install.txt new file mode 100644 index 00000000..67075b0b --- /dev/null +++ b/dekalee/enom-bundle/1.0/post-install.txt @@ -0,0 +1,6 @@ + + DekaleeEnomSwarrot, What's next? + + + * The Dekalee/EnomBundle needs your enom configuration. + Modify your ENOM_UID, ENOM_PASSWORD, ENOM_BASE_URL config in .env diff --git a/dekalee/pubsub-swarrot-bundle/1.0/config/packages/dekalee_pub_sub_swarrot.yaml b/dekalee/pubsub-swarrot-bundle/1.0/config/packages/dekalee_pub_sub_swarrot.yaml new file mode 100644 index 00000000..8bd84fa3 --- /dev/null +++ b/dekalee/pubsub-swarrot-bundle/1.0/config/packages/dekalee_pub_sub_swarrot.yaml @@ -0,0 +1,2 @@ +dekalee_pub_sub_swarrot: + key_file_path: '%env(DEKALEE_PUBSUB_SWARROT_KEY_FILE_PATH)%' diff --git a/dekalee/pubsub-swarrot-bundle/1.0/manifest.json b/dekalee/pubsub-swarrot-bundle/1.0/manifest.json new file mode 100644 index 00000000..706ede30 --- /dev/null +++ b/dekalee/pubsub-swarrot-bundle/1.0/manifest.json @@ -0,0 +1,11 @@ +{ + "bundles": { + "Dekalee\\PubSubSwarrotBundle\\DekaleePubSubSwarrotBundle": ["all"] + }, + "copy-from-recipe": { + "config/": "%CONFIG_DIR%/" + }, + "env": { + "#DEKALEE_PUBSUB_SWARROT_KEY_FILE_PATH": "your-pub_sub-key-file-path" + } +} diff --git a/dekalee/pubsub-swarrot-bundle/1.0/post-install.txt b/dekalee/pubsub-swarrot-bundle/1.0/post-install.txt new file mode 100644 index 00000000..f2d22fbe --- /dev/null +++ b/dekalee/pubsub-swarrot-bundle/1.0/post-install.txt @@ -0,0 +1,6 @@ + + DekaleePubSubSwarrot, What's next? + + + * The Dekalee/PubSubSwarrotBundle needs your pubsub configuration. + Modify your DEKALEE_PUBSUB_SWARROT_KEY_FILE_PATH config in .env diff --git a/dobryprogramator/smartform-bundle/1.0/config/packages/dobry_programator_smartform.yaml b/dobryprogramator/smartform-bundle/1.0/config/packages/dobry_programator_smartform.yaml new file mode 100644 index 00000000..13089c65 --- /dev/null +++ b/dobryprogramator/smartform-bundle/1.0/config/packages/dobry_programator_smartform.yaml @@ -0,0 +1,2 @@ +dobry_programator_smartform: + client_id: '%env(SMARTFORM_CLIENT_ID)%' diff --git a/dobryprogramator/smartform-bundle/1.0/manifest.json b/dobryprogramator/smartform-bundle/1.0/manifest.json new file mode 100644 index 00000000..6906e92c --- /dev/null +++ b/dobryprogramator/smartform-bundle/1.0/manifest.json @@ -0,0 +1,11 @@ +{ + "bundles": { + "DobryProgramator\\SmartformBundle\\DobryProgramatorSmartformBundle": ["all"] + }, + "copy-from-recipe": { + "config/": "%CONFIG_DIR%/" + }, + "env": { + "SMARTFORM_CLIENT_ID": "" + } +} diff --git a/drenso/symfony-shared/0.8/manifest.json b/drenso/symfony-shared/0.8/manifest.json new file mode 100644 index 00000000..af37f2a8 --- /dev/null +++ b/drenso/symfony-shared/0.8/manifest.json @@ -0,0 +1,8 @@ +{ + "bundles": { + "Drenso\\Shared\\DrensoSharedBundle": ["all"] + }, + "copy-from-package": { + "config/": "%CONFIG_DIR%/" + } +} diff --git a/drupol/ecl-twig-bundle/0.1/manifest.json b/drupol/ecl-twig-bundle/0.1/manifest.json new file mode 100644 index 00000000..7fe63b72 --- /dev/null +++ b/drupol/ecl-twig-bundle/0.1/manifest.json @@ -0,0 +1,8 @@ +{ + "bundles": { + "drupol\\EclTwigBundle\\EclTwigBundle": ["all"] + }, + "copy-from-package": { + ".recipe/config/": "%CONFIG_DIR%/" + } +} diff --git a/ecphp/cas-bundle/1.0/manifest.json b/ecphp/cas-bundle/1.0/manifest.json new file mode 100644 index 00000000..272a15d0 --- /dev/null +++ b/ecphp/cas-bundle/1.0/manifest.json @@ -0,0 +1,8 @@ +{ + "bundles": { + "EcPhp\\CasBundle\\CasBundle": ["all"] + }, + "copy-from-package": { + "Resources/config/": "%CONFIG_DIR%/" + } +} diff --git a/ecphp/cas-bundle/2.0/manifest.json b/ecphp/cas-bundle/2.0/manifest.json new file mode 100644 index 00000000..272a15d0 --- /dev/null +++ b/ecphp/cas-bundle/2.0/manifest.json @@ -0,0 +1,8 @@ +{ + "bundles": { + "EcPhp\\CasBundle\\CasBundle": ["all"] + }, + "copy-from-package": { + "Resources/config/": "%CONFIG_DIR%/" + } +} diff --git a/ecphp/eu-login-bundle/1.0/manifest.json b/ecphp/eu-login-bundle/1.0/manifest.json new file mode 100644 index 00000000..c6fb202b --- /dev/null +++ b/ecphp/eu-login-bundle/1.0/manifest.json @@ -0,0 +1,8 @@ +{ + "bundles": { + "EcPhp\\EuLoginBundle\\EuLoginBundle": ["all"] + }, + "copy-from-package": { + "Resources/config/": "%CONFIG_DIR%/" + } +} diff --git a/ecphp/eu-login-bundle/2.0/manifest.json b/ecphp/eu-login-bundle/2.0/manifest.json new file mode 100644 index 00000000..c6fb202b --- /dev/null +++ b/ecphp/eu-login-bundle/2.0/manifest.json @@ -0,0 +1,8 @@ +{ + "bundles": { + "EcPhp\\EuLoginBundle\\EuLoginBundle": ["all"] + }, + "copy-from-package": { + "Resources/config/": "%CONFIG_DIR%/" + } +} diff --git a/ekreative/health-check-bundle/1.5/config/routes/ekreative_health_check.yaml b/ekreative/health-check-bundle/1.5/config/routes/ekreative_health_check.yaml new file mode 100644 index 00000000..6ca4630a --- /dev/null +++ b/ekreative/health-check-bundle/1.5/config/routes/ekreative_health_check.yaml @@ -0,0 +1,2 @@ +ekreative_health_check: + resource: '@EkreativeHealthCheckBundle/Resources/config/routes.xml' diff --git a/ekreative/health-check-bundle/1.5/manifest.json b/ekreative/health-check-bundle/1.5/manifest.json new file mode 100644 index 00000000..98dc0484 --- /dev/null +++ b/ekreative/health-check-bundle/1.5/manifest.json @@ -0,0 +1,8 @@ +{ + "bundles": { + "Ekreative\\HealthCheckBundle\\EkreativeHealthCheckBundle": ["all"] + }, + "copy-from-recipe": { + "config/": "%CONFIG_DIR%/" + } +} diff --git a/ekreative/health-check-bundle/1.5/post-install.txt b/ekreative/health-check-bundle/1.5/post-install.txt new file mode 100644 index 00000000..7f725483 --- /dev/null +++ b/ekreative/health-check-bundle/1.5/post-install.txt @@ -0,0 +1,17 @@ + + Next: EkreativeHealthCheckBundle Configuration + + + * You can add more doctrine/redis connections to your config in config/packages/ekreative_health_check.yaml + + *. Add healthcheck firewall to config/security.yaml file + + +security: + firewalls: + healthcheck: + pattern: ^/healthcheck + security: false + + + * Read the documentation at https://github.com/ekreative/health-check-bundle diff --git a/elao/enum/1.7/config/packages/elao_enum.yaml b/elao/enum/1.7/config/packages/elao_enum.yaml new file mode 100644 index 00000000..4ddd06f4 --- /dev/null +++ b/elao/enum/1.7/config/packages/elao_enum.yaml @@ -0,0 +1,5 @@ +elao_enum: + # Provide the enum classes for which you want to automatically generate & register Doctrine DBAL Types: + # https://github.com/Elao/PhpEnums#doctrine + doctrine: + types: {} diff --git a/elao/enum/1.7/manifest.json b/elao/enum/1.7/manifest.json new file mode 100644 index 00000000..ad6e4e25 --- /dev/null +++ b/elao/enum/1.7/manifest.json @@ -0,0 +1,8 @@ +{ + "bundles": { + "Elao\\Enum\\Bridge\\Symfony\\Bundle\\ElaoEnumBundle": ["all"] + }, + "copy-from-recipe": { + "config/": "%CONFIG_DIR%/" + } +} diff --git a/enhavo/app-bundle/0.9/assets/services/enhavo/enhavo_app.yaml b/enhavo/app-bundle/0.9/assets/services/enhavo/enhavo_app.yaml new file mode 100644 index 00000000..9d676bb1 --- /dev/null +++ b/enhavo/app-bundle/0.9/assets/services/enhavo/enhavo_app.yaml @@ -0,0 +1,4 @@ +imports: + - + path: '@enhavo/app/services/*' + diff --git a/enhavo/app-bundle/0.9/assets/theme/base.js b/enhavo/app-bundle/0.9/assets/theme/base.js new file mode 100644 index 00000000..58717275 --- /dev/null +++ b/enhavo/app-bundle/0.9/assets/theme/base.js @@ -0,0 +1 @@ +import './styles/base.scss'; \ No newline at end of file diff --git a/enhavo/app-bundle/0.9/assets/theme/images/.gitignore b/enhavo/app-bundle/0.9/assets/theme/images/.gitignore new file mode 100644 index 00000000..e69de29b diff --git a/enhavo/app-bundle/0.9/assets/theme/styles/base.scss b/enhavo/app-bundle/0.9/assets/theme/styles/base.scss new file mode 100644 index 00000000..e69de29b diff --git a/enhavo/app-bundle/0.9/config/packages/enhavo_app.yaml b/enhavo/app-bundle/0.9/config/packages/enhavo_app.yaml new file mode 100644 index 00000000..04275d52 --- /dev/null +++ b/enhavo/app-bundle/0.9/config/packages/enhavo_app.yaml @@ -0,0 +1,7 @@ +enhavo_app: + mailer: + defaults: + from: '%env(resolve:MAILER_FROM)%' + name: '%env(resolve:MAILER_NAME)%' + to: '%env(resolve:MAILER_TO)%' + menu: diff --git a/enhavo/app-bundle/0.9/config/routes/enhavo_app.yaml b/enhavo/app-bundle/0.9/config/routes/enhavo_app.yaml new file mode 100644 index 00000000..77d516c0 --- /dev/null +++ b/enhavo/app-bundle/0.9/config/routes/enhavo_app.yaml @@ -0,0 +1,3 @@ +enhavo_app_admin: + resource: "@EnhavoAppBundle/Resources/config/routes/admin/*" + prefix: /admin diff --git a/enhavo/app-bundle/0.9/manifest.json b/enhavo/app-bundle/0.9/manifest.json new file mode 100644 index 00000000..ad159674 --- /dev/null +++ b/enhavo/app-bundle/0.9/manifest.json @@ -0,0 +1,24 @@ +{ + "bundles": { + "Enhavo\\Bundle\\AppBundle\\EnhavoAppBundle": ["all"] + }, + "container": { + "locale": "en" + }, + "env": { + "MAILER_FROM": "no-reply@email.com", + "MAILER_NAME": "enhavo", + "MAILER_TO": "my@email.com" + }, + "copy-from-recipe": { + "config/": "%CONFIG_DIR%/", + "assets/": "assets/", + "public/": "%PUBLIC_DIR%/", + "tsconfig.json": "tsconfig.json" + }, + "gitignore": [ + "public/build/enhavo/*", + "public/build/theme/*", + "public/js/fos_routes.js" + ] +} diff --git a/enhavo/app-bundle/0.9/post-install.txt b/enhavo/app-bundle/0.9/post-install.txt new file mode 100644 index 00000000..bc001e89 --- /dev/null +++ b/enhavo/app-bundle/0.9/post-install.txt @@ -0,0 +1,14 @@ + + Complete EnhavoAppBundle installation ... + + + * Update your package.json file + * Update your webpack.config.js file + * Update your configurations + * Build your assets with + + $ yarn encore dev + $ yarn routes:dump + + Read more details about the steps: + https://docs.enhavo.com/book/app-bundle/installation.html diff --git a/enhavo/app-bundle/0.9/public/build/.gitignore b/enhavo/app-bundle/0.9/public/build/.gitignore new file mode 100644 index 00000000..e69de29b diff --git a/enhavo/app-bundle/0.9/tsconfig.json b/enhavo/app-bundle/0.9/tsconfig.json new file mode 100644 index 00000000..794984fb --- /dev/null +++ b/enhavo/app-bundle/0.9/tsconfig.json @@ -0,0 +1,16 @@ +{ + "compilerOptions": { + "lib": [ "es2015", "dom" ], + "module": "amd", + "target": "es5", + "allowJs": true, + "noImplicitAny": true, + "suppressImplicitAnyIndexErrors": true, + "moduleResolution": "node", + "sourceMap": true, + "experimentalDecorators": true + }, + "include": [ + "./assets/**/*" + ] +} diff --git a/enigma972/user-bundle/0.4/config/packages/enigma972_user.yaml b/enigma972/user-bundle/0.4/config/packages/enigma972_user.yaml new file mode 100644 index 00000000..37908b26 --- /dev/null +++ b/enigma972/user-bundle/0.4/config/packages/enigma972_user.yaml @@ -0,0 +1,10 @@ +enigma972_user: + # if this value equal true, the User should confirm theire mail + check_mail: false + # The validity duration in secondes, 4 houres by default (14,400 sec) + reset_password_code_validity: 14400 + # where to redirect after login + target: home + # the no reply email for this app + no_reply_mail: no-reply@mail.com + not_send_welcome_mail: true diff --git a/enigma972/user-bundle/0.4/config/routes/enigma972_user.yaml b/enigma972/user-bundle/0.4/config/routes/enigma972_user.yaml new file mode 100644 index 00000000..0da23668 --- /dev/null +++ b/enigma972/user-bundle/0.4/config/routes/enigma972_user.yaml @@ -0,0 +1,3 @@ +enigma972_user: + resource: '@Enigma972UserBundle/Controller/' + type: annotation diff --git a/enigma972/user-bundle/0.4/manifest.json b/enigma972/user-bundle/0.4/manifest.json new file mode 100644 index 00000000..72168388 --- /dev/null +++ b/enigma972/user-bundle/0.4/manifest.json @@ -0,0 +1,9 @@ +{ + "bundles": { + "Enigma972\\UserBundle\\Enigma972UserBundle": ["all"] + }, + "copy-from-recipe": { + "config/": "%CONFIG_DIR%/", + "src/": "%SRC_DIR%/" + } +} diff --git a/enigma972/user-bundle/0.4/post-install.txt b/enigma972/user-bundle/0.4/post-install.txt new file mode 100644 index 00000000..0ff13e61 --- /dev/null +++ b/enigma972/user-bundle/0.4/post-install.txt @@ -0,0 +1,9 @@ + + Next: UserBundle Configuration + + + * Create an User entity and extend Enigma972\UserBundle\Entity\User class + + * And add all properties and methods you needs, it is your! + +Documentation: https://www.github.com/enigma972/user-bundle diff --git a/enigma972/user-bundle/0.4/src/Entity/User.php b/enigma972/user-bundle/0.4/src/Entity/User.php new file mode 100644 index 00000000..58042e64 --- /dev/null +++ b/enigma972/user-bundle/0.4/src/Entity/User.php @@ -0,0 +1,22 @@ +createQueryBuilder('u') + ->andWhere('u.exampleField = :val') + ->setParameter('val', $value) + ->orderBy('u.id', 'ASC') + ->setMaxResults(10) + ->getQuery() + ->getResult() + ; + } + */ + + /* + public function findOneBySomeField($value): ?User + { + return $this->createQueryBuilder('u') + ->andWhere('u.exampleField = :val') + ->setParameter('val', $value) + ->getQuery() + ->getOneOrNullResult() + ; + } + */ +} diff --git a/exercise/htmlpurifier-bundle/3.0/config/packages/exercise_html_purifier.yaml b/exercise/htmlpurifier-bundle/3.0/config/packages/exercise_html_purifier.yaml new file mode 100644 index 00000000..4c787a58 --- /dev/null +++ b/exercise/htmlpurifier-bundle/3.0/config/packages/exercise_html_purifier.yaml @@ -0,0 +1,21 @@ +exercise_html_purifier: + default_cache_serializer_path: '%kernel.cache_dir%/htmlpurifier' + + html_profiles: + default: + config: + # the charset used by the original contents + Core.Encoding: 'UTF-8' + # full configuration reference: http://htmlpurifier.org/live/configdoc/plain.html + +# Read the https://github.com/Exercise/HTMLPurifierBundle/blob/master/README.md file +# to know how to whitelist elements + +# # whitelist attributes by tag +# attributes: [] + +# # whitelist elements by name +# elements: [] + +# # list of elements that cannot have attributes +# blank_elements: [] diff --git a/exercise/htmlpurifier-bundle/3.0/manifest.json b/exercise/htmlpurifier-bundle/3.0/manifest.json new file mode 120000 index 00000000..4650d613 --- /dev/null +++ b/exercise/htmlpurifier-bundle/3.0/manifest.json @@ -0,0 +1 @@ +../0.2/manifest.json \ No newline at end of file diff --git a/friendsofsymfony/elastica-bundle/5.0/config/packages/fos_elastica.yaml b/friendsofsymfony/elastica-bundle/5.0/config/packages/fos_elastica.yaml index 23b3a500..a93adb2f 100644 --- a/friendsofsymfony/elastica-bundle/5.0/config/packages/fos_elastica.yaml +++ b/friendsofsymfony/elastica-bundle/5.0/config/packages/fos_elastica.yaml @@ -1,6 +1,6 @@ -# Read the documentation: https://github.com/FriendsOfSymfony/FOSElasticaBundle/blob/master/Resources/doc/setup.md +# Read the documentation: https://github.com/FriendsOfSymfony/FOSElasticaBundle/blob/master/doc/setup.md fos_elastica: clients: - default: { host: localhost, port: 9200 } + default: { url: '%env(ELASTICSEARCH_URL)%' } indexes: app: null diff --git a/friendsofsymfony/elastica-bundle/5.0/manifest.json b/friendsofsymfony/elastica-bundle/5.0/manifest.json index 80328c99..43db785d 100644 --- a/friendsofsymfony/elastica-bundle/5.0/manifest.json +++ b/friendsofsymfony/elastica-bundle/5.0/manifest.json @@ -4,5 +4,8 @@ }, "copy-from-recipe": { "config/": "%CONFIG_DIR%/" + }, + "env": { + "ELASTICSEARCH_URL": "http://localhost:9200/" } } diff --git a/gheb/docusign-bundle/5.0/config/packages/docusign.yaml b/gheb/docusign-bundle/5.0/config/packages/docusign.yaml new file mode 100644 index 00000000..46494e2a --- /dev/null +++ b/gheb/docusign-bundle/5.0/config/packages/docusign.yaml @@ -0,0 +1,38 @@ +docusign: + demo: "%kernel.debug%" + mode: embedded # Mode used to sign (remote or embedded) + + # Authentication credentials to log into docusign. + auth_jwt: + private_key: "%env(resolve:DOCUSIGN_PRIVATE_KEY_PATH)%" + integration_key: "%env(DOCUSIGN_INTEGRATION_KEY)%" + user_guid: "%env(DOCUSIGN_USER_GUID)%" + + # Your DocuSign account id + account_id: "%env(int:DOCUSIGN_ACCOUNT_ID)%" + + default_signer_name: "Grégoire Hébert" # Name of the person that will be notified and will sign the document if none is sent to the url. + default_signer_email: "gregoire@les-tilleuls.coop" # Mail of the person that will be notified and will sign the document if none is sent to the url. + + api_uri: "https://www.docusign.net/restapi" # DocuSign api uri. When demo is true, the bundle replace it by `https://demo.docusign.net/restapi` + + callback: "docusign_callback" # Your route where to redirect the user after signature + + # To sign you need to generate a route to call. + # The route name will be formated `docusign.sign.{signaturename}` for this one it will be `docusign.sign.my_embedded_signature` and will have `my_embedded_signature` as attribute type + # By defining this, you have a full control over the security applied to this route. see https://symfony.com/doc/current/security/access_control.html + sign_path: '/my/embedded/sign/path' + + # Where to position the signature + signatures: + # this is an array of positions, you can have multiple signatures locations per pages + - + page: 1 # Default + x_position: 200 # Top left corner in pixels + y_position: 400 # Top left corner in pixels + + # Defines where are stored the documents + storage: + adapter: 'local' + options: + directory: '%kernel.project_dir%/var/storage/default' diff --git a/gheb/docusign-bundle/5.0/config/routes/docusign.yaml b/gheb/docusign-bundle/5.0/config/routes/docusign.yaml new file mode 100644 index 00000000..2da52336 --- /dev/null +++ b/gheb/docusign-bundle/5.0/config/routes/docusign.yaml @@ -0,0 +1,3 @@ +docusign: + resource: . + type: docusign diff --git a/gheb/docusign-bundle/5.0/manifest.json b/gheb/docusign-bundle/5.0/manifest.json new file mode 100644 index 00000000..da2f3c53 --- /dev/null +++ b/gheb/docusign-bundle/5.0/manifest.json @@ -0,0 +1,17 @@ +{ + "bundles": { + "\\DocusignBundle\\DocusignBundle": ["all"] + }, + "copy-from-recipe": { + "config/": "%CONFIG_DIR%/" + }, + "env": { + "DOCUSIGN_PRIVATE_KEY_PATH": "%kernel.project_dir%/%CONFIG_DIR%/jwt/docusign.pem", + "DOCUSIGN_INTEGRATION_KEY": "UUID-DOCUSIGN-INTEGRATION-KEY", + "DOCUSIGN_USER_GUID": "UUID-DOCUSIGN-USER-GUID", + "DOCUSIGN_ACCOUNT_ID": "1234567" + }, + "gitignore": [ + "/%CONFIG_DIR%/jwt/*.pem" + ] +} diff --git a/gheb/docusign-bundle/5.0/post-install.txt b/gheb/docusign-bundle/5.0/post-install.txt new file mode 100644 index 00000000..2fbf1cab --- /dev/null +++ b/gheb/docusign-bundle/5.0/post-install.txt @@ -0,0 +1,9 @@ + + You just installed Docusign Bundle! + What's next? + + + * Read the documentation at: + https://github.com/GregoireHebert/docusign-bundle + * Edit the .env file to adapt the authentication settings. + * Edit the config/packages/docusign.yaml file to configure your documents signatures. diff --git a/goksagun/scheduler-bundle/1.0/config/packages/scheduler.yaml b/goksagun/scheduler-bundle/1.0/config/packages/scheduler.yaml new file mode 100644 index 00000000..1ab4ef08 --- /dev/null +++ b/goksagun/scheduler-bundle/1.0/config/packages/scheduler.yaml @@ -0,0 +1,17 @@ +# A CRON expression is a string representing the schedule for a particular command to execute. +# The parts of a CRON schedule are as follows: +# +# * * * * * +# - - - - - +# | | | | | +# | | | | | +# | | | | +----- day of week (0 - 7) (Sunday=0 or 7) +# | | | +---------- month (1 - 12) +# | | +--------------- day of month (1 - 31) +# | +-------------------- hour (0 - 23) +# +------------------------- min (0 - 59) +scheduler: + tasks: + # You may define all of your scheduled tasks here. + # To get started, let's look at an example of scheduling a task (command). + #- { name: example:command arg --option, expression: "* * * * *" } diff --git a/goksagun/scheduler-bundle/1.0/manifest.json b/goksagun/scheduler-bundle/1.0/manifest.json new file mode 100644 index 00000000..851efb50 --- /dev/null +++ b/goksagun/scheduler-bundle/1.0/manifest.json @@ -0,0 +1,8 @@ +{ + "bundles": { + "Goksagun\\SchedulerBundle\\SchedulerBundle": ["all"] + }, + "copy-from-recipe": { + "config/": "%CONFIG_DIR%/" + } +} diff --git a/goksagun/scheduler-bundle/1.0/post-install.txt b/goksagun/scheduler-bundle/1.0/post-install.txt new file mode 100644 index 00000000..406de4cb --- /dev/null +++ b/goksagun/scheduler-bundle/1.0/post-install.txt @@ -0,0 +1,6 @@ + + What's next for SchedulerBundle? + + + * Configure bundle in config/packages/scheduler.yaml + * Read the documentation at https://github.com/goksagun/scheduler-bundle/blob/master/README.md diff --git a/googlechromelabs/ise-web-security-bundle/1.0/config/packages/ise_web_security.yaml b/googlechromelabs/ise-web-security-bundle/1.0/config/packages/ise_web_security.yaml new file mode 100644 index 00000000..202188b4 --- /dev/null +++ b/googlechromelabs/ise-web-security-bundle/1.0/config/packages/ise_web_security.yaml @@ -0,0 +1,13 @@ +ise_web_security: + defaults: + coop: + active: true + policy: 'same-origin' + coep: + active: true + policy: 'require-corp' + fetch_metadata: + active: true + allowed_endpoints: [] + trusted_types: + active: false diff --git a/googlechromelabs/ise-web-security-bundle/1.0/manifest.json b/googlechromelabs/ise-web-security-bundle/1.0/manifest.json new file mode 100644 index 00000000..dae1c774 --- /dev/null +++ b/googlechromelabs/ise-web-security-bundle/1.0/manifest.json @@ -0,0 +1,8 @@ +{ + "bundles": { + "Ise\\WebSecurityBundle\\IseWebSecurityBundle": ["all"] + }, + "copy-from-recipe": { + "config/": "%CONFIG_DIR%/" + } +} diff --git a/gpslab/domain-event-bundle/2.2/config/packages/gpslab_domain_event.yaml b/gpslab/domain-event-bundle/2.2/config/packages/gpslab_domain_event.yaml new file mode 100644 index 00000000..a994c908 --- /dev/null +++ b/gpslab/domain-event-bundle/2.2/config/packages/gpslab_domain_event.yaml @@ -0,0 +1,5 @@ +# see https://github.com/gpslab/domain-event-bundle/blob/master/README.md#configuration + +gpslab_domain_event: + # Publish domain events post a Doctrine flush event + publish_on_flush: true diff --git a/gpslab/domain-event-bundle/2.2/manifest.json b/gpslab/domain-event-bundle/2.2/manifest.json new file mode 100644 index 00000000..f2674e3c --- /dev/null +++ b/gpslab/domain-event-bundle/2.2/manifest.json @@ -0,0 +1,8 @@ +{ + "bundles": { + "GpsLab\\Bundle\\DomainEvent\\GpsLabDomainEventBundle": ["all"] + }, + "copy-from-recipe": { + "config/": "%CONFIG_DIR%/" + } +} diff --git a/gpslab/geoip2/2.0/config/packages/gpslab_geoip.yaml b/gpslab/geoip2/2.0/config/packages/gpslab_geoip.yaml new file mode 100644 index 00000000..c5a7b93c --- /dev/null +++ b/gpslab/geoip2/2.0/config/packages/gpslab_geoip.yaml @@ -0,0 +1,8 @@ +# Read the README file for more detailed configuration information +# https://github.com/gpslab/geoip2 +gpslab_geoip: + # You should specify your personal licence key + license: 'YOUR-LICENSE-KEY' + + # Edition ID of database you need + edition: 'GeoLite2-City' diff --git a/gpslab/geoip2/2.0/manifest.json b/gpslab/geoip2/2.0/manifest.json new file mode 100644 index 00000000..1dd03011 --- /dev/null +++ b/gpslab/geoip2/2.0/manifest.json @@ -0,0 +1,11 @@ +{ + "bundles": { + "GpsLab\\Bundle\\GeoIP2Bundle\\GpsLabGeoIP2Bundle": ["all"] + }, + "copy-from-recipe": { + "config/": "%CONFIG_DIR%/" + }, + "composer-scripts": { + "geoip2:update": "symfony-cmd" + } +} diff --git a/hans-peter-ording/nflfastr-symfony-bundle/0.1/config/packages/nfl_fastr_symfony.yaml b/hans-peter-ording/nflfastr-symfony-bundle/0.1/config/packages/nfl_fastr_symfony.yaml new file mode 100644 index 00000000..5ba7ae1f --- /dev/null +++ b/hans-peter-ording/nflfastr-symfony-bundle/0.1/config/packages/nfl_fastr_symfony.yaml @@ -0,0 +1,9 @@ +nfl_fastr_symfony: + timezone: Europe/Berlin + sources: + playByPlay: + baseUrl: https://github.com/guga31bb/nflfastR-data + path: tree/master/data + roster: + baseUrl: https://github.com/mrcaseb/nflfastR-roster + path: tree/master/data/seasons diff --git a/hans-peter-ording/nflfastr-symfony-bundle/0.1/manifest.json b/hans-peter-ording/nflfastr-symfony-bundle/0.1/manifest.json new file mode 100644 index 00000000..4fd16111 --- /dev/null +++ b/hans-peter-ording/nflfastr-symfony-bundle/0.1/manifest.json @@ -0,0 +1,10 @@ +{ + "bundles": { + "HansPeterOrding\\NflFastrSymfonyBundle\\NflFastrSymfonyBundle": [ + "all" + ] + }, + "copy-from-recipe": { + "config/": "%CONFIG_DIR%/" + } +} diff --git a/hboie/jasper-report-bundle/1.1/config/packages/jasper_report.yaml b/hboie/jasper-report-bundle/1.1/config/packages/jasper_report.yaml new file mode 100644 index 00000000..73e8c625 --- /dev/null +++ b/hboie/jasper-report-bundle/1.1/config/packages/jasper_report.yaml @@ -0,0 +1,5 @@ +hboie_jasper_report: + host: 'http://localhost:8080/jasperserver' + username: '%env(HBOIE_JASPER_REPORT_USERNAME)%' + password: '%env(HBOIE_JASPER_REPORT_PASSWORD)%' + org_id: '%env(HBOIE_JASPER_REPORT_ORGID)%' diff --git a/hboie/jasper-report-bundle/1.1/manifest.json b/hboie/jasper-report-bundle/1.1/manifest.json new file mode 100644 index 00000000..f425f822 --- /dev/null +++ b/hboie/jasper-report-bundle/1.1/manifest.json @@ -0,0 +1,13 @@ +{ + "bundles": { + "Hboie\\JasperReportBundle\\HboieJasperReportBundle": ["all"] + }, + "copy-from-recipe": { + "config/": "%CONFIG_DIR%/" + }, + "env": { + "HBOIE_JASPER_REPORT_USERNAME": "jasperadmin", + "HBOIE_JASPER_REPORT_PASSWORD": "jasperadmin", + "HBOIE_JASPER_REPORT_ORGID": "" + } +} diff --git a/helios-ag/fm-elfinder-bundle/10.0/config/packages/fm_elfinder.yaml b/helios-ag/fm-elfinder-bundle/10.0/config/packages/fm_elfinder.yaml new file mode 100644 index 00000000..da622abf --- /dev/null +++ b/helios-ag/fm-elfinder-bundle/10.0/config/packages/fm_elfinder.yaml @@ -0,0 +1,8 @@ +fm_elfinder: + instances: + default: + connector: + roots: + uploads: + driver: LocalFileSystem + path: uploads diff --git a/helios-ag/fm-elfinder-bundle/10.0/config/routes/fm_elfinder.yaml b/helios-ag/fm-elfinder-bundle/10.0/config/routes/fm_elfinder.yaml new file mode 100644 index 00000000..6f423836 --- /dev/null +++ b/helios-ag/fm-elfinder-bundle/10.0/config/routes/fm_elfinder.yaml @@ -0,0 +1,2 @@ +fm_elfinder: + resource: "@FMElfinderBundle/Resources/config/routing.yaml" diff --git a/helios-ag/fm-elfinder-bundle/10.0/manifest.json b/helios-ag/fm-elfinder-bundle/10.0/manifest.json new file mode 100644 index 00000000..60a33565 --- /dev/null +++ b/helios-ag/fm-elfinder-bundle/10.0/manifest.json @@ -0,0 +1,11 @@ +{ + "bundles": { + "FM\\ElfinderBundle\\FMElfinderBundle": ["all"] + }, + "copy-from-recipe": { + "config/": "%CONFIG_DIR%/" + }, + "composer-scripts": { + "elfinder:install": "symfony-cmd" + } +} diff --git a/imper86/allegro-api-bundle/3.0/config/packages/imper86_allegro_api.yaml b/imper86/allegro-api-bundle/3.0/config/packages/imper86_allegro_api.yaml new file mode 100644 index 00000000..22ce313a --- /dev/null +++ b/imper86/allegro-api-bundle/3.0/config/packages/imper86_allegro_api.yaml @@ -0,0 +1,2 @@ +imper86_allegro_api: + sandbox: true diff --git a/imper86/allegro-api-bundle/3.0/config/routes/imper86_allegro_api.yaml b/imper86/allegro-api-bundle/3.0/config/routes/imper86_allegro_api.yaml new file mode 100644 index 00000000..1331cc9a --- /dev/null +++ b/imper86/allegro-api-bundle/3.0/config/routes/imper86_allegro_api.yaml @@ -0,0 +1,2 @@ +imper86_allegro_api: + resource: '@Imper86AllegroApiBundle/Resources/config/routes.xml' diff --git a/imper86/allegro-api-bundle/3.0/manifest.json b/imper86/allegro-api-bundle/3.0/manifest.json new file mode 100644 index 00000000..e178b69f --- /dev/null +++ b/imper86/allegro-api-bundle/3.0/manifest.json @@ -0,0 +1,12 @@ +{ + "bundles": { + "Imper86\\AllegroApiBundle\\Imper86AllegroApiBundle": ["all"] + }, + "env": { + "ALLEGRO_CLIENT_ID": "your_client_id", + "ALLEGRO_CLIENT_SECRET": "your_client_secret" + }, + "copy-from-recipe": { + "config/": "%CONFIG_DIR%/" + } +} diff --git a/imper86/allegro-api-bundle/3.0/post-install.txt b/imper86/allegro-api-bundle/3.0/post-install.txt new file mode 100644 index 00000000..d5ced913 --- /dev/null +++ b/imper86/allegro-api-bundle/3.0/post-install.txt @@ -0,0 +1,9 @@ + + Allegro API - next steps + + + * Register your application by visiting https://apps.developer.allegro.pl/ or https://apps.developer.allegro.pl.allegrosandbox.pl/ + * Edit .env.local with your client id and client secret + * Configure bundle - imper86_allegro_api.yaml in your config/packages directory + * Do make:migration or doctrine:schema:update for bundle's entities + * Start using visiting /allegro-api/start - this route will prepare allegro authorization url and will redirect you to allegro login page diff --git a/imper86/jobby-cron-bundle/1.0/config/packages/imper86_jobby.yaml b/imper86/jobby-cron-bundle/1.0/config/packages/imper86_jobby.yaml new file mode 100644 index 00000000..9af56d60 --- /dev/null +++ b/imper86/jobby-cron-bundle/1.0/config/packages/imper86_jobby.yaml @@ -0,0 +1,2 @@ +imper86_jobby: + jobs: [] diff --git a/imper86/jobby-cron-bundle/1.0/manifest.json b/imper86/jobby-cron-bundle/1.0/manifest.json new file mode 100644 index 00000000..b2972970 --- /dev/null +++ b/imper86/jobby-cron-bundle/1.0/manifest.json @@ -0,0 +1,8 @@ +{ + "bundles": { + "Imper86\\JobbyBundle\\Imper86JobbyBundle": ["all"] + }, + "copy-from-recipe": { + "config/": "%CONFIG_DIR%/" + } +} diff --git a/imper86/jobby-cron-bundle/1.0/post-install.txt b/imper86/jobby-cron-bundle/1.0/post-install.txt new file mode 100644 index 00000000..e0b168a8 --- /dev/null +++ b/imper86/jobby-cron-bundle/1.0/post-install.txt @@ -0,0 +1,6 @@ + + Jobby cron bundle - next steps + + + * Configure jobs in imper86_jobby.yaml in your config/packages directory + * Check config details with command ./bin/console config:dump imper86_jobby diff --git a/imper86/supervisor-bundle/2.2/config/packages/imper86_supervisor.yaml b/imper86/supervisor-bundle/2.2/config/packages/imper86_supervisor.yaml new file mode 100644 index 00000000..7bce322f --- /dev/null +++ b/imper86/supervisor-bundle/2.2/config/packages/imper86_supervisor.yaml @@ -0,0 +1,2 @@ +imper86_supervisor: + instances: [] diff --git a/imper86/supervisor-bundle/2.2/manifest.json b/imper86/supervisor-bundle/2.2/manifest.json new file mode 100644 index 00000000..29975e1e --- /dev/null +++ b/imper86/supervisor-bundle/2.2/manifest.json @@ -0,0 +1,8 @@ +{ + "bundles": { + "Imper86\\SupervisorBundle\\Imper86SupervisorBundle": ["all"] + }, + "copy-from-recipe": { + "config/": "%CONFIG_DIR%/" + } +} diff --git a/imper86/supervisor-bundle/2.2/post-install.txt b/imper86/supervisor-bundle/2.2/post-install.txt new file mode 100644 index 00000000..41a75e9b --- /dev/null +++ b/imper86/supervisor-bundle/2.2/post-install.txt @@ -0,0 +1,6 @@ + + Supervisor bundle - next steps + + + * Configure instances in imper86_supervisor.yaml in your config/packages directory + * Create supervisor config with command ./bin/console i86:supervisor:rebuild diff --git a/infifni/euplatesc-plugin/1.0/config/routes/infifni_sylius_euplatesc_plugin.yaml b/infifni/euplatesc-plugin/1.0/config/routes/infifni_sylius_euplatesc_plugin.yaml new file mode 100644 index 00000000..f68bb83c --- /dev/null +++ b/infifni/euplatesc-plugin/1.0/config/routes/infifni_sylius_euplatesc_plugin.yaml @@ -0,0 +1,2 @@ +infifni_sylius_euplatesc_plugin: + resource: "@InfifniSyliusEuPlatescPlugin/Resources/config/routing.yml" diff --git a/infifni/euplatesc-plugin/1.0/manifest.json b/infifni/euplatesc-plugin/1.0/manifest.json new file mode 100644 index 00000000..fd4f5dde --- /dev/null +++ b/infifni/euplatesc-plugin/1.0/manifest.json @@ -0,0 +1,8 @@ +{ + "bundles": { + "Infifni\\SyliusEuPlatescPlugin\\InfifniSyliusEuPlatescPlugin": ["all"] + }, + "copy-from-recipe": { + "config/": "%CONFIG_DIR%/" + } +} diff --git a/insidestyles/json-rpc-bundle/2.0/config/packages/json_rpc_api.yaml b/insidestyles/json-rpc-bundle/2.0/config/packages/json_rpc_api.yaml new file mode 100644 index 00000000..8e4b5906 --- /dev/null +++ b/insidestyles/json-rpc-bundle/2.0/config/packages/json_rpc_api.yaml @@ -0,0 +1,14 @@ +json_rpc_api: + handlers: + auth: + path: /auth + host: null + serializer: null + logger: null + annotation: null + main: + path: /api/v1 + host: null + serializer: null + logger: null + annotation: null diff --git a/insidestyles/json-rpc-bundle/2.0/config/routes/json_rpc_api_routing.yaml b/insidestyles/json-rpc-bundle/2.0/config/routes/json_rpc_api_routing.yaml new file mode 100644 index 00000000..708ed680 --- /dev/null +++ b/insidestyles/json-rpc-bundle/2.0/config/routes/json_rpc_api_routing.yaml @@ -0,0 +1,3 @@ +_json_rpc_api: + resource: . + type: json_rpc_api diff --git a/insidestyles/json-rpc-bundle/2.0/manifest.json b/insidestyles/json-rpc-bundle/2.0/manifest.json new file mode 100644 index 00000000..68dac51e --- /dev/null +++ b/insidestyles/json-rpc-bundle/2.0/manifest.json @@ -0,0 +1,8 @@ +{ + "bundles": { + "Insidestyles\\JsonRpcBundle\\JsonRpcBundle": ["all"] + }, + "copy-from-recipe": { + "config/": "%CONFIG_DIR%/" + } +} diff --git a/jacquesndl/mailer-bundle/1.0/config/packages/jacquesndl_mailer.yaml b/jacquesndl/mailer-bundle/1.0/config/packages/jacquesndl_mailer.yaml new file mode 100755 index 00000000..61c8b5aa --- /dev/null +++ b/jacquesndl/mailer-bundle/1.0/config/packages/jacquesndl_mailer.yaml @@ -0,0 +1,4 @@ +jacquesndl_mailer: + sender: + name: '%env(JACQUESNDL_MAILER_SENDER_NAME)%' + address: '%env(JACQUESNDL_MAILER_SENDER_ADDRESS)%' diff --git a/jacquesndl/mailer-bundle/1.0/manifest.json b/jacquesndl/mailer-bundle/1.0/manifest.json new file mode 100755 index 00000000..1ae1c4f1 --- /dev/null +++ b/jacquesndl/mailer-bundle/1.0/manifest.json @@ -0,0 +1,12 @@ +{ + "bundles": { + "Jacquesndl\\MailerBundle\\JacquesndlMailerBundle": ["all"] + }, + "copy-from-recipe": { + "config/": "%CONFIG_DIR%/" + }, + "env": { + "JACQUESNDL_MAILER_SENDER_NAME": "Example", + "JACQUESNDL_MAILER_SENDER_ADDRESS": "example@domain.tld" + } +} diff --git a/jacquesndl/mailer-bundle/1.0/post-install.txt b/jacquesndl/mailer-bundle/1.0/post-install.txt new file mode 100644 index 00000000..2e137be1 --- /dev/null +++ b/jacquesndl/mailer-bundle/1.0/post-install.txt @@ -0,0 +1,6 @@ + + Jacquesndl/MailerBundle, What's next? + + + * The Jacquesndl/MailerBundle needs your default sender configuration. + Modify your JACQUESNDL_MAILER_SENDER_NAME and JACQUESNDL_MAILER_SENDER_ADDRESS config in .env diff --git a/jane-php/json-schema/5.0/bin/jane-generate b/jane-php/json-schema/5.0/bin/jane-generate new file mode 100755 index 00000000..0b13fca6 --- /dev/null +++ b/jane-php/json-schema/5.0/bin/jane-generate @@ -0,0 +1,13 @@ +#!/usr/bin/env php + __DIR__ . '/../config/jane/config.php'], $command->getDefinition()); + +$command->execute($inputArray, new NullOutput()); diff --git a/jane-php/json-schema/5.0/config/jane/config.php b/jane-php/json-schema/5.0/config/jane/config.php new file mode 100644 index 00000000..83506b6c --- /dev/null +++ b/jane-php/json-schema/5.0/config/jane/config.php @@ -0,0 +1,8 @@ + __DIR__ . '/json-schema.json', + 'root-class' => 'MyModel', + 'namespace' => 'MyApp\Library\Generated', + 'directory' => __DIR__ . '/../../generated', +]; diff --git a/jane-php/json-schema/5.0/config/packages/jane.yaml b/jane-php/json-schema/5.0/config/packages/jane.yaml new file mode 100644 index 00000000..59ff9b33 --- /dev/null +++ b/jane-php/json-schema/5.0/config/packages/jane.yaml @@ -0,0 +1,25 @@ +services: + jane.serializer.json_encode: + class: Symfony\Component\Serializer\Encoder\JsonEncode + arguments: + - { json_encode_options: 64 } # \JSON_UNESCAPED_SLASHES + + jane.serializer.json_decode: + class: Symfony\Component\Serializer\Encoder\JsonDecode + arguments: + - { json_decode_associative: false } + + jane.serializer.json_encoder: + class: Symfony\Component\Serializer\Encoder\JsonEncoder + arguments: + - '@jane.serializer.json_encode' + - '@jane.serializer.json_decode' + +# jane.serializer.object: +# class: MyApp\Library\Generated\Normalizer\JaneObjectNormalizer +# +# jane.serializer: +# class: Symfony\Component\Serializer\Serializer +# arguments: +# - ['@serializer.denormalizer.array', '@jane.serializer.object'] +# - ['@jane.serializer.json_encoder'] diff --git a/jane-php/json-schema/5.0/manifest.json b/jane-php/json-schema/5.0/manifest.json new file mode 100644 index 00000000..e2920638 --- /dev/null +++ b/jane-php/json-schema/5.0/manifest.json @@ -0,0 +1,6 @@ +{ + "copy-from-recipe": { + "bin/": "%BIN_DIR%/", + "config/": "%CONFIG_DIR%/" + } +} diff --git a/jane-php/json-schema/5.0/post-install.txt b/jane-php/json-schema/5.0/post-install.txt new file mode 100644 index 00000000..524d8f78 --- /dev/null +++ b/jane-php/json-schema/5.0/post-install.txt @@ -0,0 +1,12 @@ + + JanePHP - JSON Schema + + + * Finish package configuration: + 1. Configure config/jane/config.php with your specification details + 2. Run bin/jane-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\Normalizer\JaneObjectNormalizer class with your generated normalizer. + 5. Then remove line comments + +Documentation: https://jane.readthedocs.io/en/latest/ diff --git a/jane-php/json-schema/6.0/bin/jane-json-schema-generate b/jane-php/json-schema/6.0/bin/jane-json-schema-generate new file mode 100755 index 00000000..7fa9edfc --- /dev/null +++ b/jane-php/json-schema/6.0/bin/jane-json-schema-generate @@ -0,0 +1,15 @@ +#!/usr/bin/env php + __DIR__ . '/../config/jane/json_schema.php'], $command->getDefinition()); + +$command->execute($inputArray, new NullOutput()); diff --git a/jane-php/json-schema/6.0/config/jane/json_schema.php b/jane-php/json-schema/6.0/config/jane/json_schema.php new file mode 100644 index 00000000..83506b6c --- /dev/null +++ b/jane-php/json-schema/6.0/config/jane/json_schema.php @@ -0,0 +1,8 @@ + __DIR__ . '/json-schema.json', + 'root-class' => 'MyModel', + 'namespace' => 'MyApp\Library\Generated', + 'directory' => __DIR__ . '/../../generated', +]; diff --git a/jane-php/json-schema/6.0/config/packages/jane.yaml b/jane-php/json-schema/6.0/config/packages/jane.yaml new file mode 100644 index 00000000..4bc2f383 --- /dev/null +++ b/jane-php/json-schema/6.0/config/packages/jane.yaml @@ -0,0 +1,6 @@ +services: + _defaults: + autowire: true + autoconfigure: true + +# MyApp\Library\Generated\Normalizer\JaneObjectNormalizer: null diff --git a/jane-php/json-schema/6.0/manifest.json b/jane-php/json-schema/6.0/manifest.json new file mode 100644 index 00000000..a55f0fce --- /dev/null +++ b/jane-php/json-schema/6.0/manifest.json @@ -0,0 +1,9 @@ +{ + "copy-from-recipe": { + "bin/": "%BIN_DIR%/", + "config/": "%CONFIG_DIR%/" + }, + "conflict": { + "symfony/symfony": "<5.0" + } +} diff --git a/jane-php/json-schema/6.0/post-install.txt b/jane-php/json-schema/6.0/post-install.txt new file mode 100644 index 00000000..2654ca54 --- /dev/null +++ b/jane-php/json-schema/6.0/post-install.txt @@ -0,0 +1,12 @@ + + JanePHP - JSON Schema + + + * 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/ diff --git a/jane-php/open-api-common/6.0/bin/jane-open-api-generate b/jane-php/open-api-common/6.0/bin/jane-open-api-generate new file mode 100755 index 00000000..ab6ef287 --- /dev/null +++ b/jane-php/open-api-common/6.0/bin/jane-open-api-generate @@ -0,0 +1,16 @@ +#!/usr/bin/env php + __DIR__ . '/../config/jane/open_api.php'], $command->getDefinition()); + +$command->execute($inputArray, new NullOutput()); diff --git a/jane-php/open-api-common/6.0/config/jane/open_api.php b/jane-php/open-api-common/6.0/config/jane/open_api.php new file mode 100644 index 00000000..cc34865e --- /dev/null +++ b/jane-php/open-api-common/6.0/config/jane/open_api.php @@ -0,0 +1,7 @@ + __DIR__ . '/open-api.yaml', + 'namespace' => 'MyApp\Library\Generated', + 'directory' => __DIR__ . '/../../generated', +]; diff --git a/jane-php/open-api-common/6.0/config/packages/jane.yaml b/jane-php/open-api-common/6.0/config/packages/jane.yaml new file mode 100644 index 00000000..4bc2f383 --- /dev/null +++ b/jane-php/open-api-common/6.0/config/packages/jane.yaml @@ -0,0 +1,6 @@ +services: + _defaults: + autowire: true + autoconfigure: true + +# MyApp\Library\Generated\Normalizer\JaneObjectNormalizer: null diff --git a/jane-php/open-api-common/6.0/manifest.json b/jane-php/open-api-common/6.0/manifest.json new file mode 100644 index 00000000..a55f0fce --- /dev/null +++ b/jane-php/open-api-common/6.0/manifest.json @@ -0,0 +1,9 @@ +{ + "copy-from-recipe": { + "bin/": "%BIN_DIR%/", + "config/": "%CONFIG_DIR%/" + }, + "conflict": { + "symfony/symfony": "<5.0" + } +} diff --git a/jane-php/open-api-common/6.0/post-install.txt b/jane-php/open-api-common/6.0/post-install.txt new file mode 100644 index 00000000..2f234739 --- /dev/null +++ b/jane-php/open-api-common/6.0/post-install.txt @@ -0,0 +1,12 @@ + + JanePHP - JSON Schema + + + * 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/ diff --git a/jbtcd/fitbit-bundle/1.0/config/packages/fitbit.yaml b/jbtcd/fitbit-bundle/1.0/config/packages/fitbit.yaml new file mode 100644 index 00000000..4dfb8fad --- /dev/null +++ b/jbtcd/fitbit-bundle/1.0/config/packages/fitbit.yaml @@ -0,0 +1,15 @@ +fitbit: + # Get client ID and Secret, register an app here: https://dev.fitbit.com/apps + clientId: '%env(FITBIT_CLIENT_ID)%' + clientSecret: '%env(FITBIT_CLIENT_SECRET)%' + # For available scopes, see here: https://dev.fitbit.com/build/reference/web-api/oauth2/#scope + scopes: + - activity + - heartrate + - location + - nutrition + - profile + - settings + - sleep + - social + - weight diff --git a/jbtcd/fitbit-bundle/1.0/manifest.json b/jbtcd/fitbit-bundle/1.0/manifest.json new file mode 100644 index 00000000..a53840be --- /dev/null +++ b/jbtcd/fitbit-bundle/1.0/manifest.json @@ -0,0 +1,12 @@ +{ + "bundles": { + "FitbitBundle\\FitbitBundle": ["all"] + }, + "copy-from-recipe": { + "config/": "%CONFIG_DIR%/" + }, + "env": { + "FITBIT_CLIENT_ID": "not-a-real-id", + "FITBIT_CLIENT_SECRET": "not-a-real-secret" + } +} diff --git a/jonathankablan/fast-entity-bundle/2.0/config/packages/fast_entity.yaml b/jonathankablan/fast-entity-bundle/2.0/config/packages/fast_entity.yaml new file mode 100644 index 00000000..6252adc7 --- /dev/null +++ b/jonathankablan/fast-entity-bundle/2.0/config/packages/fast_entity.yaml @@ -0,0 +1,19 @@ +fast_entity: + tables: + - { name: 'admin' } + - { name: 'formation' } + schema: + # User + - { entity: 'admin', property: 'username', type: 'string', length: 255, nullable: true } + - { entity: 'admin', property: 'password', type: 'string', length: 255, nullable: true } + - { entity: 'admin', property: 'email', type: 'string', length: 255, nullable: true } + - { entity: 'admin', property: 'active', type: 'boolean', nullable: true } + - { entity: 'admin', property: 'created', type: 'datetime', nullable: true } + - { entity: 'admin', property: 'updated', type: 'datetime', nullable: true } + # Formation + - { entity: 'formation', property: 'location', type: 'string', length: 255, nullable: true } + - { entity: 'formation', property: 'price', type: 'integer', length: 11, nullable: true } + - { entity: 'formation', property: 'created', type: 'datetime', nullable: true } + - { entity: 'formation', property: 'updated', type: 'datetime', nullable: true } + relations: + - { entityTo: 'admin', entityFrom: 'formation', relation: 'OneToOne' } diff --git a/jonathankablan/fast-entity-bundle/2.0/manifest.json b/jonathankablan/fast-entity-bundle/2.0/manifest.json new file mode 100644 index 00000000..a6e43c07 --- /dev/null +++ b/jonathankablan/fast-entity-bundle/2.0/manifest.json @@ -0,0 +1,8 @@ +{ + "bundles": { + "Jonathankablan\\Bundle\\FastEntityBundle": ["all"] + }, + "copy-from-recipe": { + "config/": "%CONFIG_DIR%/" + } +} diff --git a/jsor/doctrine-postgis/1.7/config/packages/jsor_doctrine_postgis.yaml b/jsor/doctrine-postgis/1.7/config/packages/jsor_doctrine_postgis.yaml new file mode 100644 index 00000000..8b50a69c --- /dev/null +++ b/jsor/doctrine-postgis/1.7/config/packages/jsor_doctrine_postgis.yaml @@ -0,0 +1,15 @@ +services: + Jsor\Doctrine\PostGIS\Event\ORMSchemaEventSubscriber: + tags: [{ name: doctrine.event_subscriber, connection: default }] + +doctrine: + dbal: + mapping_types: + _text: string + types: + geometry: 'Jsor\Doctrine\PostGIS\Types\GeometryType' + orm: + dql: + string_functions: + ST_AsGeoJSON: 'Jsor\Doctrine\PostGIS\Functions\ST_AsGeoJSON' + ST_GeomFromGeoJSON: 'Jsor\Doctrine\PostGIS\Functions\ST_GeomFromGeoJSON' diff --git a/jsor/doctrine-postgis/1.7/manifest.json b/jsor/doctrine-postgis/1.7/manifest.json new file mode 100644 index 00000000..e164c6e6 --- /dev/null +++ b/jsor/doctrine-postgis/1.7/manifest.json @@ -0,0 +1,5 @@ +{ + "copy-from-recipe": { + "config/": "%CONFIG_DIR%/" + } +} diff --git a/jurry/amqp-symfony-bundle/1.0/config/packages/jurry_rabbitmq.yaml b/jurry/amqp-symfony-bundle/1.0/config/packages/jurry_rabbitmq.yaml new file mode 100644 index 00000000..27b7b26f --- /dev/null +++ b/jurry/amqp-symfony-bundle/1.0/config/packages/jurry_rabbitmq.yaml @@ -0,0 +1,9 @@ +amqp_handler: + connection: '%env(JURRY_RABBIT_MQ_DSN)%' + queues_properties: + sync_queue: + name: stores_sync + message_ttl: 10000 # 10 seconds + async_queue: + name: stores_async + message_ttl: 10000 # 10 seconds diff --git a/jurry/amqp-symfony-bundle/1.0/manifest.json b/jurry/amqp-symfony-bundle/1.0/manifest.json new file mode 100644 index 00000000..c0215977 --- /dev/null +++ b/jurry/amqp-symfony-bundle/1.0/manifest.json @@ -0,0 +1,11 @@ +{ + "bundles": { + "Jurry\\RabbitMQ\\AmqpHandlerBundle": ["all"] + }, + "copy-from-recipe": { + "config/": "%CONFIG_DIR%/" + }, + "env": { + "JURRY_RABBIT_MQ_DSN": "tcp://guest:guest@localhost:5672" + } +} diff --git a/karser/karser-recaptcha3-bundle/0.1/config/packages/karser_recaptcha3.yaml b/karser/karser-recaptcha3-bundle/0.1/config/packages/karser_recaptcha3.yaml new file mode 100644 index 00000000..71f4fcdd --- /dev/null +++ b/karser/karser-recaptcha3-bundle/0.1/config/packages/karser_recaptcha3.yaml @@ -0,0 +1,5 @@ +karser_recaptcha3: + site_key: '%env(RECAPTCHA3_KEY)%' + secret_key: '%env(RECAPTCHA3_SECRET)%' + score_threshold: 0.5 + enabled: true diff --git a/karser/karser-recaptcha3-bundle/0.1/manifest.json b/karser/karser-recaptcha3-bundle/0.1/manifest.json new file mode 100644 index 00000000..c2147802 --- /dev/null +++ b/karser/karser-recaptcha3-bundle/0.1/manifest.json @@ -0,0 +1,13 @@ +{ + "bundles": { + "Karser\\Recaptcha3Bundle\\KarserRecaptcha3Bundle": ["all"] + }, + "copy-from-recipe": { + "config/": "%CONFIG_DIR%/" + }, + "env": { + "#1": "Get your API key and secret from https://g.co/recaptcha/v3", + "RECAPTCHA3_KEY": "my_site_key", + "RECAPTCHA3_SECRET": "my_secret" + } +} diff --git a/karser/karser-recaptcha3-bundle/0.1/post-install.txt b/karser/karser-recaptcha3-bundle/0.1/post-install.txt new file mode 100644 index 00000000..2d991483 --- /dev/null +++ b/karser/karser-recaptcha3-bundle/0.1/post-install.txt @@ -0,0 +1,6 @@ + + What's next for Karser Recaptcha3 Bundle? + + + * Make sure you have proper values in your .env file + * Read the documentation at https://github.com/karser/KarserRecaptcha3Bundle diff --git a/kerox/twig-image-placeholder-extension/1.0/config/packages/kerox_twig_image_placeholder.yaml b/kerox/twig-image-placeholder-extension/1.0/config/packages/kerox_twig_image_placeholder.yaml new file mode 100644 index 00000000..4efd9806 --- /dev/null +++ b/kerox/twig-image-placeholder-extension/1.0/config/packages/kerox_twig_image_placeholder.yaml @@ -0,0 +1,5 @@ +services: + Kerox\TwigImagePlaceholder\SvgExtension: + autowire: true + autoconfigure: true + diff --git a/kerox/twig-image-placeholder-extension/1.0/manifest.json b/kerox/twig-image-placeholder-extension/1.0/manifest.json new file mode 100644 index 00000000..e164c6e6 --- /dev/null +++ b/kerox/twig-image-placeholder-extension/1.0/manifest.json @@ -0,0 +1,5 @@ +{ + "copy-from-recipe": { + "config/": "%CONFIG_DIR%/" + } +} diff --git a/kibatic/timezone-bundle/1.0/config/packages/kibatic_timezone.yaml b/kibatic/timezone-bundle/1.0/config/packages/kibatic_timezone.yaml new file mode 100644 index 00000000..116ebf29 --- /dev/null +++ b/kibatic/timezone-bundle/1.0/config/packages/kibatic_timezone.yaml @@ -0,0 +1,3 @@ +kibatic_timezone: + default_display_timezone: 'Europe/Paris' + timezone_provider: 'kibatic_timezone.default_provider' diff --git a/kibatic/timezone-bundle/1.0/manifest.json b/kibatic/timezone-bundle/1.0/manifest.json new file mode 100644 index 00000000..c8d3cfd9 --- /dev/null +++ b/kibatic/timezone-bundle/1.0/manifest.json @@ -0,0 +1,8 @@ +{ + "bundles": { + "Kibatic\\TimezoneBundle\\KibaticTimezoneBundle": ["all"] + }, + "copy-from-recipe": { + "config/": "%CONFIG_DIR%/" + } +} diff --git a/klaviyo/php-sdk/2.0/config/packages/klaviyo.yaml b/klaviyo/php-sdk/2.0/config/packages/klaviyo.yaml new file mode 100644 index 00000000..6582fa95 --- /dev/null +++ b/klaviyo/php-sdk/2.0/config/packages/klaviyo.yaml @@ -0,0 +1,5 @@ +services: + Klaviyo\Klaviyo: + arguments: + $private_key: '%env(KLAVIYO_PRIVATE_KEY)%' + $public_key: '%env(KLAVIYO_PUBLIC_KEY)%' diff --git a/klaviyo/php-sdk/2.0/manifest.json b/klaviyo/php-sdk/2.0/manifest.json new file mode 100644 index 00000000..78fa94ae --- /dev/null +++ b/klaviyo/php-sdk/2.0/manifest.json @@ -0,0 +1,9 @@ +{ + "copy-from-recipe": { + "config/": "%CONFIG_DIR%/" + }, + "env": { + "KLAVIYO_PUBLIC_KEY": "", + "KLAVIYO_PRIVATE_KEY": "" + } +} diff --git a/knyk/mailbox-bundle/1.0/config/packages/knyk_mailbox.yaml b/knyk/mailbox-bundle/1.0/config/packages/knyk_mailbox.yaml new file mode 100644 index 00000000..b6d5af0f --- /dev/null +++ b/knyk/mailbox-bundle/1.0/config/packages/knyk_mailbox.yaml @@ -0,0 +1,2 @@ +mailbox: + connections: [] diff --git a/knyk/mailbox-bundle/1.0/manifest.json b/knyk/mailbox-bundle/1.0/manifest.json new file mode 100644 index 00000000..de287568 --- /dev/null +++ b/knyk/mailbox-bundle/1.0/manifest.json @@ -0,0 +1,8 @@ +{ + "bundles": { + "Knyk\\MailboxBundle\\MailboxBundle": ["all"] + }, + "copy-from-recipe": { + "config/": "%CONFIG_DIR%/" + } +} diff --git a/kunstmaan/node-bundle/5.2/config/packages/kunstmaan_node.yaml b/kunstmaan/node-bundle/5.2/config/packages/kunstmaan_node.yaml new file mode 100644 index 00000000..9f8f2550 --- /dev/null +++ b/kunstmaan/node-bundle/5.2/config/packages/kunstmaan_node.yaml @@ -0,0 +1,3 @@ +kunstmaan_node: + lock: + enabled: true diff --git a/kunstmaan/node-bundle/5.5/config/packages/kunstmaan_node.yaml b/kunstmaan/node-bundle/5.5/config/packages/kunstmaan_node.yaml new file mode 100644 index 00000000..c55f6a0f --- /dev/null +++ b/kunstmaan/node-bundle/5.5/config/packages/kunstmaan_node.yaml @@ -0,0 +1,4 @@ +kunstmaan_node: + lock: + enabled: true + enable_permissions: false diff --git a/kunstmaan/node-bundle/5.5/config/routes/kunstmaan_node.yaml b/kunstmaan/node-bundle/5.5/config/routes/kunstmaan_node.yaml new file mode 120000 index 00000000..93485f0c --- /dev/null +++ b/kunstmaan/node-bundle/5.5/config/routes/kunstmaan_node.yaml @@ -0,0 +1 @@ +../../../5.2/config/routes/kunstmaan_node.yaml \ No newline at end of file diff --git a/kunstmaan/node-bundle/5.5/manifest.json b/kunstmaan/node-bundle/5.5/manifest.json new file mode 120000 index 00000000..4e060456 --- /dev/null +++ b/kunstmaan/node-bundle/5.5/manifest.json @@ -0,0 +1 @@ +../5.2/manifest.json \ No newline at end of file diff --git a/kunstmaan/search-bundle/5.6/config/packages/kunstmaan_search.yaml b/kunstmaan/search-bundle/5.6/config/packages/kunstmaan_search.yaml new file mode 100644 index 00000000..199760f8 --- /dev/null +++ b/kunstmaan/search-bundle/5.6/config/packages/kunstmaan_search.yaml @@ -0,0 +1,8 @@ +# Default we set the used elasticsearch version to 7 in the "kunstmaan_search.elasticsearch_version" parameter. +# If you want to use Elasticsearch 6, change the value of the "kunstmaan_search.elasticsearch_version" parameter to "6" and run "composer req ruflin/elastica ^6.0" +kunstmaan_search: + connection: + driver: elastic_search + host: localhost + port: 9200 + index_prefix: myproject # TODO: Change this prefix to you liking. Maybe the name of your project diff --git a/kunstmaan/search-bundle/5.6/manifest.json b/kunstmaan/search-bundle/5.6/manifest.json new file mode 100644 index 00000000..31bf96d0 --- /dev/null +++ b/kunstmaan/search-bundle/5.6/manifest.json @@ -0,0 +1,11 @@ +{ + "bundles": { + "Kunstmaan\\SearchBundle\\KunstmaanSearchBundle": ["all"] + }, + "copy-from-recipe": { + "config/": "%CONFIG_DIR%/" + }, + "container": { + "kunstmaan_search.elasticsearch_version": "7" + } +} diff --git a/lag/adminbundle/1.0/config/admin/resources/.gitignore b/lag/adminbundle/1.0/config/admin/resources/.gitignore new file mode 100644 index 00000000..e69de29b diff --git a/lag/adminbundle/1.0/config/packages/lag_admin.yaml b/lag/adminbundle/1.0/config/packages/lag_admin.yaml new file mode 100644 index 00000000..879c4893 --- /dev/null +++ b/lag/adminbundle/1.0/config/packages/lag_admin.yaml @@ -0,0 +1,3 @@ +lag_admin: + application: + resources_path: '%kernel.project_dir%/config/admin/resources' diff --git a/lag/adminbundle/1.0/manifest.json b/lag/adminbundle/1.0/manifest.json new file mode 100644 index 00000000..bc3ca383 --- /dev/null +++ b/lag/adminbundle/1.0/manifest.json @@ -0,0 +1,8 @@ +{ + "bundles": { + "LAG\\AdminBundle\\LAGAdminBundle": ["all"] + }, + "copy-from-recipe": { + "config/": "%CONFIG_DIR%/" + } +} diff --git a/liip/imagine-bundle/1.8/manifest.json b/liip/imagine-bundle/1.8/manifest.json index e5757aba..4d51d91a 100644 --- a/liip/imagine-bundle/1.8/manifest.json +++ b/liip/imagine-bundle/1.8/manifest.json @@ -3,9 +3,10 @@ "Liip\\ImagineBundle\\LiipImagineBundle": ["all"] }, "copy-from-recipe": { - "config/": "%CONFIG_DIR%/" + "config/": "%CONFIG_DIR%/", + "public/": "%PUBLIC_DIR%/" }, "gitignore": [ - "/public/media/cache/" + "/%PUBLIC_DIR%/media/cache/" ] } diff --git a/lolautruche/payline-bundle/2.0/config/packages/payline.yaml b/lolautruche/payline-bundle/2.0/config/packages/payline.yaml new file mode 100644 index 00000000..c3e274bb --- /dev/null +++ b/lolautruche/payline-bundle/2.0/config/packages/payline.yaml @@ -0,0 +1,11 @@ +lolautruche_payline: + merchant_id: '%env(PAYLINE_MERCHANT_ID)%' + access_key: '%env(PAYLINE_ACCESS_KEY)%' + contract_number: '%env(PAYLINE_CONTRACT_NUMBER)%' + environment: '%env(PAYLINE_ENVIRONMENT)%' + # Can be EUR (or €), USD (or $), POUND (or £). + default_currency: '€' + # Route name for the confirmation page the user will be redirected to, once the payment has been processed. + default_confirmation_route: 'route_name_for_confirmation_page' + # Route name for the error page the user will be redirected to if there was an error with the payment. + default_error_route: 'route_name_for_error_page' diff --git a/lolautruche/payline-bundle/2.0/config/routes/payline.yaml b/lolautruche/payline-bundle/2.0/config/routes/payline.yaml new file mode 100644 index 00000000..920c2843 --- /dev/null +++ b/lolautruche/payline-bundle/2.0/config/routes/payline.yaml @@ -0,0 +1,3 @@ +LolautruchePaylineBundle: + resource: '@LolautruchePaylineBundle/Resources/config/routing.yml' + prefix: / diff --git a/lolautruche/payline-bundle/2.0/manifest.json b/lolautruche/payline-bundle/2.0/manifest.json new file mode 100644 index 00000000..a849b3c0 --- /dev/null +++ b/lolautruche/payline-bundle/2.0/manifest.json @@ -0,0 +1,16 @@ +{ + "bundles": { + "Lolautruche\\PaylineBundle\\LolautruchePaylineBundle": ["all"] + }, + "copy-from-recipe": { + "config/": "%CONFIG_DIR%/" + }, + "env": { + "#PAYLINE_MERCHANT_ID": "your_payline_merchant_id", + "#PAYLINE_ACCESS_KEY": "your_payline_access_key", + "PAYLINE_CONTRACT_NUMBER": "your_payline_contract_number", + "#1": "Valid values are 'homo', 'prod', 'int' and 'dev'.", + "#2": "e.g. 'homo' for 'Homologation', 'prod' for 'Production', 'int' for 'Integration'", + "PAYLINE_ENVIRONMENT": "homo" + } +} diff --git a/lolautruche/payline-bundle/2.0/post-install.txt b/lolautruche/payline-bundle/2.0/post-install.txt new file mode 100644 index 00000000..c2343b80 --- /dev/null +++ b/lolautruche/payline-bundle/2.0/post-install.txt @@ -0,0 +1,14 @@ + + You just installed LolautruchePaylineBundle! + What's next? + + + * Configure Payline environment variables in .env; + + * Using Symfony 4.4/5.x: Encrypt sensitive environment variables + with bin/console secrets:set command (optional); + + * Using Symfony 3.4/4.x: Ensure to correctly expose the environment variables commented in `.env` file. + + * Read the documentation at: + https://github.com/lolautruche/LolautruchePaylineBundle/blob/master/Resources/doc/00-index.md diff --git a/mael/intervention-image-bundle/1.0/config/packages/mael_intervention_image.yaml b/mael/intervention-image-bundle/1.0/config/packages/mael_intervention_image.yaml new file mode 100644 index 00000000..63f70beb --- /dev/null +++ b/mael/intervention-image-bundle/1.0/config/packages/mael_intervention_image.yaml @@ -0,0 +1,2 @@ +mael_intervention_image: + driver: gd ## gd or imagick - Default is gd diff --git a/mael/intervention-image-bundle/1.0/manifest.json b/mael/intervention-image-bundle/1.0/manifest.json new file mode 100644 index 00000000..adfddce3 --- /dev/null +++ b/mael/intervention-image-bundle/1.0/manifest.json @@ -0,0 +1,8 @@ +{ + "bundles": { + "Mael\\InterventionImageBundle\\MaelInterventionImageBundle": ["all"] + }, + "copy-from-recipe": { + "config/": "%CONFIG_DIR%/" + } +} diff --git a/mael/intervention-image-bundle/1.0/post-install.txt b/mael/intervention-image-bundle/1.0/post-install.txt new file mode 100644 index 00000000..d3fd52fa --- /dev/null +++ b/mael/intervention-image-bundle/1.0/post-install.txt @@ -0,0 +1,4 @@ + Next for MaelInterventionImageBundle + * Edit mael_intervention_image.yaml to configure the driver in config/packages + * Read documentation at https://github.com/Mael-91/InterventionImageBundle/blob/master/README.md + diff --git a/mael/recaptcha-bundle/0.1/config/packages/mael_recaptcha.yaml b/mael/recaptcha-bundle/0.1/config/packages/mael_recaptcha.yaml new file mode 100644 index 00000000..db115dd7 --- /dev/null +++ b/mael/recaptcha-bundle/0.1/config/packages/mael_recaptcha.yaml @@ -0,0 +1,3 @@ +mael_recaptcha: + key: '%env(resolve:MAEL_RECAPTCHA_KEY)%' + secret: '%env(resolve:MAEL_RECAPTCHA_SECRET)%' diff --git a/mael/recaptcha-bundle/0.1/manifest.json b/mael/recaptcha-bundle/0.1/manifest.json new file mode 100644 index 00000000..4b091f6a --- /dev/null +++ b/mael/recaptcha-bundle/0.1/manifest.json @@ -0,0 +1,12 @@ +{ + "bundles": { + "Mael\\MaelRecaptchaBundle\\MaelRecaptchaBundle": ["all"] + }, + "copy-from-recipe": { + "config/": "%CONFIG_DIR%/" + }, + "env": { + "MAEL_RECAPTCHA_KEY": "YOUR_RECAPTCHA_KEY", + "MAEL_RECAPTCHA_SECRET": "YOUR_RECAPTCHA_SECRET" + } +} diff --git a/mael/recaptcha-bundle/0.1/post-install.txt b/mael/recaptcha-bundle/0.1/post-install.txt new file mode 100644 index 00000000..37ef65de --- /dev/null +++ b/mael/recaptcha-bundle/0.1/post-install.txt @@ -0,0 +1,3 @@ + Next for MaelRecaptchaBundle + * Edit mael_recaptcha.yaml add you keys in your .env file + * Readdocumentation at https://github.com/Mael-91/MaelRecaptchaBundle/blob/master/README.md diff --git a/maksze/telemetry-bundle/0.4/config/packages/maksze_telemetry.yaml b/maksze/telemetry-bundle/0.4/config/packages/maksze_telemetry.yaml new file mode 100644 index 00000000..13230167 --- /dev/null +++ b/maksze/telemetry-bundle/0.4/config/packages/maksze_telemetry.yaml @@ -0,0 +1,14 @@ +# Configuration file for the MaksZeTelemetry bundle +# +# For more information about the bundle settings visit: +# https://github.com/maksze/MaksZeTelemetryBundle/blob/master/README.md + +maksze_telemetry: + yandex_metrika: + #- {id: '%env(YANDEX_METRIKA_ID)%'} + yandex_webmaster: + #- {id: '%env(YANDEX_WEBMASTER_ID)%'} + google_search_console: + #- {id: '%env(GOOGLE_SEARCH_CONSOLE_ID)%'} + google_analytics: + #- {id: '%env(GOOGLE_ANALYTICS_ID)%'} diff --git a/maksze/telemetry-bundle/0.4/config/routes/maksze_telemetry.yaml b/maksze/telemetry-bundle/0.4/config/routes/maksze_telemetry.yaml new file mode 100644 index 00000000..ecc154c6 --- /dev/null +++ b/maksze/telemetry-bundle/0.4/config/routes/maksze_telemetry.yaml @@ -0,0 +1,3 @@ +_maksze_telemetry: + resource: '@MaksZeTelemetryBundle/Resources/config/routes.xml' + prefix: / diff --git a/maksze/telemetry-bundle/0.4/manifest.json b/maksze/telemetry-bundle/0.4/manifest.json new file mode 100644 index 00000000..0902bee3 --- /dev/null +++ b/maksze/telemetry-bundle/0.4/manifest.json @@ -0,0 +1,14 @@ +{ + "bundles": { + "MaksZe\\TelemetryBundle\\MaksZeTelemetryBundle": ["all"] + }, + "copy-from-recipe": { + "config/": "%CONFIG_DIR%/" + }, + "env": { + "YANDEX_METRIKA_ID": "any_id", + "YANDEX_WEBMASTER_ID": "any_id", + "GOOGLE_SEARCH_CONSOLE_ID": "any_id", + "GOOGLE_ANALYTICS_ID": "any_id" + } +} diff --git a/mapado/rest-client-sdk-bundle/0.24/config/packages/mapado_rest_client_sdk.yaml b/mapado/rest-client-sdk-bundle/0.24/config/packages/mapado_rest_client_sdk.yaml index 13d57ec6..e8dadda7 100644 --- a/mapado/rest-client-sdk-bundle/0.24/config/packages/mapado_rest_client_sdk.yaml +++ b/mapado/rest-client-sdk-bundle/0.24/config/packages/mapado_rest_client_sdk.yaml @@ -1,6 +1,6 @@ mapado_rest_client_sdk: entity_managers: foo: - server_url: 'https://my-api.com:8080' + server_url: '%env(MAPADO_REST_CLIENT_SDK_SERVER_URL)%' mappings: dir: '%kernel.project_dir%/src/Entity/' diff --git a/mapado/rest-client-sdk-bundle/0.24/manifest.json b/mapado/rest-client-sdk-bundle/0.24/manifest.json index c30b128b..8f418867 100644 --- a/mapado/rest-client-sdk-bundle/0.24/manifest.json +++ b/mapado/rest-client-sdk-bundle/0.24/manifest.json @@ -5,5 +5,8 @@ "copy-from-recipe": { "config/": "%CONFIG_DIR%/", "src/": "%SRC_DIR%/" + }, + "env": { + "MAPADO_REST_CLIENT_SDK_SERVER_URL": "https://my-api.com:8080" } } diff --git a/meteo-concept/hcaptcha-bundle/1.0/config/packages/meteo_concept_h_captcha.yaml b/meteo-concept/hcaptcha-bundle/1.0/config/packages/meteo_concept_h_captcha.yaml new file mode 100644 index 00000000..0fb0344e --- /dev/null +++ b/meteo-concept/hcaptcha-bundle/1.0/config/packages/meteo_concept_h_captcha.yaml @@ -0,0 +1,4 @@ +meteo_concept_h_captcha: + hcaptcha: + site_key: 10000000-ffff-ffff-ffff-000000000001 + secret: '%env(resolve:HCAPTCHA_SECRET)%' diff --git a/meteo-concept/hcaptcha-bundle/1.0/manifest.json b/meteo-concept/hcaptcha-bundle/1.0/manifest.json new file mode 100644 index 00000000..51c48a63 --- /dev/null +++ b/meteo-concept/hcaptcha-bundle/1.0/manifest.json @@ -0,0 +1,11 @@ +{ + "bundles": { + "MeteoConcept\\HCaptchaBundle\\MeteoConceptHCaptchaBundle": ["all"] + }, + "copy-from-recipe": { + "config/": "%CONFIG_DIR%/" + }, + "env": { + "HCAPTCHA_SECRET": "0x0000000000000000000000000000000000000000" + } +} diff --git a/misd/phone-number-bundle/1.3/config/packages/misd_phone_number.yaml b/misd/phone-number-bundle/1.3/config/packages/misd_phone_number.yaml index ae476b0c..3ed889af 100644 --- a/misd/phone-number-bundle/1.3/config/packages/misd_phone_number.yaml +++ b/misd/phone-number-bundle/1.3/config/packages/misd_phone_number.yaml @@ -1,6 +1,6 @@ # To persist libphonenumber\PhoneNumber objects, add the Misd\PhoneNumberBundle\Doctrine\DBAL\Types\PhoneNumberType mapping to your application's config. # This requires: doctrine/doctrine-bundle -doctrine: - dbal: - types: - phone_number: Misd\PhoneNumberBundle\Doctrine\DBAL\Types\PhoneNumberType +# doctrine: +# dbal: +# types: +# phone_number: Misd\PhoneNumberBundle\Doctrine\DBAL\Types\PhoneNumberType diff --git a/misd/phone-number-bundle/1.3/post-install.txt b/misd/phone-number-bundle/1.3/post-install.txt index 87ff1773..8e6574d3 100644 --- a/misd/phone-number-bundle/1.3/post-install.txt +++ b/misd/phone-number-bundle/1.3/post-install.txt @@ -1,3 +1,9 @@ + + This bundle is Abandoned: use odolbeau/phone-number-bundle instead + + composer remove misd/phone-number-bundle --no-scripts + composer require odolbeau/phone-number-bundle + You now can use the phone bundle as described here: https://github.com/misd-service-development/phone-number-bundle#usage diff --git a/mmucklo/grid-bundle/5.0/config/routes/dtc_grid.yaml b/mmucklo/grid-bundle/5.0/config/routes/dtc_grid.yaml new file mode 100644 index 00000000..29132d48 --- /dev/null +++ b/mmucklo/grid-bundle/5.0/config/routes/dtc_grid.yaml @@ -0,0 +1,2 @@ +dtc_grid: + resource: '@DtcGridBundle/Resources/config/routing.yml' diff --git a/mmucklo/grid-bundle/5.0/manifest.json b/mmucklo/grid-bundle/5.0/manifest.json new file mode 100644 index 00000000..d592f507 --- /dev/null +++ b/mmucklo/grid-bundle/5.0/manifest.json @@ -0,0 +1,11 @@ +{ + "bundles": { + "Dtc\\GridBundle\\DtcGridBundle": ["all"] + }, + "copy-from-package": { + "Resources/config/dtc_grid.yaml": "%CONFIG_DIR%/packages/dtc_grid.yaml" + }, + "copy-from-recipe": { + "config/": "%CONFIG_DIR%/" + } +} diff --git a/mmucklo/queue-bundle/6.0/config/routes/dtc_queue.yaml b/mmucklo/queue-bundle/6.0/config/routes/dtc_queue.yaml new file mode 100644 index 00000000..1ca1907c --- /dev/null +++ b/mmucklo/queue-bundle/6.0/config/routes/dtc_queue.yaml @@ -0,0 +1,2 @@ +dtc_queue: + resource: '@DtcQueueBundle/Resources/config/routing.yml' diff --git a/mmucklo/queue-bundle/6.0/manifest.json b/mmucklo/queue-bundle/6.0/manifest.json new file mode 100644 index 00000000..a4e11cc9 --- /dev/null +++ b/mmucklo/queue-bundle/6.0/manifest.json @@ -0,0 +1,11 @@ +{ + "bundles": { + "Dtc\\QueueBundle\\DtcQueueBundle": ["all"] + }, + "copy-from-package": { + "Resources/config/dtc_queue.yaml": "%CONFIG_DIR%/packages/dtc_queue.yaml" + }, + "copy-from-recipe": { + "config/": "%CONFIG_DIR%/" + } +} diff --git a/mmucklo/queue-bundle/6.0/post-install.txt b/mmucklo/queue-bundle/6.0/post-install.txt new file mode 100644 index 00000000..c05fcc54 --- /dev/null +++ b/mmucklo/queue-bundle/6.0/post-install.txt @@ -0,0 +1,29 @@ + + What's next? + + +Please update config/packages/dtc_queue.yaml: + +# config/packages/dtc_queue.yaml +dtc_queue: + manager: + # This parameter is required and should typically be set to one of: + # [odm|orm|beanstalkd|rabbit_mq|redis] + job: orm + # ... + +For a full list of configuration options, see: + * https://github.com/mmucklo/DtcQueueBundle/blob/master/Resources/doc/full-configuration.md + +If you use the "orm" job manager, you'll want to create a migration or update the schema on your database manually. For more info see: + * https://github.com/mmucklo/DtcQueueBundle/blob/master/Resources/doc/symfony4-5.md + +For admin, make sure twig-pack or twig-bundle + twig is installed. + +On older versions of Symfony, the following might be necessary: + +# config/packages/framework.yaml +framework: + # ... + templating: + engines: ['twig'] diff --git a/mobizel/symfony-capistrano/0.2/manifest.json b/mobizel/symfony-capistrano/0.2/manifest.json new file mode 100644 index 00000000..53bcbbbb --- /dev/null +++ b/mobizel/symfony-capistrano/0.2/manifest.json @@ -0,0 +1,7 @@ +{ + "copy-from-package": { + "Capfile": "Capfile", + "Gemfile": "Gemfile", + "etc/": "etc/" + } +} diff --git a/mobizel/symfony-capistrano/0.2/post-install.txt b/mobizel/symfony-capistrano/0.2/post-install.txt new file mode 100644 index 00000000..4aa003f4 --- /dev/null +++ b/mobizel/symfony-capistrano/0.2/post-install.txt @@ -0,0 +1,7 @@ + + What's next? + + +Please update etc/capistrano/deploy.rb, etc/capistrano/deploy/staging.rb and etc/capistrano/deploy/production.rb to accurately reflect your needs. + +* Read the capistrano symfony documentation at https://github.com/capistrano/symfony diff --git a/moneyphp/money-bundle/0.1/config/packages/money.yaml b/moneyphp/money-bundle/0.1/config/packages/money.yaml new file mode 100644 index 00000000..ab45e086 --- /dev/null +++ b/moneyphp/money-bundle/0.1/config/packages/money.yaml @@ -0,0 +1,3 @@ +services: + Money\Currencies: + alias: "moneyphp.iso.currencies" diff --git a/moneyphp/money-bundle/0.1/manifest.json b/moneyphp/money-bundle/0.1/manifest.json new file mode 100644 index 00000000..25468726 --- /dev/null +++ b/moneyphp/money-bundle/0.1/manifest.json @@ -0,0 +1,8 @@ +{ + "bundles": { + "Money\\MoneyBundle\\MoneyBundle": ["all"] + }, + "copy-from-recipe": { + "config/": "%CONFIG_DIR%/" + } +} diff --git a/monsieurbiz/sylius-admin-better-login-plugin/1.0/manifest.json b/monsieurbiz/sylius-admin-better-login-plugin/1.0/manifest.json new file mode 100644 index 00000000..0c172f57 --- /dev/null +++ b/monsieurbiz/sylius-admin-better-login-plugin/1.0/manifest.json @@ -0,0 +1,8 @@ +{ + "bundles": { + "MonsieurBiz\\SyliusAdminBetterLoginPlugin\\MonsieurBizSyliusAdminBetterLoginPlugin": ["all"] + }, + "copy-from-package": { + "src/Resources/views/SyliusUiBundle/Security/_login.html.twig": "templates/bundles/SyliusUiBundle/Security/_login.html.twig" + } +} diff --git a/monsieurbiz/sylius-alert-message-plugin/1.0/config/packages/monsieurbiz_sylius_alert_message_plugin.yaml b/monsieurbiz/sylius-alert-message-plugin/1.0/config/packages/monsieurbiz_sylius_alert_message_plugin.yaml new file mode 100644 index 00000000..1c6ed2e8 --- /dev/null +++ b/monsieurbiz/sylius-alert-message-plugin/1.0/config/packages/monsieurbiz_sylius_alert_message_plugin.yaml @@ -0,0 +1,2 @@ +imports: + - { resource: "@MonsieurBizSyliusAlertMessagePlugin/Resources/config/config.yaml" } diff --git a/monsieurbiz/sylius-alert-message-plugin/1.0/config/routes/monsieurbiz_sylius_alert_message_plugin.yaml b/monsieurbiz/sylius-alert-message-plugin/1.0/config/routes/monsieurbiz_sylius_alert_message_plugin.yaml new file mode 100644 index 00000000..7fae4293 --- /dev/null +++ b/monsieurbiz/sylius-alert-message-plugin/1.0/config/routes/monsieurbiz_sylius_alert_message_plugin.yaml @@ -0,0 +1,3 @@ +monsieurbiz_sylius_alert_message_admin: + resource: "@MonsieurBizSyliusAlertMessagePlugin/Resources/config/routing/admin.yaml" + prefix: /admin diff --git a/monsieurbiz/sylius-alert-message-plugin/1.0/manifest.json b/monsieurbiz/sylius-alert-message-plugin/1.0/manifest.json new file mode 100644 index 00000000..9bdff693 --- /dev/null +++ b/monsieurbiz/sylius-alert-message-plugin/1.0/manifest.json @@ -0,0 +1,10 @@ +{ + "bundles": { + "MonsieurBiz\\SyliusAlertMessagePlugin\\MonsieurBizSyliusAlertMessagePlugin": [ + "all" + ] + }, + "copy-from-recipe": { + "config/": "%CONFIG_DIR%/" + } +} diff --git a/monsieurbiz/sylius-rich-editor-plugin/1.0/config/packages/monsieurbiz_sylius_rich_editor_plugin.yaml b/monsieurbiz/sylius-rich-editor-plugin/1.0/config/packages/monsieurbiz_sylius_rich_editor_plugin.yaml new file mode 100644 index 00000000..71e3ce6e --- /dev/null +++ b/monsieurbiz/sylius-rich-editor-plugin/1.0/config/packages/monsieurbiz_sylius_rich_editor_plugin.yaml @@ -0,0 +1,2 @@ +imports: + - { resource: "@MonsieurBizSyliusRichEditorPlugin/Resources/config/config.yaml" } diff --git a/monsieurbiz/sylius-rich-editor-plugin/1.0/config/routes/monsieurbiz_sylius_rich_editor_plugin.yaml b/monsieurbiz/sylius-rich-editor-plugin/1.0/config/routes/monsieurbiz_sylius_rich_editor_plugin.yaml new file mode 100644 index 00000000..d6979d2e --- /dev/null +++ b/monsieurbiz/sylius-rich-editor-plugin/1.0/config/routes/monsieurbiz_sylius_rich_editor_plugin.yaml @@ -0,0 +1,2 @@ +monsieur_biz_rich_editor_plugin: + resource: "@MonsieurBizSyliusRichEditorPlugin/Resources/config/routing.yaml" diff --git a/monsieurbiz/sylius-rich-editor-plugin/1.0/manifest.json b/monsieurbiz/sylius-rich-editor-plugin/1.0/manifest.json new file mode 100644 index 00000000..a33a848a --- /dev/null +++ b/monsieurbiz/sylius-rich-editor-plugin/1.0/manifest.json @@ -0,0 +1,10 @@ +{ + "bundles": { + "MonsieurBiz\\SyliusRichEditorPlugin\\MonsieurBizSyliusRichEditorPlugin": [ + "all" + ] + }, + "copy-from-recipe": { + "config/": "%CONFIG_DIR%/" + } +} diff --git a/msalsas/gdpr-consent-banner-bundle/1.0/config/packages/msalsas_gdpr_consent_banner.yaml b/msalsas/gdpr-consent-banner-bundle/1.0/config/packages/msalsas_gdpr_consent_banner.yaml new file mode 100644 index 00000000..90e8677d --- /dev/null +++ b/msalsas/gdpr-consent-banner-bundle/1.0/config/packages/msalsas_gdpr_consent_banner.yaml @@ -0,0 +1,4 @@ +# See all configuration options at https://github.com/msalsas/MsalsasGdprConsentBannerBundle/blob/master/Resources/doc/index.rst +msalsas_gdpr_consent_banner: + fade_time: 2 + time_to_expire: 30 days diff --git a/msalsas/gdpr-consent-banner-bundle/1.0/config/routes/msalsas_gdpr_consent_banner.yaml b/msalsas/gdpr-consent-banner-bundle/1.0/config/routes/msalsas_gdpr_consent_banner.yaml new file mode 100644 index 00000000..3ed25e22 --- /dev/null +++ b/msalsas/gdpr-consent-banner-bundle/1.0/config/routes/msalsas_gdpr_consent_banner.yaml @@ -0,0 +1,4 @@ +accept_gdpr_consent_banner: + path: /accept-gdpr-consent-banner + controller: Msalsas\GdprConsentBannerBundle\Controller\MsalsasGdprConsentBannerController:acceptGdprConsentBanner + methods: POST diff --git a/msalsas/gdpr-consent-banner-bundle/1.0/manifest.json b/msalsas/gdpr-consent-banner-bundle/1.0/manifest.json new file mode 100644 index 00000000..08d17bf7 --- /dev/null +++ b/msalsas/gdpr-consent-banner-bundle/1.0/manifest.json @@ -0,0 +1,8 @@ +{ + "bundles": { + "Msalsas\\GdprConsentBannerBundle\\MsalsasGdprConsentBannerBundle": ["all"] + }, + "copy-from-recipe": { + "config/": "%CONFIG_DIR%/" + } +} diff --git a/msgphp/eav-bundle/0.10/config/packages/msgphp_eav.php b/msgphp/eav-bundle/0.10/config/packages/msgphp_eav.php deleted file mode 100644 index 7ff6ab19..00000000 --- a/msgphp/eav-bundle/0.10/config/packages/msgphp_eav.php +++ /dev/null @@ -1,14 +0,0 @@ -extension('msgphp_eav', [ - 'class_mapping' => [ - Attribute::class => \App\Entity\Attribute::class, - AttributeValue::class => \App\Entity\AttributeValue::class, - ], - ]); -}; diff --git a/msgphp/eav-bundle/0.10/config/packages/msgphp_eav.yaml b/msgphp/eav-bundle/0.10/config/packages/msgphp_eav.yaml new file mode 100644 index 00000000..ff6648c9 --- /dev/null +++ b/msgphp/eav-bundle/0.10/config/packages/msgphp_eav.yaml @@ -0,0 +1,4 @@ +msgphp_eav: + class_mapping: + MsgPhp\Eav\Attribute: App\Entity\Attribute + MsgPhp\Eav\AttributeValue: App\Entity\AttributeValue diff --git a/msgphp/user-bundle/0.10/config/packages/msgphp_user.php b/msgphp/user-bundle/0.10/config/packages/msgphp_user.php deleted file mode 100644 index 44770919..00000000 --- a/msgphp/user-bundle/0.10/config/packages/msgphp_user.php +++ /dev/null @@ -1,12 +0,0 @@ -extension('msgphp_user', [ - 'class_mapping' => [ - User::class => \App\Entity\User::class, - ], - ]); -}; diff --git a/msgphp/user-bundle/0.10/config/packages/msgphp_user.yaml b/msgphp/user-bundle/0.10/config/packages/msgphp_user.yaml new file mode 100644 index 00000000..fe7238ff --- /dev/null +++ b/msgphp/user-bundle/0.10/config/packages/msgphp_user.yaml @@ -0,0 +1,3 @@ +msgphp_user: + class_mapping: + MsgPhp\User\User: App\Entity\User diff --git a/mtarld/symbok-bundle/2.0/config/packages/symbok.yaml b/mtarld/symbok-bundle/2.0/config/packages/symbok.yaml new file mode 100644 index 00000000..f4666061 --- /dev/null +++ b/mtarld/symbok-bundle/2.0/config/packages/symbok.yaml @@ -0,0 +1,4 @@ +symbok: + # Namespaces that you want to be processed by symbok + namespaces: + # - 'App\Entity' diff --git a/mtarld/symbok-bundle/2.0/manifest.json b/mtarld/symbok-bundle/2.0/manifest.json new file mode 100644 index 00000000..00e640e5 --- /dev/null +++ b/mtarld/symbok-bundle/2.0/manifest.json @@ -0,0 +1,8 @@ +{ + "bundles": { + "Mtarld\\SymbokBundle\\SymbokBundle": ["all"] + }, + "copy-from-recipe": { + "config/": "%CONFIG_DIR%/" + } +} diff --git a/mtarld/symbok-bundle/2.0/post-install.txt b/mtarld/symbok-bundle/2.0/post-install.txt new file mode 100644 index 00000000..ea57b2bf --- /dev/null +++ b/mtarld/symbok-bundle/2.0/post-install.txt @@ -0,0 +1,6 @@ + + What's next for SymbokBundle? + + + * Configure bundle in config/packages/symbok.yaml + * Read the documentation at https://github.com/mtarld/symbok-bundle/blob/master/src/Resources/doc/index.md diff --git a/mukadi/wallet-bundle/1.0/manifest.json b/mukadi/wallet-bundle/1.0/manifest.json new file mode 100644 index 00000000..bf69801d --- /dev/null +++ b/mukadi/wallet-bundle/1.0/manifest.json @@ -0,0 +1,10 @@ +{ + "bundles": { + "Mukadi\\WalletBundle\\MukadiWalletBundle": ["all"] + }, + "copy-from-package": { + "res/config/": "%CONFIG_DIR%/", + "res/Entity/": "%SRC_DIR%/Entity/", + "res/Repository/": "%SRC_DIR%/Repository/" + } +} diff --git a/mukadi/wordpress-bundle/2.0/manifest.json b/mukadi/wordpress-bundle/2.0/manifest.json new file mode 100644 index 00000000..2c5cd91f --- /dev/null +++ b/mukadi/wordpress-bundle/2.0/manifest.json @@ -0,0 +1,33 @@ +{ + "bundles": { + "Mukadi\\WordpressBundle\\MukadiWordpressBundle": ["all"] + }, + "copy-from-package": { + "res/wp-cli.yml": "wp-cli.yml", + "res/config/": "%CONFIG_DIR%/", + "res/public/": "%PUBLIC_DIR%", + "res/sf-wp-bootstrap.php": "sf-wp-bootstrap.php" + }, + "env": { + "WP_PREFIX": "wp_", + "WP_THEME": "wp-blank", + "WP_DIR": "wp", + "AUTH_KEY": "%generate(secret)%", + "SECURE_AUTH_KEY": "%generate(secret)%", + "LOGGED_IN_KEY": "%generate(secret)%", + "NONCE_KEY": "%generate(secret)%", + "AUTH_SALT": "%generate(secret)%", + "SECURE_AUTH_SALT": "%generate(secret)%", + "LOGGED_IN_SALT": "%generate(secret)%", + "NONCE_SALT": "%generate(secret)%" + }, + "gitignore": [ + "/public/wp/", + "/public/upgrade/", + "/public/uploads/", + "/public/languages/", + "/public/mu-plugins/", + "/public/plugins/", + "/public/themes/" + ] +} diff --git a/mukadi/wordpress-bundle/2.0/post-install.txt b/mukadi/wordpress-bundle/2.0/post-install.txt new file mode 100644 index 00000000..556b154b --- /dev/null +++ b/mukadi/wordpress-bundle/2.0/post-install.txt @@ -0,0 +1,9 @@ + + What's next? + + + * update your 'public/index.php' file accordingly to the 'sf-wp-bootstrap.php' file in the root directory. + * Configure doctrine/dbal to ignore custom wordpress tables (such as tables generated by plugins) + * Add the WordpressBundle routing file in your `config/routes.yaml`, after your custom routes to catch all Wordpress routes. + + * Read the documentation at https://github.com/mbo2olivier/mukadi-wordpress-bundle diff --git a/networking/init-cms-bundle/4.0/config/packages/dev/networking_init_cms.yaml b/networking/init-cms-bundle/4.0/config/packages/dev/networking_init_cms.yaml new file mode 100644 index 00000000..c83c82ca --- /dev/null +++ b/networking/init-cms-bundle/4.0/config/packages/dev/networking_init_cms.yaml @@ -0,0 +1,3 @@ +networking_init_cms: + cache: + activate: false diff --git a/networking/init-cms-bundle/4.0/config/packages/networking_init_cms.yaml b/networking/init-cms-bundle/4.0/config/packages/networking_init_cms.yaml new file mode 100644 index 00000000..71e4d363 --- /dev/null +++ b/networking/init-cms-bundle/4.0/config/packages/networking_init_cms.yaml @@ -0,0 +1,60 @@ +imports: + - { resource: "@NetworkingInitCmsBundle/Resources/config/cms/doctrine.yaml" } + - { resource: "@NetworkingInitCmsBundle/Resources/config/cms/fos_ck_editor.yaml" } + - { resource: "@NetworkingInitCmsBundle/Resources/config/cms/fos_user.yaml" } + - { resource: "@NetworkingInitCmsBundle/Resources/config/cms/mopa_bootstrap.yaml" } + - { resource: "@NetworkingInitCmsBundle/Resources/config/cms/oneup_flysystem.yaml" } + - { resource: "@NetworkingInitCmsBundle/Resources/config/cms/oneup_uploader.yaml" } + - { resource: "@NetworkingInitCmsBundle/Resources/config/cms/sonata_admin.yaml" } + - { resource: "@NetworkingInitCmsBundle/Resources/config/cms/sonata_block.yaml" } + - { resource: "@NetworkingInitCmsBundle/Resources/config/cms/sonata_core.yaml" } + - { resource: "@NetworkingInitCmsBundle/Resources/config/cms/sonata_doctrine_admin.yaml" } + - { resource: "@NetworkingInitCmsBundle/Resources/config/cms/sonata_formatter.yaml" } + - { resource: "@NetworkingInitCmsBundle/Resources/config/cms/sonata_media.yaml" } + - { resource: "@NetworkingInitCmsBundle/Resources/config/cms/sonata_notification.yaml" } + - { resource: "@NetworkingInitCmsBundle/Resources/config/cms/sonata_user.yaml" } + - { resource: "@NetworkingInitCmsBundle/Resources/config/cms/stof_doctrine_extensions.yaml" } + - { resource: "@NetworkingInitCmsBundle/Resources/config/cms/symfony_cmf_routing_extra.yaml" } +# Default security configuration +# - { resource: "@NetworkingInitCmsBundle/Resources/config/cms/security.yaml" } + +# Set up the serializer to read config file for App Page and User entities +jms_serializer: + metadata: + directories: + NetworkingSonataMediaBundle: + namespace_prefix: "Sonata\\MediaBundle" + path: "@NetworkingInitCmsBundle/Resources/config/serializer" + app: + namespace_prefix: "App" + path: "%kernel.project_dir%/config/serializer" + + +networking_init_cms: + #Base classes to be used for the page and user entities + class: + page: "App\\Entity\\Page" + user: "App\\Entity\\User" + + # Bootstrap some template settings to get you started + templates: + 'app_single_column': + template: "@NetworkingInitCms/sandbox/page/one_column.html.twig" + name: "Single Column" + icon: "bundles/networkinginitcms/img/template_header_one_column.png" + zones: + - { name: header, class: 'col-md-12' } + - { name: main_content, class: 'col-md-12'} + 'app_two_column': + template: "@NetworkingInitCms/sandbox/page/two_column.html.twig" + name: "Two Column" + icon: "bundles/networkinginitcms/img/template_header_two_column.png" + zones: + - { name: header , class: 'col-md-12'} + - { name: left , class: 'col-md-3'} + - { name: right , class: 'col-md-9'} + cache: + activate: true #enable for product, false in dev config + + # For more information regarding configuration of the CMS Bundle, please visit the following documentation + # https://github.com/networking/init-cms-bundle/blob/master/doc/configuration.md diff --git a/networking/init-cms-bundle/4.0/config/routes/networking_init_cms.yaml b/networking/init-cms-bundle/4.0/config/routes/networking_init_cms.yaml new file mode 100644 index 00000000..66940470 --- /dev/null +++ b/networking/init-cms-bundle/4.0/config/routes/networking_init_cms.yaml @@ -0,0 +1,3 @@ +networking_init_cms: + resource: "@NetworkingInitCmsBundle/Resources/config/routing/routing.yaml" + prefix: / diff --git a/networking/init-cms-bundle/4.0/manifest.json b/networking/init-cms-bundle/4.0/manifest.json new file mode 100644 index 00000000..f54d3d45 --- /dev/null +++ b/networking/init-cms-bundle/4.0/manifest.json @@ -0,0 +1,17 @@ +{ + "bundles": { + "Networking\\InitCmsBundle\\NetworkingInitCmsBundle": ["all"] + }, + "copy-from-recipe": { + "config/": "%CONFIG_DIR%/", + "serializer/": "%CONFIG_DIR%/serializer/", + "src/": "%SRC_DIR%/" + }, + "env": { + "LOCALE": "en", + "DATABASE_DRIVER": "mysql" + }, + "composer-scripts": { + "ckeditor:install --clear=drop": "symfony-cmd" + } +} diff --git a/networking/init-cms-bundle/4.0/post-install.txt b/networking/init-cms-bundle/4.0/post-install.txt new file mode 100644 index 00000000..0d96c9c9 --- /dev/null +++ b/networking/init-cms-bundle/4.0/post-install.txt @@ -0,0 +1,19 @@ + + What's next? + + + * The InitCmsBundle imports many configuration files, such as doctrine.yaml, security.yaml etc. In order + to ensure your app will work please do the following: + 1. Check that all files imported via the networking_init_cms.yaml file are not overwritten with a similar + configuration file in your /config/packages folder. !IMPORTANT the doctrine.yaml and security.yaml must be either + deleted, or update/extended with the configuration as proposed in the doctrine.yaml and security.yaml files + included with the CMS. + 2. Check that the Page and User entities were copied to the correct entity folder, and are configured correctly. + 3. Configure your languages in the networking_init_cms.yaml file, for multi-language support. + 4. Configure the lexik translation bundles fallback_local and managed_locales parameters to support DB based translations. + 5. Clear the cache again so that the new config files are loaded correctly. + 6. Check your database configuration, and back up your database if you haven't done so already. + 7. Update your database bin/console doctrine:schema:update or using the doctrine migrate commands + 8. Use the command networking:initcms:install to install the DB install fixtures and create a superuser admin. + ALTERNATIVELY you can use the networking:initcms:data-setup if you just want to install the data structure and fixtures + 9. Enable or disable full page caching by setting networking_init_cms.cache.activate to true/false diff --git a/networking/init-cms-bundle/4.0/serializer/Entity.Page.yaml b/networking/init-cms-bundle/4.0/serializer/Entity.Page.yaml new file mode 100644 index 00000000..86f06af2 --- /dev/null +++ b/networking/init-cms-bundle/4.0/serializer/Entity.Page.yaml @@ -0,0 +1,77 @@ +App\Entity\Page: + properties: + id: + type: integer + createdAt: + type: DateTime + updatedAt: + type: DateTime + pageName: + type: string + metaTitle: + type: string + url: + type: string + path: + type: string + level: + type: integer + metaKeyword: + type: string + metaDescription: + type: string + parent: + accessor: + getter: convertParentToInteger + type: integer + alias: + accessor: + getter: convertAliasToInteger + type: integer + parents: + accessor: + getter: convertParentsToArray + type: array + children: + accessor: + getter: convertChildrenToIntegerArray + type: array + allChildren: + exclude: true + layoutBlock: + type: ArrayCollection + menuItem: + exclude: true + accessor: + getter: prepareMenuItemsForSerialization + type: ArrayCollection + isHome: + type: boolean + status: + type: string + visibility: + type: string + activeFrom: + type: DateTime + activeTo: + type: DateTime + locale: + type: string + translations: + accessor: + getter: convertTranslationsToIntegerArray + type: array + originals: + accessor: + getter: convertOriginalsToIntegerArray + type: array + snapshots: + exclude: true + snapshotClassType: + type: string + oldTitle: + exclude: true + tags: + exclude: true + contentRoute: + exclude: true diff --git a/networking/init-cms-bundle/4.0/src/Entity/Page.php b/networking/init-cms-bundle/4.0/src/Entity/Page.php new file mode 100644 index 00000000..efa22bcf --- /dev/null +++ b/networking/init-cms-bundle/4.0/src/Entity/Page.php @@ -0,0 +1,122 @@ + + * + * @ORM\Entity + * @ORM\Table(name="page", + * uniqueConstraints={@ORM\UniqueConstraint(name="path_idx", columns={ + * "path", "locale" + * })} + * ) + * @ORM\HasLifecycleCallbacks() + */ +class Page extends BasePage{ + + /** + * @var integer $id + * + * @ORM\Column(type="integer") + * @ORM\Id + * @ORM\GeneratedValue(strategy="IDENTITY") + */ + protected $id; + + /** + * @var ContentRoute + * @ORM\OneToOne( + * targetEntity = "Networking\InitCmsBundle\Entity\ContentRoute", + * cascade={"remove", "persist"} + * ) + * @ORM\JoinColumn(name="content_route_id", referencedColumnName="id") + */ + protected $contentRoute; + + /** + * @ORM\OneToMany(targetEntity="Networking\InitCmsBundle\Entity\LayoutBlock", + * mappedBy="page", + * cascade={"remove", "persist"}, + * orphanRemoval=true + * ) + * @ORM\OrderBy({"sortOrder" = "ASC"}) + */ + protected $layoutBlock; + + /** + * @ORM\OneToMany(targetEntity="Networking\InitCmsBundle\Entity\MenuItem", + * mappedBy="page", + * cascade={"remove"}, + * orphanRemoval=true + * ) + */ + protected $menuItem; + + /** + * @ORM\OneToMany(targetEntity="Networking\InitCmsBundle\Entity\PageSnapshot", + * mappedBy="page", + * cascade={"remove"}, + * orphanRemoval=true + * ) + * @ORM\OrderBy({"version" = "DESC"}) + */ + protected $snapshots; + + /** + * @ORM\OneToMany(targetEntity="App\Entity\Page", + * mappedBy="parent" + * ) + */ + protected $children; + + /** + * @var Page + * @ORM\ManyToOne(targetEntity="App\Entity\Page" ) + * @ORM\JoinColumn(name="alias_id", referencedColumnName="id", onDelete="SET NULL") + */ + protected $alias; + + /** + * @var Page + * @ORM\ManyToOne(targetEntity="App\Entity\Page", inversedBy="children", cascade="persist" ) + * @ORM\JoinColumn(name="parent_id", referencedColumnName="id", onDelete="SET NULL") + * @Gedmo\TreeParent + */ + protected $parent; + + /** + * @var ArrayCollection $originals + * @ORM\ManyToMany( + * targetEntity="App\Entity\Page", + * inversedBy="translations", + * cascade={"persist"} + * ) + * @ORM\JoinTable( + * name="page_translation", + * joinColumns={ + * @ORM\JoinColumn(name="translation_id", referencedColumnName="id") + * }, + * inverseJoinColumns={ + * @ORM\JoinColumn(name="original_id", referencedColumnName="id") + * } + * ) + */ + protected $originals; + + /** + * @var ArrayCollection $translations + * @ORM\ManyToMany( + * targetEntity="App\Entity\Page", + * mappedBy="originals", + * cascade={"persist"} + * ) + */ + protected $translations; +} diff --git a/networking/init-cms-bundle/4.0/src/Entity/User.php b/networking/init-cms-bundle/4.0/src/Entity/User.php new file mode 100644 index 00000000..ab1ff686 --- /dev/null +++ b/networking/init-cms-bundle/4.0/src/Entity/User.php @@ -0,0 +1,31 @@ +id = $id; + } +} diff --git a/nucleos/user-bundle/1.1/src/Entity/User/User.php b/nucleos/user-bundle/1.1/src/Entity/User/User.php new file mode 100644 index 00000000..f37340f4 --- /dev/null +++ b/nucleos/user-bundle/1.1/src/Entity/User/User.php @@ -0,0 +1,18 @@ + + */ +class User extends BaseUser +{ + public function setId(string $id): void + { + $this->id = $id; + } +} diff --git a/oat-sa/bundle-health-check/1.0/config/routes/health_check.yaml b/oat-sa/bundle-health-check/1.0/config/routes/health_check.yaml new file mode 100644 index 00000000..029b7fb5 --- /dev/null +++ b/oat-sa/bundle-health-check/1.0/config/routes/health_check.yaml @@ -0,0 +1,5 @@ +health_check_check: + resource: '@HealthCheckBundle/Resources/config/routing/health_check_check.yaml' + +health_check_ping: + resource: '@HealthCheckBundle/Resources/config/routing/health_check_ping.yaml' diff --git a/oat-sa/bundle-health-check/1.0/manifest.json b/oat-sa/bundle-health-check/1.0/manifest.json new file mode 100644 index 00000000..7989c982 --- /dev/null +++ b/oat-sa/bundle-health-check/1.0/manifest.json @@ -0,0 +1,8 @@ +{ + "bundles": { + "OAT\\Bundle\\HealthCheckBundle\\HealthCheckBundle": [ "all" ] + }, + "copy-from-recipe": { + "config/": "%CONFIG_DIR%/" + } +} diff --git a/oat-sa/bundle-health-check/1.0/post-install.txt b/oat-sa/bundle-health-check/1.0/post-install.txt new file mode 100644 index 00000000..18e3cba5 --- /dev/null +++ b/oat-sa/bundle-health-check/1.0/post-install.txt @@ -0,0 +1,7 @@ + + Next: Health check bundle configuration + + + * Configure health check and ping routes in file config/routes/health_check.yaml + + * Read the documentation at https://github.com/oat-sa/bundle-health-check diff --git a/oat-sa/bundle-lti1p3/2.0/config/packages/lti1p3.yaml b/oat-sa/bundle-lti1p3/2.0/config/packages/lti1p3.yaml new file mode 100644 index 00000000..7d40ba9b --- /dev/null +++ b/oat-sa/bundle-lti1p3/2.0/config/packages/lti1p3.yaml @@ -0,0 +1,37 @@ +lti1p3: + key_chains: + platformKey: + key_set_name: "platformSet" + public_key: "file://%kernel.project_dir%/config/secrets/dev/public.key" + private_key: "file://%kernel.project_dir%/config/secrets/dev/private.key" + private_key_passphrase: null + toolKey: + key_set_name: "toolSet" + public_key: "file://%kernel.project_dir%/config/secrets/dev/public.key" + private_key: "file://%kernel.project_dir%/config/secrets/dev/private.key" + private_key_passphrase: null + platforms: + localPlatform: + name: "Local platform" + audience: "http://localhost/platform" + oidc_authentication_url: "http://localhost/lti1p3/oidc/login-authentication" + oauth2_access_token_url: "http://localhost/lti1p3/auth/platformKey/token" + tools: + localTool: + name: "Local tool" + audience: "http://localhost/tool" + oidc_login_initiation_url: "http://localhost/lti1p3/oidc/login-initiation" + launch_url: "http://localhost/lti1p3/tool/launch" + deep_link_launch_url: null + registrations: + local: + client_id: "client_id" + platform: "localPlatform" + tool: "localTool" + deployment_ids: + - "deploymentId1" + platform_key_chain: "platformKey" + tool_key_chain: "toolKey" + platform_jwks_url: null + tool_jwks_url: null + diff --git a/oat-sa/bundle-lti1p3/2.0/config/routes/lti1p3.yaml b/oat-sa/bundle-lti1p3/2.0/config/routes/lti1p3.yaml new file mode 100644 index 00000000..c893970a --- /dev/null +++ b/oat-sa/bundle-lti1p3/2.0/config/routes/lti1p3.yaml @@ -0,0 +1,11 @@ +lti1p3_jwks: + resource: '@Lti1p3Bundle/Resources/config/routing/jwks.yaml' + +lti1p3_message_platform: + resource: '@Lti1p3Bundle/Resources/config/routing/message/platform.yaml' + +lti1p3_message_tool: + resource: '@Lti1p3Bundle/Resources/config/routing/message/tool.yaml' + +lti1p3_service_platform: + resource: '@Lti1p3Bundle/Resources/config/routing/service/platform.yaml' diff --git a/oat-sa/bundle-lti1p3/2.0/manifest.json b/oat-sa/bundle-lti1p3/2.0/manifest.json new file mode 100644 index 00000000..adfed5a2 --- /dev/null +++ b/oat-sa/bundle-lti1p3/2.0/manifest.json @@ -0,0 +1,11 @@ +{ + "bundles": { + "OAT\\Bundle\\Lti1p3Bundle\\Lti1p3Bundle": [ "all" ] + }, + "copy-from-recipe": { + "config/": "%CONFIG_DIR%/" + }, + "env": { + "LTI1P3_SERVICE_ENCRYPTION_KEY": "%generate(secret)%" + } +} diff --git a/oat-sa/bundle-lti1p3/2.0/post-install.txt b/oat-sa/bundle-lti1p3/2.0/post-install.txt new file mode 100644 index 00000000..e8a9d95d --- /dev/null +++ b/oat-sa/bundle-lti1p3/2.0/post-install.txt @@ -0,0 +1,11 @@ + + Next: LTI 1.3 bundle configuration + + + * Create development keys: mkdir -p config/secrets/dev && openssl genrsa -out config/secrets/dev/private.key 2048 && openssl rsa -in config/secrets/dev/private.key -outform PEM -pubout -out config/secrets/dev/public.key + + * Configure your keys, platform, tools and registrations in file config/packages/lti1p3.yaml + + * Configure the platform and tools automated routes in file config/routes/lti1p3.yaml + + * Read the documentation at https://github.com/oat-sa/bundle-lti1p3 diff --git a/oat-sa/bundle-lti1p3/3.0/config/packages/lti1p3.yaml b/oat-sa/bundle-lti1p3/3.0/config/packages/lti1p3.yaml new file mode 100644 index 00000000..bb0fe88a --- /dev/null +++ b/oat-sa/bundle-lti1p3/3.0/config/packages/lti1p3.yaml @@ -0,0 +1,36 @@ +lti1p3: + key_chains: + platformKey: + key_set_name: "platformSet" + public_key: "file://%kernel.project_dir%/config/secrets/dev/public.key" + private_key: "file://%kernel.project_dir%/config/secrets/dev/private.key" + private_key_passphrase: null + toolKey: + key_set_name: "toolSet" + public_key: "file://%kernel.project_dir%/config/secrets/dev/public.key" + private_key: "file://%kernel.project_dir%/config/secrets/dev/private.key" + private_key_passphrase: null + platforms: + localPlatform: + name: "Local platform" + audience: "http://localhost/platform" + oidc_authentication_url: "http://localhost/lti1p3/oidc/authentication" + oauth2_access_token_url: "http://localhost/lti1p3/auth/platformKey/token" + tools: + localTool: + name: "Local tool" + audience: "http://localhost/tool" + oidc_initiation_url: "http://localhost/lti1p3/oidc/initiation" + launch_url: null + deep_linking_url: null + registrations: + local: + client_id: "client_id" + platform: "localPlatform" + tool: "localTool" + deployment_ids: + - "deploymentId1" + platform_key_chain: "platformKey" + tool_key_chain: "toolKey" + platform_jwks_url: null + tool_jwks_url: null diff --git a/oat-sa/bundle-lti1p3/3.0/config/routes/lti1p3.yaml b/oat-sa/bundle-lti1p3/3.0/config/routes/lti1p3.yaml new file mode 100644 index 00000000..c893970a --- /dev/null +++ b/oat-sa/bundle-lti1p3/3.0/config/routes/lti1p3.yaml @@ -0,0 +1,11 @@ +lti1p3_jwks: + resource: '@Lti1p3Bundle/Resources/config/routing/jwks.yaml' + +lti1p3_message_platform: + resource: '@Lti1p3Bundle/Resources/config/routing/message/platform.yaml' + +lti1p3_message_tool: + resource: '@Lti1p3Bundle/Resources/config/routing/message/tool.yaml' + +lti1p3_service_platform: + resource: '@Lti1p3Bundle/Resources/config/routing/service/platform.yaml' diff --git a/oat-sa/bundle-lti1p3/3.0/manifest.json b/oat-sa/bundle-lti1p3/3.0/manifest.json new file mode 100644 index 00000000..adfed5a2 --- /dev/null +++ b/oat-sa/bundle-lti1p3/3.0/manifest.json @@ -0,0 +1,11 @@ +{ + "bundles": { + "OAT\\Bundle\\Lti1p3Bundle\\Lti1p3Bundle": [ "all" ] + }, + "copy-from-recipe": { + "config/": "%CONFIG_DIR%/" + }, + "env": { + "LTI1P3_SERVICE_ENCRYPTION_KEY": "%generate(secret)%" + } +} diff --git a/oat-sa/bundle-lti1p3/3.0/post-install.txt b/oat-sa/bundle-lti1p3/3.0/post-install.txt new file mode 100644 index 00000000..28d04b52 --- /dev/null +++ b/oat-sa/bundle-lti1p3/3.0/post-install.txt @@ -0,0 +1,11 @@ + + Next: LTI 1.3 bundle configuration + + + * Create development keys as explained at https://github.com/oat-sa/bundle-lti1p3/blob/master/doc/quickstart/configuration.md#configure-a-keychain + + * Configure your keys, platform, tools and registrations in file config/packages/lti1p3.yaml + + * Configure the platform and tools automated routes in file config/routes/lti1p3.yaml + + * Read the documentation at https://github.com/oat-sa/bundle-lti1p3 diff --git a/odolbeau/phone-number-bundle/3.0/config/packages/misd_phone_number.yaml b/odolbeau/phone-number-bundle/3.0/config/packages/misd_phone_number.yaml new file mode 100644 index 00000000..a9970e10 --- /dev/null +++ b/odolbeau/phone-number-bundle/3.0/config/packages/misd_phone_number.yaml @@ -0,0 +1,6 @@ +# To persist libphonenumber\PhoneNumber objects, add the Misd\PhoneNumberBundle\Doctrine\DBAL\Types\PhoneNumberType mapping to your application's config. +# This requires: doctrine/doctrine-bundle +#doctrine: +# dbal: +# types: +# phone_number: Misd\PhoneNumberBundle\Doctrine\DBAL\Types\PhoneNumberType diff --git a/odolbeau/phone-number-bundle/3.0/manifest.json b/odolbeau/phone-number-bundle/3.0/manifest.json new file mode 100644 index 00000000..333a9a25 --- /dev/null +++ b/odolbeau/phone-number-bundle/3.0/manifest.json @@ -0,0 +1,8 @@ +{ + "bundles": { + "Misd\\PhoneNumberBundle\\MisdPhoneNumberBundle": ["all"] + }, + "copy-from-recipe": { + "config/": "%CONFIG_DIR%/" + } +} diff --git a/odolbeau/phone-number-bundle/3.0/post-install.txt b/odolbeau/phone-number-bundle/3.0/post-install.txt new file mode 100644 index 00000000..a71c1801 --- /dev/null +++ b/odolbeau/phone-number-bundle/3.0/post-install.txt @@ -0,0 +1,9 @@ + + Uncomment the configuration provided for doctrine + and now can use the phone bundle as described here: + https://github.com/odolbeau/phone-number-bundle#usage + The Doctrine configuration has been already done. + You now can use `phone_number` as an ORM-Type: + + /** @ORM\Column(type="phone_number") */ + private $phoneNumber; diff --git a/otobul/epaybg-bundle/1.0/config/packages/otobul_epaybg.yaml b/otobul/epaybg-bundle/1.0/config/packages/otobul_epaybg.yaml new file mode 100644 index 00000000..edb8c795 --- /dev/null +++ b/otobul/epaybg-bundle/1.0/config/packages/otobul_epaybg.yaml @@ -0,0 +1,9 @@ +otobul_epaybg: + # Identification number of the merchant + min: '%env(OTOBUL_EPAYBG_MIN)%' + + # The secret word of the merchant + secret: '%env(OTOBUL_EPAYBG_SECRET)%' + + # If true all requests will be sent to ePay.bg’s Demo System + isDemo: '%env(bool:OTOBUL_EPAYBG_IS_DEMO)%' diff --git a/otobul/epaybg-bundle/1.0/config/routes/otobul_epaybg.yaml b/otobul/epaybg-bundle/1.0/config/routes/otobul_epaybg.yaml new file mode 100644 index 00000000..1e6fe676 --- /dev/null +++ b/otobul/epaybg-bundle/1.0/config/routes/otobul_epaybg.yaml @@ -0,0 +1,3 @@ +otobul_epaybg: + resource: '@OtobulEpaybgBundle/Resources/config/routes.xml' + prefix: /webhook/epaybg diff --git a/otobul/epaybg-bundle/1.0/manifest.json b/otobul/epaybg-bundle/1.0/manifest.json new file mode 100644 index 00000000..4667e727 --- /dev/null +++ b/otobul/epaybg-bundle/1.0/manifest.json @@ -0,0 +1,13 @@ +{ + "bundles": { + "Otobul\\EpaybgBundle\\OtobulEpaybgBundle": ["all"] + }, + "copy-from-recipe": { + "config/": "%CONFIG_DIR%/" + }, + "env": { + "OTOBUL_EPAYBG_MIN": "YOUR_EPAYBG_MIN", + "OTOBUL_EPAYBG_SECRET": "YOUR_EPAYBG_SECRET", + "OTOBUL_EPAYBG_IS_DEMO": "true" + } +} diff --git a/payplug/sylius-payplug-plugin/0.2/config/packages/sylius_payplug.yaml b/payplug/sylius-payplug-plugin/0.2/config/packages/sylius_payplug.yaml new file mode 100644 index 00000000..82462ec0 --- /dev/null +++ b/payplug/sylius-payplug-plugin/0.2/config/packages/sylius_payplug.yaml @@ -0,0 +1,3 @@ +imports: + - { resource: "@PayPlugSyliusPayPlugPlugin/Resources/config/config.yml" } + - { resource: "@PayPlugSyliusPayPlugPlugin/Resources/config/services.xml" } diff --git a/payplug/sylius-payplug-plugin/0.2/manifest.json b/payplug/sylius-payplug-plugin/0.2/manifest.json new file mode 100644 index 00000000..5e36954e --- /dev/null +++ b/payplug/sylius-payplug-plugin/0.2/manifest.json @@ -0,0 +1,8 @@ +{ + "bundles": { + "PayPlug\\SyliusPayPlugPlugin\\PayPlugSyliusPayPlugPlugin": ["all"] + }, + "copy-from-recipe": { + "config/": "%CONFIG_DIR%/" + } +} diff --git a/payum/payum-bundle/2.4/config/payum.yaml b/payum/payum-bundle/2.4/config/payum.yaml new file mode 100644 index 00000000..528976e2 --- /dev/null +++ b/payum/payum-bundle/2.4/config/payum.yaml @@ -0,0 +1,17 @@ +payum: + storages: + Payum\Core\Model\Payment: + filesystem: + storage_dir: '%kernel.root_dir%/Resources/payments' + id_property: number + + security: + token_storage: + Payum\Core\Model\Token: + filesystem: + storage_dir: '%kernel.root_dir%/Resources/gateways' + id_property: hash + + gateways: + offline: + factory: offline diff --git a/payum/payum-bundle/2.4/manifest.json b/payum/payum-bundle/2.4/manifest.json new file mode 100644 index 00000000..69d6a116 --- /dev/null +++ b/payum/payum-bundle/2.4/manifest.json @@ -0,0 +1,8 @@ +{ + "bundles": { + "Payum\\Bundle\\PayumBundle\\PayumBundle": ["all"] + }, + "copy-from-recipe": { + "config/payum.yaml": "%CONFIG_DIR%/packages/payum.yaml" + } +} diff --git a/php-http/httplug-bundle/1.6/config/packages/httplug.yaml b/php-http/httplug-bundle/1.6/config/packages/httplug.yaml index 2aadcd13..71100ff4 100644 --- a/php-http/httplug-bundle/1.6/config/packages/httplug.yaml +++ b/php-http/httplug-bundle/1.6/config/packages/httplug.yaml @@ -1,7 +1,7 @@ httplug: plugins: - redirect: - preserve_header: true + retry: + retry: 1 discovery: client: 'auto' diff --git a/php-translation/symfony-bundle/0.10/config/packages/dev/php_translation.yaml b/php-translation/symfony-bundle/0.10/config/packages/dev/php_translation.yaml new file mode 100644 index 00000000..53398fbc --- /dev/null +++ b/php-translation/symfony-bundle/0.10/config/packages/dev/php_translation.yaml @@ -0,0 +1,5 @@ +translation: + symfony_profiler: + enabled: true + webui: + enabled: true diff --git a/php-translation/symfony-bundle/0.10/config/packages/php_translation.yaml b/php-translation/symfony-bundle/0.10/config/packages/php_translation.yaml new file mode 100644 index 00000000..bc6cd978 --- /dev/null +++ b/php-translation/symfony-bundle/0.10/config/packages/php_translation.yaml @@ -0,0 +1,11 @@ +translation: + locales: ["en"] + edit_in_place: + enabled: false + config_name: app + configs: + app: + dirs: ["%kernel.project_dir%/templates", "%kernel.project_dir%/src"] + output_dir: "%kernel.project_dir%/translations" + excluded_names: ["*TestCase.php", "*Test.php"] + excluded_dirs: [cache, data, logs] diff --git a/php-translation/symfony-bundle/0.10/config/routes/dev/php_translation.yaml b/php-translation/symfony-bundle/0.10/config/routes/dev/php_translation.yaml new file mode 100644 index 00000000..f0e3975f --- /dev/null +++ b/php-translation/symfony-bundle/0.10/config/routes/dev/php_translation.yaml @@ -0,0 +1,6 @@ +_translation_webui: + resource: "@TranslationBundle/Resources/config/routing_webui.yaml" + prefix: /admin + +_translation_profiler: + resource: '@TranslationBundle/Resources/config/routing_symfony_profiler.yaml' diff --git a/php-translation/symfony-bundle/0.10/config/routes/php_translation.yaml b/php-translation/symfony-bundle/0.10/config/routes/php_translation.yaml new file mode 100644 index 00000000..e70e16fe --- /dev/null +++ b/php-translation/symfony-bundle/0.10/config/routes/php_translation.yaml @@ -0,0 +1,3 @@ +_translation_edit_in_place: + resource: '@TranslationBundle/Resources/config/routing_edit_in_place.yaml' + prefix: /admin diff --git a/php-translation/symfony-bundle/0.10/manifest.json b/php-translation/symfony-bundle/0.10/manifest.json new file mode 100644 index 00000000..e7a617c6 --- /dev/null +++ b/php-translation/symfony-bundle/0.10/manifest.json @@ -0,0 +1,8 @@ +{ + "bundles": { + "Translation\\Bundle\\TranslationBundle": ["all"] + }, + "copy-from-recipe": { + "config/": "%CONFIG_DIR%/" + } +} diff --git a/piou-piou/ribs-cron-bundle/1.0/config/ribs_cron.yaml b/piou-piou/ribs-cron-bundle/1.0/config/ribs_cron.yaml new file mode 100644 index 00000000..1f11a49f --- /dev/null +++ b/piou-piou/ribs-cron-bundle/1.0/config/ribs_cron.yaml @@ -0,0 +1,6 @@ +parameters: + data_directory: '%kernel.project_dir%/data/' + ribs_cron_ip_external: '%env(IP_CRON_EXTERNAL)%' + ribs_cron_ip_internal: '%env(IP_CRON_INTERNAL)%' + ribs_cron: +# testCronCall: '* * * * *' diff --git a/piou-piou/ribs-cron-bundle/1.0/manifest.json b/piou-piou/ribs-cron-bundle/1.0/manifest.json new file mode 100644 index 00000000..12420d9c --- /dev/null +++ b/piou-piou/ribs-cron-bundle/1.0/manifest.json @@ -0,0 +1,12 @@ +{ + "bundles": { + "PiouPiou\\RibsCronBundle\\RibsCronBundle": ["all"] + }, + "copy-from-recipe": { + "config/": "%CONFIG_DIR%/" + }, + "env": { + "IP_CRON_EXTERNAL": "", + "IP_CRON_INTERNAL": "127.0.0.1" + } +} diff --git a/prooph/event-store-bus-bridge/3.1/config/packages/prooph_event_store_bus_bridge.yaml b/prooph/event-store-bus-bridge/3.1/config/packages/prooph_event_store_bus_bridge.yaml index ed23c389..b4aa49a0 100644 --- a/prooph/event-store-bus-bridge/3.1/config/packages/prooph_event_store_bus_bridge.yaml +++ b/prooph/event-store-bus-bridge/3.1/config/packages/prooph_event_store_bus_bridge.yaml @@ -7,9 +7,3 @@ services: - '@prooph_service_bus.default_event_bus' tags: - { name: 'prooph_event_store.default.plugin' } - - Prooph\EventStoreBusBridge\TransactionManager: - arguments: - - '@app.event_store.default' - tags: - - { name: 'prooph_service_bus.default_command_bus.plugin' } diff --git a/redrat/api-helper-bundle/0.1/config/packages/redrat_api_helper.yaml b/redrat/api-helper-bundle/0.1/config/packages/redrat_api_helper.yaml new file mode 100644 index 00000000..2a7bacef --- /dev/null +++ b/redrat/api-helper-bundle/0.1/config/packages/redrat_api_helper.yaml @@ -0,0 +1,2 @@ +redrat_api_helper: + paths: diff --git a/redrat/api-helper-bundle/0.1/manifest.json b/redrat/api-helper-bundle/0.1/manifest.json new file mode 100644 index 00000000..0405f883 --- /dev/null +++ b/redrat/api-helper-bundle/0.1/manifest.json @@ -0,0 +1,9 @@ + +{ + "bundles": { + "RedRat\\ApiHelperBundle\\ApiHelperBundle": ["all"] + }, + "copy-from-recipe": { + "config/": "%CONFIG_DIR%/" + } +} diff --git a/rundum/event-base/0.0/config/packages/rundum_event_base.yaml b/rundum/event-base/0.0/config/packages/rundum_event_base.yaml new file mode 100644 index 00000000..fe1b2e1c --- /dev/null +++ b/rundum/event-base/0.0/config/packages/rundum_event_base.yaml @@ -0,0 +1,8 @@ +services: + _defaults: + autowire: true + autoconfigure: true + public: false + + rundum.event.entity.subscriber: + class: Rundum\EventSubscriber\EntityEventSubscriber diff --git a/rundum/event-base/0.0/manifest.json b/rundum/event-base/0.0/manifest.json new file mode 100644 index 00000000..e164c6e6 --- /dev/null +++ b/rundum/event-base/0.0/manifest.json @@ -0,0 +1,5 @@ +{ + "copy-from-recipe": { + "config/": "%CONFIG_DIR%/" + } +} diff --git a/scheb/2fa-bundle/5.0/config/packages/scheb_2fa.yaml b/scheb/2fa-bundle/5.0/config/packages/scheb_2fa.yaml new file mode 100644 index 00000000..6b6135ae --- /dev/null +++ b/scheb/2fa-bundle/5.0/config/packages/scheb_2fa.yaml @@ -0,0 +1,8 @@ +# See the configuration reference at https://github.com/scheb/2fa/blob/master/doc/configuration.md +scheb_two_factor: + security_tokens: + - Symfony\Component\Security\Core\Authentication\Token\UsernamePasswordToken + # If you're using guard-based authentication, you have to use this one: + # - Symfony\Component\Security\Guard\Token\PostAuthenticationGuardToken + # If you're using authenticator-based security (introduced in Symfony 5.1), you have to use this one: + # - Symfony\Component\Security\Http\Authenticator\Token\PostAuthenticationToken diff --git a/scheb/2fa-bundle/5.0/config/routes/scheb_2fa.yaml b/scheb/2fa-bundle/5.0/config/routes/scheb_2fa.yaml new file mode 100644 index 00000000..b574a0c9 --- /dev/null +++ b/scheb/2fa-bundle/5.0/config/routes/scheb_2fa.yaml @@ -0,0 +1,7 @@ +2fa_login: + path: /2fa + defaults: + _controller: "scheb_two_factor.form_controller:form" + +2fa_login_check: + path: /2fa_check diff --git a/scheb/2fa-bundle/5.0/manifest.json b/scheb/2fa-bundle/5.0/manifest.json new file mode 100644 index 00000000..f9204ee8 --- /dev/null +++ b/scheb/2fa-bundle/5.0/manifest.json @@ -0,0 +1,8 @@ +{ + "bundles": { + "Scheb\\TwoFactorBundle\\SchebTwoFactorBundle": ["all"] + }, + "copy-from-recipe": { + "config/": "%CONFIG_DIR%/" + } +} diff --git a/sebtm/inwx-api-bundle/1.0/config/packages/inwx_api.yaml b/sebtm/inwx-api-bundle/1.0/config/packages/inwx_api.yaml new file mode 100644 index 00000000..2f411849 --- /dev/null +++ b/sebtm/inwx-api-bundle/1.0/config/packages/inwx_api.yaml @@ -0,0 +1,8 @@ +# Read the documentation: https://github.com/SebTM/inwx-api-bundle +inwx_api: + debug: '%kernel.debug%' + environment: development + json: true + language: en + username: '%env(resolve:INWX_USERNAME)%' + password: '%env(resolve:INWX_PASSWORD)%' diff --git a/sebtm/inwx-api-bundle/1.0/manifest.json b/sebtm/inwx-api-bundle/1.0/manifest.json new file mode 100644 index 00000000..e81d9ecc --- /dev/null +++ b/sebtm/inwx-api-bundle/1.0/manifest.json @@ -0,0 +1,12 @@ +{ + "bundles": { + "SebTM\\INWX\\InwxApiBundle": ["all"] + }, + "copy-from-recipe": { + "config/": "%CONFIG_DIR%/" + }, + "env": { + "INWX_USERNAME": "", + "INWX_PASSWORD": "" + } +} diff --git a/sensiolabs-de/deptrac-shim/0.7/depfile.yaml b/sensiolabs-de/deptrac-shim/0.7/depfile.yaml new file mode 100644 index 00000000..3e1887c8 --- /dev/null +++ b/sensiolabs-de/deptrac-shim/0.7/depfile.yaml @@ -0,0 +1,29 @@ +paths: + - ./src +exclude_files: + - .*test.* +layers: + - + name: Controller + collectors: + - + type: className + regex: .*Controller.* + - + name: Repository + collectors: + - + type: className + regex: .*Repository.* + - + name: Service + collectors: + - + type: className + regex: .*Service.* +ruleset: + Controller: + - Service + Service: + - Repository + Repository: diff --git a/sensiolabs-de/deptrac-shim/0.7/manifest.json b/sensiolabs-de/deptrac-shim/0.7/manifest.json new file mode 100644 index 00000000..5af06dcc --- /dev/null +++ b/sensiolabs-de/deptrac-shim/0.7/manifest.json @@ -0,0 +1,8 @@ +{ + "copy-from-recipe": { + "depfile.yaml": "depfile.yaml" + }, + "gitignore": [ + "/.deptrac.cache" + ] +} diff --git a/snc/redis-bundle/2.0/config/packages/snc_redis.yaml b/snc/redis-bundle/2.0/config/packages/snc_redis.yaml index c56e1dc4..fd0941fe 100644 --- a/snc/redis-bundle/2.0/config/packages/snc_redis.yaml +++ b/snc/redis-bundle/2.0/config/packages/snc_redis.yaml @@ -7,6 +7,6 @@ snc_redis: # how to configure the bundle. # # default: -# type: predis +# type: phpredis # alias: default # dsn: "%env(REDIS_URL)%" diff --git a/soljian/steam-authentication-bundle/1.0/config/packages/soljian_steam_authentication.yaml b/soljian/steam-authentication-bundle/1.0/config/packages/soljian_steam_authentication.yaml new file mode 100644 index 00000000..fe739547 --- /dev/null +++ b/soljian/steam-authentication-bundle/1.0/config/packages/soljian_steam_authentication.yaml @@ -0,0 +1,5 @@ +soljian_steam_authentication: + api_key: "%env(STEAM_API_KEY)%" + login_route: '' + login_redirect: '' + user_class: '' diff --git a/soljian/steam-authentication-bundle/1.0/manifest.json b/soljian/steam-authentication-bundle/1.0/manifest.json new file mode 100644 index 00000000..9d6e2b47 --- /dev/null +++ b/soljian/steam-authentication-bundle/1.0/manifest.json @@ -0,0 +1,11 @@ +{ + "bundles": { + "Soljian\\SteamAuthenticationBundle\\SoljianSteamAuthenticationBundle": ["all"] + }, + "copy-from-recipe": { + "config/": "%CONFIG_DIR%/" + }, + "env": { + "STEAM_API_KEY": "" + } +} diff --git a/sonata-project/admin-bundle/3.64/config/packages/sonata_admin.yaml b/sonata-project/admin-bundle/3.64/config/packages/sonata_admin.yaml new file mode 100644 index 00000000..7e3ca920 --- /dev/null +++ b/sonata-project/admin-bundle/3.64/config/packages/sonata_admin.yaml @@ -0,0 +1,12 @@ +sonata_admin: + title: 'Sonata Admin' + dashboard: + blocks: + - { type: sonata.admin.block.admin_list, position: left } + options: + legacy_twig_text_extension: false + +sonata_block: + blocks: + sonata.admin.block.admin_list: + contexts: [admin] diff --git a/sonata-project/admin-bundle/3.64/config/routes/sonata_admin.yaml b/sonata-project/admin-bundle/3.64/config/routes/sonata_admin.yaml new file mode 120000 index 00000000..d5150054 --- /dev/null +++ b/sonata-project/admin-bundle/3.64/config/routes/sonata_admin.yaml @@ -0,0 +1 @@ +../../../3.31/config/routes/sonata_admin.yaml \ No newline at end of file diff --git a/sonata-project/admin-bundle/3.64/manifest.json b/sonata-project/admin-bundle/3.64/manifest.json new file mode 120000 index 00000000..7f010afe --- /dev/null +++ b/sonata-project/admin-bundle/3.64/manifest.json @@ -0,0 +1 @@ +../3.31/manifest.json \ No newline at end of file diff --git a/sonata-project/admin-bundle/3.64/src/Admin/.gitignore b/sonata-project/admin-bundle/3.64/src/Admin/.gitignore new file mode 120000 index 00000000..b77f50b3 --- /dev/null +++ b/sonata-project/admin-bundle/3.64/src/Admin/.gitignore @@ -0,0 +1 @@ +../../../3.31/src/Admin/.gitignore \ No newline at end of file diff --git a/sonata-project/form-extensions/1.0/config/packages/sonata_form.yaml b/sonata-project/form-extensions/1.0/config/packages/sonata_form.yaml new file mode 100644 index 00000000..d540e7f4 --- /dev/null +++ b/sonata-project/form-extensions/1.0/config/packages/sonata_form.yaml @@ -0,0 +1,2 @@ +sonata_form: + form_type: standard diff --git a/sonata-project/form-extensions/1.0/manifest.json b/sonata-project/form-extensions/1.0/manifest.json new file mode 100644 index 00000000..def2dca5 --- /dev/null +++ b/sonata-project/form-extensions/1.0/manifest.json @@ -0,0 +1,8 @@ +{ + "bundles": { + "Sonata\\Form\\Bridge\\Symfony\\Bundle\\SonataFormBundle": ["all"] + }, + "copy-from-recipe": { + "config/": "%CONFIG_DIR%/" + } +} diff --git a/sonata-project/form-extensions/1.4/config/packages/sonata_form.yaml b/sonata-project/form-extensions/1.4/config/packages/sonata_form.yaml new file mode 120000 index 00000000..9e999feb --- /dev/null +++ b/sonata-project/form-extensions/1.4/config/packages/sonata_form.yaml @@ -0,0 +1 @@ +../../../1.0/config/packages/sonata_form.yaml \ No newline at end of file diff --git a/sonata-project/form-extensions/1.4/manifest.json b/sonata-project/form-extensions/1.4/manifest.json new file mode 100644 index 00000000..35cb98a7 --- /dev/null +++ b/sonata-project/form-extensions/1.4/manifest.json @@ -0,0 +1,8 @@ +{ + "bundles": { + "Sonata\\Form\\Bridge\\Symfony\\SonataFormBundle": ["all"] + }, + "copy-from-recipe": { + "config/": "%CONFIG_DIR%/" + } +} diff --git a/sulu/article-bundle/2.0/config/packages/sulu_article.yaml b/sulu/article-bundle/2.0/config/packages/sulu_article.yaml new file mode 100644 index 00000000..c9b17ed0 --- /dev/null +++ b/sulu/article-bundle/2.0/config/packages/sulu_article.yaml @@ -0,0 +1,28 @@ +sulu_article: + index_name: '%env(resolve:ELASTICSEARCH_INDEX)%' + hosts: + - '%env(resolve:ELASTICSEARCH_HOST)%' + types: + article: + translation_key: "sulu_article.article" + +sulu_route: + mappings: + Sulu\Bundle\ArticleBundle\Document\ArticleDocument: + generator: schema + options: + route_schema: '/articles/{object.getTitle()}' + Sulu\Bundle\ArticleBundle\Document\ArticlePageDocument: + generator: article_page + options: + route_schema: '{translator.trans("page")}-{object.getPageNumber()}' + parent: '{object.getParent().getRoutePath()}' + +ongr_elasticsearch: + analysis: + tokenizer: + pathTokenizer: + type: path_hierarchy + analyzer: + pathAnalyzer: + tokenizer: pathTokenizer diff --git a/sulu/article-bundle/2.0/config/routes/sulu_article_admin.yaml b/sulu/article-bundle/2.0/config/routes/sulu_article_admin.yaml new file mode 100644 index 00000000..2fb93645 --- /dev/null +++ b/sulu/article-bundle/2.0/config/routes/sulu_article_admin.yaml @@ -0,0 +1,4 @@ +sulu_article_api: + resource: '@SuluArticleBundle/Resources/config/routing_api.yml' + type: rest + prefix: /admin/api diff --git a/sulu/article-bundle/2.0/manifest.json b/sulu/article-bundle/2.0/manifest.json new file mode 100644 index 00000000..a340517d --- /dev/null +++ b/sulu/article-bundle/2.0/manifest.json @@ -0,0 +1,16 @@ +{ + "bundles": { + "Sulu\\Bundle\\ArticleBundle\\SuluArticleBundle": ["all"] + }, + "copy-from-recipe": { + "config/": "%CONFIG_DIR%/" + }, + "copy-from-package": { + "Resources/doc/default.xml": "%CONFIG_DIR%/templates/articles/default.xml", + "Resources/doc/default.html.twig": "templates/articles/default.html.twig" + }, + "env": { + "ELASTICSEARCH_HOST": "127.0.0.1:9200", + "ELASTICSEARCH_INDEX": "su_articles" + } +} diff --git a/sulu/article-bundle/2.0/post-install.txt b/sulu/article-bundle/2.0/post-install.txt new file mode 100644 index 00000000..bfe4e617 --- /dev/null +++ b/sulu/article-bundle/2.0/post-install.txt @@ -0,0 +1,11 @@ + + What's next? + + + * The SuluArticleBundle is almost ready: + 1. Configure elasticsearch host and index in the .env file. + 2. Initialize PHPCR by running php bin/console sulu:document:init. + 3. Create the elasticsearch indices by running php bin/console ongr:es:index:create and php bin/console ongr:es:index:create --manager live. + 4. Make sure your user has all the necessary permissions for the SuluArticleBundle. + + * Read the documentation at https://github.com/sulu/SuluArticleBundle/blob/master/Resources/doc/README.md diff --git a/sulu/form-bundle/2.0/config/packages/sulu_form.yaml b/sulu/form-bundle/2.0/config/packages/sulu_form.yaml new file mode 100644 index 00000000..345b99de --- /dev/null +++ b/sulu/form-bundle/2.0/config/packages/sulu_form.yaml @@ -0,0 +1,9 @@ +sulu_form: + mail: + from: "%env(SULU_ADMIN_EMAIL)%" + to: "%env(SULU_ADMIN_EMAIL)%" + sender: "%env(SULU_ADMIN_EMAIL)%" + +framework: + esi: true + fragments: true diff --git a/sulu/form-bundle/2.0/config/routes/sulu_form_admin.yaml b/sulu/form-bundle/2.0/config/routes/sulu_form_admin.yaml new file mode 100644 index 00000000..bac30391 --- /dev/null +++ b/sulu/form-bundle/2.0/config/routes/sulu_form_admin.yaml @@ -0,0 +1,4 @@ +sulu_form_api: + resource: "@SuluFormBundle/Resources/config/routing_api.yml" + type: rest + prefix: /admin/api diff --git a/sulu/form-bundle/2.0/manifest.json b/sulu/form-bundle/2.0/manifest.json new file mode 100644 index 00000000..ad6597fe --- /dev/null +++ b/sulu/form-bundle/2.0/manifest.json @@ -0,0 +1,8 @@ +{ + "bundles": { + "Sulu\\Bundle\\FormBundle\\SuluFormBundle": ["all"] + }, + "copy-from-recipe": { + "config/": "%CONFIG_DIR%/" + } +} diff --git a/sulu/form-bundle/2.0/post-install.txt b/sulu/form-bundle/2.0/post-install.txt new file mode 100644 index 00000000..1209702a --- /dev/null +++ b/sulu/form-bundle/2.0/post-install.txt @@ -0,0 +1,10 @@ + + What's next? + + + * The SuluFormBundle is almost ready: + 1. Print the sql statements required to update your database schema by running php bin/console doctrine:schema:update --dump-sql. + 2. If the statements look fine to you, run the same command using --force to execute them. + 3. Make sure your user has all the necessary permissions for the SuluFormBundle. + + * Read the documentation at https://github.com/sulu/SuluFormBundle/blob/master/Resources/doc/index.md diff --git a/sulu/headless-bundle/0.1/config/routes/sulu_headless_website.yaml b/sulu/headless-bundle/0.1/config/routes/sulu_headless_website.yaml new file mode 100644 index 00000000..cef3d711 --- /dev/null +++ b/sulu/headless-bundle/0.1/config/routes/sulu_headless_website.yaml @@ -0,0 +1,3 @@ +sulu_headless: + type: portal + resource: "@SuluHeadlessBundle/Resources/config/routing_website.yml" diff --git a/sulu/headless-bundle/0.1/manifest.json b/sulu/headless-bundle/0.1/manifest.json new file mode 100644 index 00000000..34ee1106 --- /dev/null +++ b/sulu/headless-bundle/0.1/manifest.json @@ -0,0 +1,8 @@ +{ + "bundles": { + "Sulu\\Bundle\\HeadlessBundle\\SuluHeadlessBundle": ["all"] + }, + "copy-from-recipe": { + "config/": "%CONFIG_DIR%/" + } +} diff --git a/sulu/headless-bundle/0.1/post-install.txt b/sulu/headless-bundle/0.1/post-install.txt new file mode 100644 index 00000000..5f00756d --- /dev/null +++ b/sulu/headless-bundle/0.1/post-install.txt @@ -0,0 +1,7 @@ + + What's next? + + + * The SuluHeadlessBundle is almost ready: + Change the controller of your templates to Sulu\Bundle\HeadlessBundle\Controller\HeadlessWebsiteController::indexAction. + Read the documentation at https://github.com/sulu/SuluHeadlessBundle/blob/master/README.md to learn how. diff --git a/swag-industries/melodiia/0.7/config/packages/melodiia.yaml b/swag-industries/melodiia/0.7/config/packages/melodiia.yaml new file mode 100644 index 00000000..7d8774da --- /dev/null +++ b/swag-industries/melodiia/0.7/config/packages/melodiia.yaml @@ -0,0 +1,6 @@ +melodiia: + apis: + # Define as much APIs you want here + main: + # This path impacts the behavior of Melodiia. Change it if required + base_path: /api/v1 diff --git a/swag-industries/melodiia/0.7/manifest.json b/swag-industries/melodiia/0.7/manifest.json new file mode 100644 index 00000000..51b9f6ba --- /dev/null +++ b/swag-industries/melodiia/0.7/manifest.json @@ -0,0 +1,8 @@ +{ + "bundles": { + "SwagIndustries\\Melodiia\\MelodiiaBundle": ["all"] + }, + "copy-from-recipe": { + "config/": "%CONFIG_DIR%/" + } +} diff --git a/symfony-bundles/kafka-bundle/1.0/config/packages/sb_kafka.yaml b/symfony-bundles/kafka-bundle/1.0/config/packages/sb_kafka.yaml index 3f80d77d..164b6fcc 100644 --- a/symfony-bundles/kafka-bundle/1.0/config/packages/sb_kafka.yaml +++ b/symfony-bundles/kafka-bundle/1.0/config/packages/sb_kafka.yaml @@ -11,7 +11,3 @@ sb_kafka: group.id: 'main_group' log.connection.close: 'false' metadata.broker.list: '%env(resolve:KAFKA_BROKERS)%' - - topics: - configuration: - auto.offset.reset: smallest diff --git a/symfony/apache-pack/1.0/public/.htaccess b/symfony/apache-pack/1.0/public/.htaccess index bcce7fcc..2776637c 100644 --- a/symfony/apache-pack/1.0/public/.htaccess +++ b/symfony/apache-pack/1.0/public/.htaccess @@ -9,7 +9,7 @@ DirectoryIndex index.php # feature in your server configuration. Uncomment the following line if you # install assets as symlinks or if you experience problems related to symlinks # when compiling LESS/Sass/CoffeScript assets. -# Options FollowSymlinks +# Options +FollowSymlinks # Disabling MultiViews prevents unwanted negotiation, e.g. "/index" should not resolve # to the front controller "/index.php" but be rewritten to "/index.php/index". @@ -27,12 +27,12 @@ DirectoryIndex index.php # work in environments without path prefix as well, providing a safe, one-size # fits all solution. But as you do not need it in this case, you can comment # the following 2 lines to eliminate the overhead. - RewriteCond %{REQUEST_URI}::$1 ^(/.+)/(.*)::\2$ - RewriteRule ^(.*) - [E=BASE:%1] + RewriteCond %{REQUEST_URI}::$0 ^(/.+)/(.*)::\2$ + RewriteRule .* - [E=BASE:%1] # Sets the HTTP_AUTHORIZATION header removed by Apache - RewriteCond %{HTTP:Authorization} . - RewriteRule ^ - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization}] + RewriteCond %{HTTP:Authorization} .+ + RewriteRule ^ - [E=HTTP_AUTHORIZATION:%0] # Redirect to URI without front controller to prevent duplicate content # (with and without `/index.php`). Only do this redirect on the initial @@ -45,15 +45,13 @@ DirectoryIndex index.php # - disable this feature by commenting the following 2 lines or # - use Apache >= 2.3.9 and replace all L flags by END flags and remove the # following RewriteCond (best solution) - RewriteCond %{ENV:REDIRECT_STATUS} ^$ + RewriteCond %{ENV:REDIRECT_STATUS} ="" RewriteRule ^index\.php(?:/(.*)|$) %{ENV:BASE}/$1 [R=301,L] # If the requested filename exists, simply serve it. # We only want to let Apache serve files and not directories. - RewriteCond %{REQUEST_FILENAME} -f - RewriteRule ^ - [L] - # Rewrite all other queries to the front controller. + RewriteCond %{REQUEST_FILENAME} !-f RewriteRule ^ %{ENV:BASE}/index.php [L] diff --git a/symfonycorp/connect/7.0/config/packages/symfony_connect.yaml b/symfonycorp/connect/7.0/config/packages/symfony_connect.yaml new file mode 100644 index 00000000..5b4b880c --- /dev/null +++ b/symfonycorp/connect/7.0/config/packages/symfony_connect.yaml @@ -0,0 +1,6 @@ +symfony_connect: + app_id: '%env(SYMFONY_CONNECT_APP_ID)%' + app_secret: '%env(SYMFONY_CONNECT_APP_SECRET)%' + scope: 'SCOPE_PUBLIC' + # start_template: null + # failure_template: null diff --git a/symfonycorp/connect/7.0/config/routes/symfony_connect.yaml b/symfonycorp/connect/7.0/config/routes/symfony_connect.yaml new file mode 100644 index 00000000..4a595b70 --- /dev/null +++ b/symfonycorp/connect/7.0/config/routes/symfony_connect.yaml @@ -0,0 +1,3 @@ +symfony_connect: + prefix: /connect + resource: '@SymfonyConnectBundle/Resources/config/routing/connect.xml' diff --git a/symfonycorp/connect/7.0/manifest.json b/symfonycorp/connect/7.0/manifest.json new file mode 100644 index 00000000..dd7cd3d7 --- /dev/null +++ b/symfonycorp/connect/7.0/manifest.json @@ -0,0 +1,12 @@ +{ + "bundles": { + "SymfonyCorp\\Connect\\SymfonyConnectBundle": ["all"] + }, + "copy-from-recipe": { + "config/": "%CONFIG_DIR%" + }, + "env": { + "SYMFONY_CONNECT_APP_ID": "", + "SYMFONY_CONNECT_APP_SECRET": "" + } +} diff --git a/synolia/sylius-mail-tester-plugin/1.0/config/routes/sylius_mail_tester.yaml b/synolia/sylius-mail-tester-plugin/1.0/config/routes/sylius_mail_tester.yaml new file mode 100644 index 00000000..afd86427 --- /dev/null +++ b/synolia/sylius-mail-tester-plugin/1.0/config/routes/sylius_mail_tester.yaml @@ -0,0 +1,3 @@ +synolia_mail_tester: + resource: "@SynoliaSyliusMailTesterPlugin/Resources/config/admin_routing.yaml" + prefix: /admin diff --git a/synolia/sylius-mail-tester-plugin/1.0/manifest.json b/synolia/sylius-mail-tester-plugin/1.0/manifest.json new file mode 100644 index 00000000..fffc4f8b --- /dev/null +++ b/synolia/sylius-mail-tester-plugin/1.0/manifest.json @@ -0,0 +1,8 @@ +{ + "bundles": { + "Synolia\\SyliusMailTesterPlugin\\SynoliaSyliusMailTesterPlugin": ["all"] + }, + "copy-from-recipe": { + "config/": "%CONFIG_DIR%/" + } +} diff --git a/synolia/sylius-scheduler-command-plugin/1.0/config/packages/sylius_scheduler_command.yaml b/synolia/sylius-scheduler-command-plugin/1.0/config/packages/sylius_scheduler_command.yaml new file mode 100644 index 00000000..a0afbda5 --- /dev/null +++ b/synolia/sylius-scheduler-command-plugin/1.0/config/packages/sylius_scheduler_command.yaml @@ -0,0 +1,2 @@ +imports: + - { resource: "@SynoliaSyliusSchedulerCommandPlugin/Resources/config/config.yaml" } diff --git a/synolia/sylius-scheduler-command-plugin/1.0/config/routes/sylius_scheduler_command.yaml b/synolia/sylius-scheduler-command-plugin/1.0/config/routes/sylius_scheduler_command.yaml new file mode 100644 index 00000000..46d96d67 --- /dev/null +++ b/synolia/sylius-scheduler-command-plugin/1.0/config/routes/sylius_scheduler_command.yaml @@ -0,0 +1,3 @@ +synolia_scheduled_command: + resource: "@SynoliaSyliusSchedulerCommandPlugin/Resources/config/admin_routing.yaml" + prefix: /admin diff --git a/synolia/sylius-scheduler-command-plugin/1.0/manifest.json b/synolia/sylius-scheduler-command-plugin/1.0/manifest.json new file mode 100644 index 00000000..257ed802 --- /dev/null +++ b/synolia/sylius-scheduler-command-plugin/1.0/manifest.json @@ -0,0 +1,11 @@ +{ + "bundles": { + "Synolia\\SyliusSchedulerCommandPlugin\\SynoliaSyliusSchedulerCommandPlugin": ["all"] + }, + "copy-from-recipe": { + "config/": "%CONFIG_DIR%/" + }, + "copy-from-package": { + "src/Migrations/": "%SRC_DIR%/Migrations/" + } +} diff --git a/synolia/sylius-scheduler-command-plugin/1.0/post-install.txt b/synolia/sylius-scheduler-command-plugin/1.0/post-install.txt new file mode 100644 index 00000000..1e19ad7d --- /dev/null +++ b/synolia/sylius-scheduler-command-plugin/1.0/post-install.txt @@ -0,0 +1,6 @@ + + Synolia SyliusSchedulerCommandPlugin + + + * Run doctrine:migrations:migrate to upgrade database + * Add Cron on synolia:scheduler-run to execute scheduled commands diff --git a/tbbc/money-bundle/4.0/config/packages/tbbc_money.yaml b/tbbc/money-bundle/4.0/config/packages/tbbc_money.yaml new file mode 100644 index 00000000..a3d2cf19 --- /dev/null +++ b/tbbc/money-bundle/4.0/config/packages/tbbc_money.yaml @@ -0,0 +1,4 @@ +tbbc_money: + currencies: ["USD", "EUR"] + reference_currency: "EUR" + decimals: 2 diff --git a/tbbc/money-bundle/4.0/manifest.json b/tbbc/money-bundle/4.0/manifest.json new file mode 100644 index 00000000..147d5d4b --- /dev/null +++ b/tbbc/money-bundle/4.0/manifest.json @@ -0,0 +1,8 @@ +{ + "bundles": { + "Tbbc\\MoneyBundle\\TbbcMoneyBundle": ["all"] + }, + "copy-from-recipe": { + "config/": "%CONFIG_DIR%/" + } +} diff --git a/tbmatuka/editorjs-bundle/0.1/config/packages/editorjs.yaml b/tbmatuka/editorjs-bundle/0.1/config/packages/editorjs.yaml new file mode 100644 index 00000000..89d4c6a9 --- /dev/null +++ b/tbmatuka/editorjs-bundle/0.1/config/packages/editorjs.yaml @@ -0,0 +1,3 @@ +twig: + form_themes: + - '@TbmatukaEditorjs/Form/editorjs_widget.html.twig' diff --git a/tbmatuka/editorjs-bundle/0.1/manifest.json b/tbmatuka/editorjs-bundle/0.1/manifest.json new file mode 100644 index 00000000..e0408f15 --- /dev/null +++ b/tbmatuka/editorjs-bundle/0.1/manifest.json @@ -0,0 +1,8 @@ +{ + "bundles": { + "Tbmatuka\\EditorjsBundle\\TbmatukaEditorjsBundle": ["all"] + }, + "copy-from-recipe": { + "config/": "%CONFIG_DIR%/" + } +} diff --git a/tg-bot-api/bot-api-base/1.0/config/packages/tg_bot_api.yaml b/tg-bot-api/bot-api-base/1.0/config/packages/tg_bot_api.yaml new file mode 100644 index 00000000..96ea839b --- /dev/null +++ b/tg-bot-api/bot-api-base/1.0/config/packages/tg_bot_api.yaml @@ -0,0 +1,23 @@ +services: + + TgBotApi\BotApiBase\ApiClient: + arguments: + $requestFactory: '@Psr\Http\Message\RequestFactoryInterface' + $streamFactory: '@Psr\Http\Message\StreamFactoryInterface' + $client: '@Psr\Http\Client\ClientInterface' + + TgBotApi\BotApiBase\BotApiNormalizer: null + + TgBotApi\BotApiBase\ApiClientInterface: '@TgBotApi\BotApiBase\ApiClient' + TgBotApi\BotApiBase\NormalizerInterface: '@TgBotApi\BotApiBase\BotApiNormalizer' + + TgBotApi\BotApiBase\BotApi: + arguments: + $botKey: '%env(resolve:TG_BOT_API_KEY)%' + $apiClient: '@TgBotApi\BotApiBase\ApiClientInterface' + $normalizer: '@TgBotApi\BotApiBase\NormalizerInterface' + + TgBotApi\BotApiBase\BotApiComplete: + parent: TgBotApi\BotApiBase\BotApi + + TgBotApi\BotApiBase\BotApiInterface: '@TgBotApi\BotApiBase\BotApi' diff --git a/tg-bot-api/bot-api-base/1.0/manifest.json b/tg-bot-api/bot-api-base/1.0/manifest.json new file mode 100644 index 00000000..db543b24 --- /dev/null +++ b/tg-bot-api/bot-api-base/1.0/manifest.json @@ -0,0 +1,8 @@ +{ + "copy-from-recipe": { + "config/": "%CONFIG_DIR%/" + }, + "env": { + "TG_BOT_API_KEY": "" + } +} diff --git a/thecodingmachine/graphqlite-bundle/4.0/manifest.json b/thecodingmachine/graphqlite-bundle/4.0/manifest.json new file mode 100644 index 00000000..28b18d53 --- /dev/null +++ b/thecodingmachine/graphqlite-bundle/4.0/manifest.json @@ -0,0 +1,8 @@ +{ + "bundles": { + "TheCodingMachine\\Graphqlite\\Bundle\\GraphqliteBundle": ["all"] + }, + "copy-from-package": { + "config-template/": "%CONFIG_DIR%/" + } +} diff --git a/thecodingmachine/graphqlite-bundle/4.0/post-install.txt b/thecodingmachine/graphqlite-bundle/4.0/post-install.txt new file mode 100644 index 00000000..3bae48d0 --- /dev/null +++ b/thecodingmachine/graphqlite-bundle/4.0/post-install.txt @@ -0,0 +1,7 @@ + + GraphQLite Configuration + + + * Edit the config/packages/graphqlite.yml file to adapt the controllers and the types namespaces to your project. + +Documentation: https://graphqlite.thecodingmachine.io/docs/symfony-bundle diff --git a/tienvx/mbt-api-bundle/1.12/config/packages/tienvx_mbt_api.yaml b/tienvx/mbt-api-bundle/1.12/config/packages/tienvx_mbt_api.yaml new file mode 100644 index 00000000..9988a290 --- /dev/null +++ b/tienvx/mbt-api-bundle/1.12/config/packages/tienvx_mbt_api.yaml @@ -0,0 +1,3 @@ +tienvx_mbt_api: + dot_binary: '%env(DOT_BINARY)%' + console_binary: '%env(CONSOLE_BINARY)%' diff --git a/tienvx/mbt-api-bundle/1.12/config/routes/tienvx_mbt_api.yaml b/tienvx/mbt-api-bundle/1.12/config/routes/tienvx_mbt_api.yaml new file mode 100644 index 00000000..d1ee11b4 --- /dev/null +++ b/tienvx/mbt-api-bundle/1.12/config/routes/tienvx_mbt_api.yaml @@ -0,0 +1,3 @@ +tienvx_mbt_api: + resource: '@TienvxMbtApiBundle/Resources/config/routing.xml' + prefix: '/mbt-api' diff --git a/tienvx/mbt-api-bundle/1.12/manifest.json b/tienvx/mbt-api-bundle/1.12/manifest.json new file mode 100644 index 00000000..cead8998 --- /dev/null +++ b/tienvx/mbt-api-bundle/1.12/manifest.json @@ -0,0 +1,12 @@ +{ + "bundles": { + "Tienvx\\Bundle\\MbtApiBundle\\TienvxMbtApiBundle": ["all"] + }, + "copy-from-recipe": { + "config/": "%CONFIG_DIR%/" + }, + "env": { + "DOT_BINARY": "dot", + "CONSOLE_BINARY": "bin/console" + } +} diff --git a/tienvx/mbt-api-bundle/1.15/config/packages/tienvx_mbt_api.yaml b/tienvx/mbt-api-bundle/1.15/config/packages/tienvx_mbt_api.yaml new file mode 100644 index 00000000..666a6153 --- /dev/null +++ b/tienvx/mbt-api-bundle/1.15/config/packages/tienvx_mbt_api.yaml @@ -0,0 +1,2 @@ +tienvx_mbt_api: + dot_binary: '%env(DOT_BINARY)%' diff --git a/tienvx/mbt-api-bundle/1.15/config/routes/tienvx_mbt_api.yaml b/tienvx/mbt-api-bundle/1.15/config/routes/tienvx_mbt_api.yaml new file mode 100644 index 00000000..d1ee11b4 --- /dev/null +++ b/tienvx/mbt-api-bundle/1.15/config/routes/tienvx_mbt_api.yaml @@ -0,0 +1,3 @@ +tienvx_mbt_api: + resource: '@TienvxMbtApiBundle/Resources/config/routing.xml' + prefix: '/mbt-api' diff --git a/tienvx/mbt-api-bundle/1.15/manifest.json b/tienvx/mbt-api-bundle/1.15/manifest.json new file mode 100644 index 00000000..c4979605 --- /dev/null +++ b/tienvx/mbt-api-bundle/1.15/manifest.json @@ -0,0 +1,11 @@ +{ + "bundles": { + "Tienvx\\Bundle\\MbtApiBundle\\TienvxMbtApiBundle": ["all"] + }, + "copy-from-recipe": { + "config/": "%CONFIG_DIR%/" + }, + "env": { + "DOT_BINARY": "dot" + } +} diff --git a/tienvx/mbt-bundle/1.15/config/packages/dev/models/.gitignore b/tienvx/mbt-bundle/1.15/config/packages/dev/models/.gitignore new file mode 100644 index 00000000..8b137891 --- /dev/null +++ b/tienvx/mbt-bundle/1.15/config/packages/dev/models/.gitignore @@ -0,0 +1 @@ + diff --git a/tienvx/mbt-bundle/1.15/config/packages/dev/predefined-cases/.gitignore b/tienvx/mbt-bundle/1.15/config/packages/dev/predefined-cases/.gitignore new file mode 100644 index 00000000..8b137891 --- /dev/null +++ b/tienvx/mbt-bundle/1.15/config/packages/dev/predefined-cases/.gitignore @@ -0,0 +1 @@ + diff --git a/tienvx/mbt-bundle/1.15/config/packages/tienvx_mbt.yaml b/tienvx/mbt-bundle/1.15/config/packages/tienvx_mbt.yaml new file mode 100644 index 00000000..d85a7ea2 --- /dev/null +++ b/tienvx/mbt-bundle/1.15/config/packages/tienvx_mbt.yaml @@ -0,0 +1,14 @@ +imports: + - { resource: dev/models/*.yaml } + - { resource: dev/predefined-cases/*.yaml } + +tienvx_mbt: + email_from: '%env(EMAIL_FROM)%' + admin_url: '%env(ADMIN_URL)%' + +flysystem: + storages: + mbt.storage: + adapter: 'local' + options: + directory: "%kernel.project_dir%/var/storage/screenshots" diff --git a/tienvx/mbt-bundle/1.15/manifest.json b/tienvx/mbt-bundle/1.15/manifest.json new file mode 100644 index 00000000..664fdd5e --- /dev/null +++ b/tienvx/mbt-bundle/1.15/manifest.json @@ -0,0 +1,13 @@ +{ + "bundles": { + "Tienvx\\Bundle\\MbtBundle\\TienvxMbtBundle": ["all"] + }, + "copy-from-recipe": { + "config/": "%CONFIG_DIR%/", + "var/storage/screenshots/": "%VAR_DIR%/storage/screenshots/" + }, + "env": { + "EMAIL_FROM": "from@example.com", + "ADMIN_URL": "http://localhost" + } +} diff --git a/tienvx/mbt-bundle/1.15/var/storage/screenshots/.gitignore b/tienvx/mbt-bundle/1.15/var/storage/screenshots/.gitignore new file mode 100644 index 00000000..e69de29b diff --git a/tienvx/mbt-bundle/1.17/config/packages/tienvx_mbt.yaml b/tienvx/mbt-bundle/1.17/config/packages/tienvx_mbt.yaml new file mode 100644 index 00000000..403fc04a --- /dev/null +++ b/tienvx/mbt-bundle/1.17/config/packages/tienvx_mbt.yaml @@ -0,0 +1,3 @@ +tienvx_mbt: + email_from: '%env(EMAIL_FROM)%' + admin_url: '%env(ADMIN_URL)%' diff --git a/tienvx/mbt-bundle/1.17/manifest.json b/tienvx/mbt-bundle/1.17/manifest.json new file mode 100644 index 00000000..6f4085b2 --- /dev/null +++ b/tienvx/mbt-bundle/1.17/manifest.json @@ -0,0 +1,12 @@ +{ + "bundles": { + "Tienvx\\Bundle\\MbtBundle\\TienvxMbtBundle": ["all"] + }, + "copy-from-recipe": { + "config/": "%CONFIG_DIR%/" + }, + "env": { + "EMAIL_FROM": "from@example.com", + "ADMIN_URL": "http://localhost" + } +} diff --git a/tilleuls/migration-bundle/1.1/config/packages/coop_tilleuls_migration.yaml b/tilleuls/migration-bundle/1.1/config/packages/coop_tilleuls_migration.yaml new file mode 100644 index 00000000..42a4e3dc --- /dev/null +++ b/tilleuls/migration-bundle/1.1/config/packages/coop_tilleuls_migration.yaml @@ -0,0 +1,10 @@ +# Read the documentation: https://github.com/coopTilleuls/CoopTilleulsMigrationBundle/blob/master/Resources/doc/getting_started.md +coop_tilleuls_migration: + legacy_connection_name: legacy + +doctrine: + dbal: + connections: + legacy: + wrapper_class: 'CoopTilleuls\MigrationBundle\Doctrine\DBAL\DisabledConnection' + url: "%env(LEGACY_DATABASE_URL)%" diff --git a/tilleuls/migration-bundle/1.1/manifest.json b/tilleuls/migration-bundle/1.1/manifest.json new file mode 100644 index 00000000..067edb80 --- /dev/null +++ b/tilleuls/migration-bundle/1.1/manifest.json @@ -0,0 +1,11 @@ +{ + "bundles": { + "CoopTilleuls\\MigrationBundle\\CoopTilleulsMigrationBundle": ["all"] + }, + "copy-from-recipe": { + "config/": "%CONFIG_DIR%/" + }, + "env": { + "LEGACY_DATABASE_URL": "mysql://legacy_db_user:legacy_db_password@127.0.0.1:3306/legacy_db_name" + } +} diff --git a/tilleuls/sylius-quick-import-plugin/0.1/config/routes/sylius_quick_import.yaml b/tilleuls/sylius-quick-import-plugin/0.1/config/routes/sylius_quick_import.yaml new file mode 100644 index 00000000..58aaeba6 --- /dev/null +++ b/tilleuls/sylius-quick-import-plugin/0.1/config/routes/sylius_quick_import.yaml @@ -0,0 +1,3 @@ +coop_tilleuls_sylius_quick_import_admin: + resource: "@CoopTilleulsSyliusQuickImportPlugin/Resources/config/admin_routing.yml" + prefix: /admin diff --git a/tilleuls/sylius-quick-import-plugin/0.1/manifest.json b/tilleuls/sylius-quick-import-plugin/0.1/manifest.json new file mode 100644 index 00000000..0cfd5a05 --- /dev/null +++ b/tilleuls/sylius-quick-import-plugin/0.1/manifest.json @@ -0,0 +1,8 @@ +{ + "bundles": { + "CoopTilleuls\\SyliusQuickImportPlugin\\CoopTilleulsSyliusQuickImportPlugin": ["all"] + }, + "copy-from-recipe": { + "config/": "%CONFIG_DIR%/" + } +} diff --git a/timiki/rpc-client-bundle/4.0/config/packages/rpc_client.yaml b/timiki/rpc-client-bundle/4.0/config/packages/rpc_client.yaml new file mode 100644 index 00000000..f4f1c677 --- /dev/null +++ b/timiki/rpc-client-bundle/4.0/config/packages/rpc_client.yaml @@ -0,0 +1,9 @@ +# Read the documentation: https://github.com/timiki/rpc-client-bundle + +rpc_client: + + # connection: + # name_1: RPC_SERVER_URL_1 + # name_2: RPC_SERVER_URL_2 + + connection: null diff --git a/timiki/rpc-client-bundle/4.0/manifest.json b/timiki/rpc-client-bundle/4.0/manifest.json new file mode 100644 index 00000000..8e36a4b2 --- /dev/null +++ b/timiki/rpc-client-bundle/4.0/manifest.json @@ -0,0 +1,8 @@ +{ + "bundles": { + "Timiki\\Bundle\\RpcClientBundle\\RpcClientBundle": ["all"] + }, + "copy-from-recipe": { + "config/": "%CONFIG_DIR%/" + } +} diff --git a/timiki/rpc-server-bundle/4.0/config/packages/rpc_server.yaml b/timiki/rpc-server-bundle/4.0/config/packages/rpc_server.yaml new file mode 100644 index 00000000..8c5042d4 --- /dev/null +++ b/timiki/rpc-server-bundle/4.0/config/packages/rpc_server.yaml @@ -0,0 +1,15 @@ +# Read the documentation: https://github.com/timiki/rpc-server-bundle + +rpc_server: + + mapping: '%kernel.root_dir%/Method' + + # id cache service, must be instance of Doctrine\Common\Cache\CacheProvider + # by default use file cache + + cache: null + + # id serializer service, must be instance of Timiki\Bundle\RpcServerBundle\Serializer\SerializerInterface + # by default use 'rpc.server.serializer.base' service + + serializer: 'rpc.server.serializer.base' diff --git a/timiki/rpc-server-bundle/4.0/config/routes/rpc_server.yaml b/timiki/rpc-server-bundle/4.0/config/routes/rpc_server.yaml new file mode 100644 index 00000000..134ab17e --- /dev/null +++ b/timiki/rpc-server-bundle/4.0/config/routes/rpc_server.yaml @@ -0,0 +1,4 @@ +rpc: + path: /rpc + defaults: { _controller: RpcServerBundle:Rpc:handler } + methods: [POST] diff --git a/timiki/rpc-server-bundle/4.0/manifest.json b/timiki/rpc-server-bundle/4.0/manifest.json new file mode 100644 index 00000000..0966a1b2 --- /dev/null +++ b/timiki/rpc-server-bundle/4.0/manifest.json @@ -0,0 +1,9 @@ +{ + "bundles": { + "Timiki\\Bundle\\RpcServerBundle\\RpcServerBundle": ["all"] + }, + "copy-from-recipe": { + "config/": "%CONFIG_DIR%/", + "src/": "%SRC_DIR%/" + } +} diff --git a/timiki/rpc-server-bundle/4.0/src/Method/.gitignore b/timiki/rpc-server-bundle/4.0/src/Method/.gitignore new file mode 100644 index 00000000..e69de29b diff --git a/trikoder/oauth2-bundle/3.0/config b/trikoder/oauth2-bundle/3.0/config new file mode 120000 index 00000000..32dff909 --- /dev/null +++ b/trikoder/oauth2-bundle/3.0/config @@ -0,0 +1 @@ +../2.0/config \ No newline at end of file diff --git a/trikoder/oauth2-bundle/3.0/manifest.json b/trikoder/oauth2-bundle/3.0/manifest.json new file mode 120000 index 00000000..46456de9 --- /dev/null +++ b/trikoder/oauth2-bundle/3.0/manifest.json @@ -0,0 +1 @@ +../2.0/manifest.json \ No newline at end of file diff --git a/trikoder/oauth2-bundle/3.0/post-install.txt b/trikoder/oauth2-bundle/3.0/post-install.txt new file mode 100644 index 00000000..6c8b9a6c --- /dev/null +++ b/trikoder/oauth2-bundle/3.0/post-install.txt @@ -0,0 +1,22 @@ + + OAuth2 Configuration + + + 1. Provide a key pair + i) Generate a private/public key pair (preferably with a password): https://oauth2.thephpleague.com/installation/#generating-public-and-private-keys + ii) Configure the private_key and public_key with the respective key locations + iii) (Optional) Set the private_key_passphrase to the private key password set in the previous step + + 2. Configure the OAuth2 encryption key + i) Add the OAUTH2_ENCRYPTION_KEY env variable in .env.local (don't commit your production secrets): https://oauth2.thephpleague.com/installation/#string-password + ii) Configure the encryption_key with a secure encryption key: https://oauth2.thephpleague.com/installation/#string-password + + 3. Update the database + i) Update the database so bundle entities can be persisted using Doctrine: bin/console doctrine:schema:update --force + + 4. Install a PSR 7/17 implementation + i) Require a PSR 7/17 implementation. We recommend that you use nyholm/psr7. + ii) (Optional) Choose a different implementation package: https://github.com/trikoder/oauth2-bundle/blob/v3.x/docs/psr-implementation-switching.md + + 5. Read the docs + i) Read the documentation at https://github.com/trikoder/oauth2-bundle/blob/v3.x/docs/basic-setup.md diff --git a/verschoof/transip-api-bundle/1.2/config/packages/transip_api.yaml b/verschoof/transip-api-bundle/1.2/config/packages/transip_api.yaml new file mode 100644 index 00000000..1eccd204 --- /dev/null +++ b/verschoof/transip-api-bundle/1.2/config/packages/transip_api.yaml @@ -0,0 +1,4 @@ +transip_api: + login : '%env(VERSCHOOF_TRANSIP_API_LOGIN)%' + private_key : '%env(VERSCHOOF_TRANSIP_API_PRIVATE_KEY)%' + read_only : true diff --git a/verschoof/transip-api-bundle/1.2/manifest.json b/verschoof/transip-api-bundle/1.2/manifest.json new file mode 100644 index 00000000..2f8a1fdf --- /dev/null +++ b/verschoof/transip-api-bundle/1.2/manifest.json @@ -0,0 +1,13 @@ +{ + "bundles": { + "Verschoof\\TransipApiBundle\\TransipApiBundle": ["all"] + }, + "copy-from-recipe": { + "config/": "%CONFIG_DIR%/" + }, + "env": { + "#1": "privatekey is a multiline key from transip, just remove the breaks to create a one-liner", + "VERSCHOOF_TRANSIP_API_LOGIN": "your-api_login", + "VERSCHOOF_TRANSIP_API_PRIVATE_KEY": "your-private_key" + } +} diff --git a/vincentchalamon/nav-bundle/1.0/config/packages/nav.yaml b/vincentchalamon/nav-bundle/1.0/config/packages/nav.yaml new file mode 100644 index 00000000..61184e83 --- /dev/null +++ b/vincentchalamon/nav-bundle/1.0/config/packages/nav.yaml @@ -0,0 +1,8 @@ +# Read the documentation: https://github.com/vincentchalamon/nav-bundle +nav: + enable_profiler: '%kernel.debug%' + url: '%env(NAV_URL)%' # i.e.: https://user:pass@www.example.com/NAV_WS/ + paths: + App: + path: '%kernel.project_dir%/src/Entity' + namespace: 'App/Entity' diff --git a/vincentchalamon/nav-bundle/1.0/manifest.json b/vincentchalamon/nav-bundle/1.0/manifest.json new file mode 100644 index 00000000..2d010b1c --- /dev/null +++ b/vincentchalamon/nav-bundle/1.0/manifest.json @@ -0,0 +1,12 @@ +{ + "bundles": { + "NavBundle\\NavBundle": ["all"] + }, + "copy-from-recipe": { + "config/": "%CONFIG_DIR%/", + "src/": "%SRC_DIR%/" + }, + "env": { + "NAV_URL": "http://user:password@host/WS/Page/" + } +} diff --git a/vincentchalamon/nav-bundle/1.0/src/Entity/.gitignore b/vincentchalamon/nav-bundle/1.0/src/Entity/.gitignore new file mode 100644 index 00000000..e69de29b diff --git a/web-auth/webauthn-symfony-bundle/3.0/config/packages/webauthn.yaml b/web-auth/webauthn-symfony-bundle/3.0/config/packages/webauthn.yaml new file mode 100644 index 00000000..741c5d68 --- /dev/null +++ b/web-auth/webauthn-symfony-bundle/3.0/config/packages/webauthn.yaml @@ -0,0 +1,13 @@ +# Please see the following page for more information: https://webauthn-doc.spomky-labs.com/the-webauthn-server/the-symfony-way#configuration + +webauthn: + credential_repository: 'Webauthn\Bundle\Repository\DummyPublicKeyCredentialSourceRepository' # CREATE YOUR REPOSITORY AND CHANGE THIS! + user_repository: 'Webauthn\Bundle\Repository\DummyPublicKeyCredentialUserEntityRepository' # CREATE YOUR REPOSITORY AND CHANGE THIS! + creation_profiles: + default: + rp: + name: '%env(RELAYING_PARTY_NAME)%' # Please adapt the env file with the correct relaying party ID or set null + id: '%env(RELAYING_PARTY_ID)%' # Please adapt the env file with the correct relaying party ID or set null + request_profiles: + default: + rp_id: '%env(RELAYING_PARTY_ID)%' # Please adapt the env file with the correct relaying party ID or set null diff --git a/web-auth/webauthn-symfony-bundle/3.0/config/routes/webauthn_routes.yaml b/web-auth/webauthn-symfony-bundle/3.0/config/routes/webauthn_routes.yaml new file mode 100644 index 00000000..fa3e8e9a --- /dev/null +++ b/web-auth/webauthn-symfony-bundle/3.0/config/routes/webauthn_routes.yaml @@ -0,0 +1,3 @@ +webauthn_routes: + resource: . + type: webauthn diff --git a/web-auth/webauthn-symfony-bundle/3.0/manifest.json b/web-auth/webauthn-symfony-bundle/3.0/manifest.json new file mode 100644 index 00000000..0c2d2d7d --- /dev/null +++ b/web-auth/webauthn-symfony-bundle/3.0/manifest.json @@ -0,0 +1,12 @@ +{ + "bundles": { + "Webauthn\\Bundle\\WebauthnBundle": ["all"] + }, + "copy-from-recipe": { + "config/": "%CONFIG_DIR%" + }, + "env": { + "RELAYING_PARTY_ID": "example.com", + "RELAYING_PARTY_NAME": "My Application" + } +} diff --git a/willdurand/hateoas-bundle/1.4/config/packages/bazinga_hateoas.yaml b/willdurand/hateoas-bundle/1.4/config/packages/bazinga_hateoas.yaml new file mode 100644 index 00000000..93a743d3 --- /dev/null +++ b/willdurand/hateoas-bundle/1.4/config/packages/bazinga_hateoas.yaml @@ -0,0 +1,4 @@ +# For full configuration see https://github.com/willdurand/BazingaHateoasBundle/blob/master/Resources/doc/index.md#reference-configuration +bazinga_hateoas: + twig_extension: + enabled: true diff --git a/willdurand/hateoas-bundle/1.4/manifest.json b/willdurand/hateoas-bundle/1.4/manifest.json new file mode 100644 index 00000000..68ecd6c1 --- /dev/null +++ b/willdurand/hateoas-bundle/1.4/manifest.json @@ -0,0 +1,8 @@ +{ + "bundles": { + "Bazinga\\Bundle\\HateoasBundle\\BazingaHateoasBundle": ["all"] + }, + "copy-from-recipe": { + "config/": "%CONFIG_DIR%/" + } +} diff --git a/willdurand/hateoas-bundle/2.0/config/packages/bazinga_hateoas.yaml b/willdurand/hateoas-bundle/2.0/config/packages/bazinga_hateoas.yaml new file mode 100644 index 00000000..93a743d3 --- /dev/null +++ b/willdurand/hateoas-bundle/2.0/config/packages/bazinga_hateoas.yaml @@ -0,0 +1,4 @@ +# For full configuration see https://github.com/willdurand/BazingaHateoasBundle/blob/master/Resources/doc/index.md#reference-configuration +bazinga_hateoas: + twig_extension: + enabled: true diff --git a/willdurand/hateoas-bundle/2.0/manifest.json b/willdurand/hateoas-bundle/2.0/manifest.json new file mode 100644 index 00000000..68ecd6c1 --- /dev/null +++ b/willdurand/hateoas-bundle/2.0/manifest.json @@ -0,0 +1,8 @@ +{ + "bundles": { + "Bazinga\\Bundle\\HateoasBundle\\BazingaHateoasBundle": ["all"] + }, + "copy-from-recipe": { + "config/": "%CONFIG_DIR%/" + } +} diff --git a/xiidea/easy-audit/2.0/config/packages/xiidea_easy_audit.yaml b/xiidea/easy-audit/2.0/config/packages/xiidea_easy_audit.yaml new file mode 100644 index 00000000..d8780cf6 --- /dev/null +++ b/xiidea/easy-audit/2.0/config/packages/xiidea_easy_audit.yaml @@ -0,0 +1,5 @@ +# Read the documentation: http://xiidea.github.io/EasyAuditBundle/ +xiidea_easy_audit: + audit_log_class: Xiidea\EasyAuditBundle\Model\BaseAuditLog + default_logger: false + user_property : null # or username diff --git a/xiidea/easy-audit/2.0/manifest.json b/xiidea/easy-audit/2.0/manifest.json new file mode 100644 index 00000000..db79aa57 --- /dev/null +++ b/xiidea/easy-audit/2.0/manifest.json @@ -0,0 +1,8 @@ +{ + "bundles": { + "Xiidea\\EasyAuditBundle\\XiideaEasyAuditBundle": ["all"] + }, + "copy-from-recipe": { + "config/": "%CONFIG_DIR%/" + } +} diff --git a/zendesk/zendesk_api_client_php/2.2/config/packages/zendesk_api_client.yaml b/zendesk/zendesk_api_client_php/2.2/config/packages/zendesk_api_client.yaml new file mode 100644 index 00000000..a60b2beb --- /dev/null +++ b/zendesk/zendesk_api_client_php/2.2/config/packages/zendesk_api_client.yaml @@ -0,0 +1,6 @@ +services: + Zendesk\API\HttpClient: + arguments: + - '%env(ZENDESK_API_SUBDOMAIN)%' + calls: + - ['setAuth', ['basic', { username: '%env(ZENDESK_API_USERNAME)%', token: '%env(ZENDESK_API_TOKEN)%' }]] diff --git a/zendesk/zendesk_api_client_php/2.2/manifest.json b/zendesk/zendesk_api_client_php/2.2/manifest.json new file mode 100644 index 00000000..8aefc221 --- /dev/null +++ b/zendesk/zendesk_api_client_php/2.2/manifest.json @@ -0,0 +1,12 @@ +{ + "copy-from-recipe": { + "config/": "%CONFIG_DIR%/" + }, + "env": { + "#0": "To retrieve an API token for your Zendesk server, you can read this doc:", + "#1": "https://support.zendesk.com/hc/en-us/articles/226022787-Generating-a-new-API-token-", + "ZENDESK_API_SUBDOMAIN": "", + "ZENDESK_API_USERNAME": "", + "ZENDESK_API_TOKEN": "" + } +}