Update Flex endpoint

This commit is contained in:
github-action bot
2021-09-22 13:12:29 +00:00
parent 6baa3d0e33
commit 030c77cfa8
561 changed files with 11464 additions and 11344 deletions
+7 -19
View File
@@ -1,20 +1,6 @@
{
"locks": {
"ad3n/ratchet-bundle": {
"version": "0.4",
"recipe": {
"repo": "0.4",
"branch": "master",
"version": "0.4",
"ref": "a7ed05d9e24b90c4c8bb3c1cde358b9b24c5fbb0"
}
}
},
"manifests": {
"ad3n/ratchet-bundle": {
"repository": "github.com/symfony/recipes-contrib",
"package": "ad3n/ratchet-bundle",
"version": "0.4",
"manifest": {
"bundles": {
"Ihsan\\RatchetBundle\\IhsanRatchetBundle": [
@@ -30,13 +16,15 @@
},
"files": {
"config/packages/ihsan_ratchet_bundle.yaml": {
"contents": "ihsan_ratchet:\n web_socket_port: \"%env(WEB_SOCKET_PORT)%\"\n",
"executable": false,
"encoding": ""
"contents": [
"ihsan_ratchet:",
" web_socket_port: \"%env(WEB_SOCKET_PORT)%\"",
""
],
"executable": false
}
},
"origin": "ad3n/ratchet-bundle:0.4@github.com/symfony/recipes-contrib:master",
"is_contrib": true
"ref": "a7ed05d9e24b90c4c8bb3c1cde358b9b24c5fbb0"
}
}
}
+7 -19
View File
@@ -1,20 +1,6 @@
{
"locks": {
"adback/adback-sdk-php-symfony": {
"version": "2.4",
"recipe": {
"repo": "2.4",
"branch": "master",
"version": "2.4",
"ref": "e654c55d2ccb2061d42e6c31c6a7799ca4526fd1"
}
}
},
"manifests": {
"adback/adback-sdk-php-symfony": {
"repository": "github.com/symfony/recipes-contrib",
"package": "adback/adback-sdk-php-symfony",
"version": "2.4",
"manifest": {
"bundles": {
"Adback\\ApiClientBundle\\AdbackApiClientBundle": [
@@ -30,13 +16,15 @@
},
"files": {
"config/packages/adback_sdk_php.yaml": {
"contents": "adback_api_client:\n access_token: \"%env(ADBACK_API_CLIENT_ACCESS_TOKEN)%\"\n",
"executable": false,
"encoding": ""
"contents": [
"adback_api_client:",
" access_token: \"%env(ADBACK_API_CLIENT_ACCESS_TOKEN)%\"",
""
],
"executable": false
}
},
"origin": "adback/adback-sdk-php-symfony:2.4@github.com/symfony/recipes-contrib:master",
"is_contrib": true
"ref": "e654c55d2ccb2061d42e6c31c6a7799ca4526fd1"
}
}
}
+15 -22
View File
@@ -1,20 +1,6 @@
{
"locks": {
"adlarge/fixtures-documentation-bundle": {
"version": "1.1",
"recipe": {
"repo": "1.1",
"branch": "master",
"version": "1.1",
"ref": "5660aa4a719721e3b0fb9709f17872488ce4ff7e"
}
}
},
"manifests": {
"adlarge/fixtures-documentation-bundle": {
"repository": "github.com/symfony/recipes-contrib",
"package": "adlarge/fixtures-documentation-bundle",
"version": "1.1",
"manifest": {
"bundles": {
"Adlarge\\FixturesDocumentationBundle\\AdlargeFixturesDocumentationBundle": [
@@ -27,18 +13,25 @@
},
"files": {
"config/routes/dev/adlarge_fixtures_documentation.yaml": {
"contents": "AdlargeFixturesDocumentation:\n resource: '@AdlargeFixturesDocumentationBundle/Resources/config/routing.yml'\n",
"executable": false,
"encoding": ""
"contents": [
"AdlargeFixturesDocumentation:",
" resource: '@AdlargeFixturesDocumentationBundle/Resources/config/routing.yml'",
""
],
"executable": false
},
"config/packages/dev/adlarge_fixtures_documentation.yaml": {
"contents": "adlarge_fixtures_documentation:\n title: 'Fixtures documentation'\n reloadCommands:\n - php bin/console doctrine:fixtures:load\n",
"executable": false,
"encoding": ""
"contents": [
"adlarge_fixtures_documentation:",
" title: 'Fixtures documentation'",
" reloadCommands:",
" - php bin/console doctrine:fixtures:load",
""
],
"executable": false
}
},
"origin": "adlarge/fixtures-documentation-bundle:1.1@github.com/symfony/recipes-contrib:master",
"is_contrib": true
"ref": "5660aa4a719721e3b0fb9709f17872488ce4ff7e"
}
}
}
+60 -19
View File
@@ -1,20 +1,6 @@
{
"locks": {
"ajardin/docker-symfony": {
"version": "0.2",
"recipe": {
"repo": "0.2",
"branch": "master",
"version": "0.2",
"ref": "696b4e17945ac6db614b6d09f073ef74c1567cfd"
}
}
},
"manifests": {
"ajardin/docker-symfony": {
"repository": "github.com/symfony/recipes-contrib",
"package": "ajardin/docker-symfony",
"version": "0.2",
"manifest": {
"composer-scripts": {
"bin/docker-upgrade": "php-script"
@@ -42,13 +28,68 @@
},
"files": {
"bin/docker-upgrade": {
"contents": "#!/usr/bin/env php\n<?php\n\nrequire __DIR__ . '/../vendor/autoload.php';\n\nuse Symfony\\Component\\Filesystem\\Filesystem;\n\nconst SOURCE_DIRECTORY = 'vendor/ajardin/docker-symfony';\nconst TARGET_DIRECTORY = 'docker';\n\n$filesystem = new Filesystem();\n\n/**\n * Create the Docker directory at the project root\n */\nif ($filesystem->exists(TARGET_DIRECTORY) === false) {\n $filesystem->mkdir(TARGET_DIRECTORY);\n}\n\n/**\n * Mirror the vendor directory with the directory created at the project root\n */\nif ($filesystem->exists(SOURCE_DIRECTORY) === true) {\n $filesystem->mirror(SOURCE_DIRECTORY, TARGET_DIRECTORY, null, ['override' => true]);\n}\n\n/**\n * Define the default environment variables\n */\nif ($filesystem->exists(TARGET_DIRECTORY . '/.env') === false) {\n $filesystem->copy(\n TARGET_DIRECTORY . '/.env.dist',\n TARGET_DIRECTORY . '/.env'\n );\n}\n\n/**\n * Define the default Nginx configuration\n */\nif ($filesystem->exists(TARGET_DIRECTORY . '/nginx/conf.d/custom.conf') === false) {\n $filesystem->copy(\n TARGET_DIRECTORY . '/nginx/conf.d/symfony.conf.dist',\n TARGET_DIRECTORY . '/nginx/conf.d/custom.conf'\n );\n}\n\n/**\n * Copy the default Makefile at the project root\n */\nif ($filesystem->exists('Makefile') === false) {\n $filesystem->copy(\n TARGET_DIRECTORY . '/Makefile.sample',\n 'Makefile'\n );\n}\n",
"executable": true,
"encoding": ""
"contents": [
"#!/usr/bin/env php",
"<?php",
"",
"require __DIR__ . '/../vendor/autoload.php';",
"",
"use Symfony\\Component\\Filesystem\\Filesystem;",
"",
"const SOURCE_DIRECTORY = 'vendor/ajardin/docker-symfony';",
"const TARGET_DIRECTORY = 'docker';",
"",
"$filesystem = new Filesystem();",
"",
"/**",
" * Create the Docker directory at the project root",
" */",
"if ($filesystem->exists(TARGET_DIRECTORY) === false) {",
" $filesystem->mkdir(TARGET_DIRECTORY);",
"}",
"",
"/**",
" * Mirror the vendor directory with the directory created at the project root",
" */",
"if ($filesystem->exists(SOURCE_DIRECTORY) === true) {",
" $filesystem->mirror(SOURCE_DIRECTORY, TARGET_DIRECTORY, null, ['override' => true]);",
"}",
"",
"/**",
" * Define the default environment variables",
" */",
"if ($filesystem->exists(TARGET_DIRECTORY . '/.env') === false) {",
" $filesystem->copy(",
" TARGET_DIRECTORY . '/.env.dist',",
" TARGET_DIRECTORY . '/.env'",
" );",
"}",
"",
"/**",
" * Define the default Nginx configuration",
" */",
"if ($filesystem->exists(TARGET_DIRECTORY . '/nginx/conf.d/custom.conf') === false) {",
" $filesystem->copy(",
" TARGET_DIRECTORY . '/nginx/conf.d/symfony.conf.dist',",
" TARGET_DIRECTORY . '/nginx/conf.d/custom.conf'",
" );",
"}",
"",
"/**",
" * Copy the default Makefile at the project root",
" */",
"if ($filesystem->exists('Makefile') === false) {",
" $filesystem->copy(",
" TARGET_DIRECTORY . '/Makefile.sample',",
" 'Makefile'",
" );",
"}",
""
],
"executable": true
}
},
"origin": "ajardin/docker-symfony:0.2@github.com/symfony/recipes-contrib:master",
"is_contrib": true
"ref": "696b4e17945ac6db614b6d09f073ef74c1567cfd"
}
}
}
+18 -22
View File
@@ -1,20 +1,6 @@
{
"locks": {
"akondas/symfony-consul-bundle": {
"version": "0.1",
"recipe": {
"repo": "0.1",
"branch": "master",
"version": "0.1",
"ref": "f70a218d2bb5225160db926d47b148c142312b31"
}
}
},
"manifests": {
"akondas/symfony-consul-bundle": {
"repository": "github.com/symfony/recipes-contrib",
"package": "akondas/symfony-consul-bundle",
"version": "0.1",
"manifest": {
"bundles": {
"Akondas\\ConsulBundle\\ConsulBundle": [
@@ -33,18 +19,28 @@
},
"files": {
"config/routes/consul.yaml": {
"contents": "consul_bundle:\n resource: \"@ConsulBundle/Resources/config/routing.yml\"\n",
"executable": false,
"encoding": ""
"contents": [
"consul_bundle:",
" resource: \"@ConsulBundle/Resources/config/routing.yml\"",
""
],
"executable": false
},
"config/packages/consul.yaml": {
"contents": "consul:\n service:\n name: '%env(resolve:CONSUL_SERVICE_NAME)%'\n host: '%env(resolve:CONSUL_SERVICE_HOST)%'\n port: '%env(resolve:CONSUL_SERVICE_PORT)%'\n client:\n base_uri: '%env(resolve:CONSUL_CLIENT_BASE_URI)%'\n",
"executable": false,
"encoding": ""
"contents": [
"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)%'",
""
],
"executable": false
}
},
"origin": "akondas/symfony-consul-bundle:0.1@github.com/symfony/recipes-contrib:master",
"is_contrib": true
"ref": "f70a218d2bb5225160db926d47b148c142312b31"
}
}
}
+9 -19
View File
@@ -1,20 +1,6 @@
{
"locks": {
"alexandret/evc-bundle": {
"version": "1.0",
"recipe": {
"repo": "1.0",
"branch": "master",
"version": "1.0",
"ref": "32f4cc1f12a640985710762638f18dfdbb68d7df"
}
}
},
"manifests": {
"alexandret/evc-bundle": {
"repository": "github.com/symfony/recipes-contrib",
"package": "alexandret/evc-bundle",
"version": "1.0",
"manifest": {
"bundles": {
"Alexandre\\EvcBundle\\AlexandreEvcBundle": [
@@ -32,13 +18,17 @@
},
"files": {
"config/packages/alexandre_evc.yaml": {
"contents": "alexandre_evc:\n api_id: '%env(EVC_API)%'\n username: '%env(EVC_USERNAME)%'\n password: '%env(EVC_PASSWORD)%'\n",
"executable": false,
"encoding": ""
"contents": [
"alexandre_evc:",
" api_id: '%env(EVC_API)%'",
" username: '%env(EVC_USERNAME)%'",
" password: '%env(EVC_PASSWORD)%'",
""
],
"executable": false
}
},
"origin": "alexandret/evc-bundle:1.0@github.com/symfony/recipes-contrib:master",
"is_contrib": true
"ref": "32f4cc1f12a640985710762638f18dfdbb68d7df"
}
}
}
+8 -19
View File
@@ -1,20 +1,6 @@
{
"locks": {
"algolia/algolia-search-bundle": {
"version": "2.2",
"recipe": {
"repo": "2.2",
"branch": "master",
"version": "2.2",
"ref": "b6d98595a857947b5d05b79eb3a5fbf53b0a18d2"
}
}
},
"manifests": {
"algolia/algolia-search-bundle": {
"repository": "github.com/symfony/recipes-contrib",
"package": "algolia/algolia-search-bundle",
"version": "2.2",
"manifest": {
"bundles": {
"Algolia\\AlgoliaSearchBundle\\AlgoliaAlgoliaSearchBundle": [
@@ -31,13 +17,16 @@
},
"files": {
"config/packages/algolia.yaml": {
"contents": "algolia:\n application_id: \"%env(ALGOLIA_APP_ID)%\"\n api_key: \"%env(ALGOLIA_API_KEY)%\"\n",
"executable": false,
"encoding": ""
"contents": [
"algolia:",
" application_id: \"%env(ALGOLIA_APP_ID)%\"",
" api_key: \"%env(ALGOLIA_API_KEY)%\"",
""
],
"executable": false
}
},
"origin": "algolia/algolia-search-bundle:2.2@github.com/symfony/recipes-contrib:master",
"is_contrib": true
"ref": "b6d98595a857947b5d05b79eb3a5fbf53b0a18d2"
}
}
}
+9 -19
View File
@@ -1,20 +1,6 @@
{
"locks": {
"algolia/search-bundle": {
"version": "3.0",
"recipe": {
"repo": "3.0",
"branch": "master",
"version": "3.0",
"ref": "fd172e8feabf6b1c0818e18de90c2a3f82ea0a60"
}
}
},
"manifests": {
"algolia/search-bundle": {
"repository": "github.com/symfony/recipes-contrib",
"package": "algolia/search-bundle",
"version": "3.0",
"manifest": {
"bundles": {
"Algolia\\SearchBundle\\AlgoliaSearchBundle": [
@@ -43,13 +29,17 @@
},
"files": {
"config/packages/algolia_search.yaml": {
"contents": "# All available configuration can be found here:\n# https://www.algolia.com/doc/api-client/symfony/configuration/\nalgolia_search:\n prefix: '%env(APP_ENV)%_'\n",
"executable": false,
"encoding": ""
"contents": [
"# All available configuration can be found here:",
"# https://www.algolia.com/doc/api-client/symfony/configuration/",
"algolia_search:",
" prefix: '%env(APP_ENV)%_'",
""
],
"executable": false
}
},
"origin": "algolia/search-bundle:3.0@github.com/symfony/recipes-contrib:master",
"is_contrib": true
"ref": "fd172e8feabf6b1c0818e18de90c2a3f82ea0a60"
}
}
}
+23 -19
View File
@@ -1,20 +1,6 @@
{
"locks": {
"ambient-link/ability-sdk": {
"version": "1.0",
"recipe": {
"repo": "1.0",
"branch": "master",
"version": "1.0",
"ref": "41ad248e67c065e158415f6cffd693f39f303283"
}
}
},
"manifests": {
"ambient-link/ability-sdk": {
"repository": "github.com/symfony/recipes-contrib",
"package": "ambient-link/ability-sdk",
"version": "1.0",
"manifest": {
"env": {
"AMBIENT_LINK_HOST": "",
@@ -53,13 +39,31 @@
},
"files": {
"config/packages/ability.yaml": {
"contents": "services:\n AmbientLink\\SDK\\SmartMonkeyConnection:\n arguments: ['@amnient.link_connection_settings', '%env(AMBIENT_LINK_USERNAME)%', '%env(AMBIENT_LINK_PASSWORD)%']\n\n amnient.link_connection_settings:\n class: PhpMqtt\\Client\\ConnectionSettings\n\n PhpMqtt\\Client\\Contracts\\MQTTClient: '@PhpMqtt\\Client\\MQTTClient'\n PhpMqtt\\Client\\MQTTClient:\n arguments:\n - '%env(AMBIENT_LINK_HOST)%'\n - '%env(AMBIENT_LINK_PORT)%'\n - '%env(AMBIENT_LINK_MONKEY_ID)%'\n\n AmbientLink\\SDK\\Mqtt\\MqttAdapter:\n arguments:\n $username: '%env(AMBIENT_LINK_USERNAME)%'\n $password: '%env(AMBIENT_LINK_PASSWORD)%'\n",
"executable": false,
"encoding": ""
"contents": [
"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)%'",
""
],
"executable": false
}
},
"origin": "ambient-link/ability-sdk:1.0@github.com/symfony/recipes-contrib:master",
"is_contrib": true
"ref": "41ad248e67c065e158415f6cffd693f39f303283"
}
}
}
+22 -22
View File
@@ -1,20 +1,6 @@
{
"locks": {
"andchir/omnipay-bundle": {
"version": "1.0",
"recipe": {
"repo": "1.0",
"branch": "master",
"version": "1.0",
"ref": "b70bdce6cb4c9a3933dcc082c270042e630b5507"
}
}
},
"manifests": {
"andchir/omnipay-bundle": {
"repository": "github.com/symfony/recipes-contrib",
"package": "andchir/omnipay-bundle",
"version": "1.0",
"manifest": {
"bundles": {
"Andchir\\OmnipayBundle\\OmnipayBundle": [
@@ -27,18 +13,32 @@
},
"files": {
"config/routes/omnipay.yaml": {
"contents": "omnipay:\n resource: \"@OmnipayBundle/Resources/config/routing.yml\"\n prefix: /\n",
"executable": false,
"encoding": ""
"contents": [
"omnipay:",
" resource: \"@OmnipayBundle/Resources/config/routing.yml\"",
" prefix: /",
""
],
"executable": false
},
"config/packages/omnipay.yaml": {
"contents": "omnipay:\n success_url: '/profile/history_orders'\n fail_url: '/'\n return_url: '/omnipay_return'\n notify_url: '/omnipay_notify'\n cancel_url: '/omnipay_cancel'\n data_keys:\n paymentId: ['orderNumber']\n customerEmail: ['customerNumber']\n gateways: null\n",
"executable": true,
"encoding": ""
"contents": [
"omnipay:",
" success_url: '/profile/history_orders'",
" fail_url: '/'",
" return_url: '/omnipay_return'",
" notify_url: '/omnipay_notify'",
" cancel_url: '/omnipay_cancel'",
" data_keys:",
" paymentId: ['orderNumber']",
" customerEmail: ['customerNumber']",
" gateways: null",
""
],
"executable": true
}
},
"origin": "andchir/omnipay-bundle:1.0@github.com/symfony/recipes-contrib:master",
"is_contrib": true
"ref": "b70bdce6cb4c9a3933dcc082c270042e630b5507"
}
}
}
+15 -22
View File
@@ -1,20 +1,6 @@
{
"locks": {
"andchir/shopkeeper4-comments": {
"version": "1.0",
"recipe": {
"repo": "1.0",
"branch": "master",
"version": "1.0",
"ref": "8a05fa761a475e2e95f7b556e54d9ab33d532aa9"
}
}
},
"manifests": {
"andchir/shopkeeper4-comments": {
"repository": "github.com/symfony/recipes-contrib",
"package": "andchir/shopkeeper4-comments",
"version": "1.0",
"manifest": {
"bundles": {
"Andchir\\CommentsBundle\\CommentsBundle": [
@@ -27,18 +13,25 @@
},
"files": {
"config/routes/comments.yaml": {
"contents": "comments:\n resource: '@CommentsBundle'\n type: annotation\n",
"executable": false,
"encoding": ""
"contents": [
"comments:",
" resource: '@CommentsBundle'",
" type: annotation",
""
],
"executable": false
},
"config/packages/comments.yaml": {
"contents": "comments:\n comment_class: App\\MainBundle\\Document\\Comment\n status_default: pending\n",
"executable": false,
"encoding": ""
"contents": [
"comments:",
" comment_class: App\\MainBundle\\Document\\Comment",
" status_default: pending",
""
],
"executable": false
}
},
"origin": "andchir/shopkeeper4-comments:1.0@github.com/symfony/recipes-contrib:master",
"is_contrib": true
"ref": "8a05fa761a475e2e95f7b556e54d9ab33d532aa9"
}
}
}
+13 -19
View File
@@ -1,20 +1,6 @@
{
"locks": {
"anezi/locale-extension": {
"version": "1.0",
"recipe": {
"repo": "1.0",
"branch": "master",
"version": "1.0",
"ref": "b6c7e92a317efe13229a85e3934681a4f31d8f82"
}
}
},
"manifests": {
"anezi/locale-extension": {
"repository": "github.com/symfony/recipes-contrib",
"package": "anezi/locale-extension",
"version": "1.0",
"manifest": {
"copy-from-recipe": {
"config/": "%CONFIG_DIR%/"
@@ -22,13 +8,21 @@
},
"files": {
"config/packages/anezi_locale_extension.yaml": {
"contents": "services:\n anezi_twig.locale_extension:\n class: Anezi\\Locale\\Twig\\Extension\\LocaleExtension\n public: false\n arguments:\n $locales: ['fr', 'en'] # Edit here for your needs.\n tags:\n - { name: twig.extension }\n",
"executable": false,
"encoding": ""
"contents": [
"services:",
" anezi_twig.locale_extension:",
" class: Anezi\\Locale\\Twig\\Extension\\LocaleExtension",
" public: false",
" arguments:",
" $locales: ['fr', 'en'] # Edit here for your needs.",
" tags:",
" - { name: twig.extension }",
""
],
"executable": false
}
},
"origin": "anezi/locale-extension:1.0@github.com/symfony/recipes-contrib:master",
"is_contrib": true
"ref": "b6c7e92a317efe13229a85e3934681a4f31d8f82"
}
}
}
+9 -19
View File
@@ -1,20 +1,6 @@
{
"locks": {
"antishov/doctrine-extensions-bundle": {
"version": "1.4",
"recipe": {
"repo": "1.4",
"branch": "master",
"version": "1.4",
"ref": "6c1ceb662f8997085f739cd089bfbef67f245983"
}
}
},
"manifests": {
"antishov/doctrine-extensions-bundle": {
"repository": "github.com/symfony/recipes-contrib",
"package": "antishov/doctrine-extensions-bundle",
"version": "1.4",
"manifest": {
"bundles": {
"Stof\\DoctrineExtensionsBundle\\StofDoctrineExtensionsBundle": [
@@ -27,13 +13,17 @@
},
"files": {
"config/packages/stof_doctrine_extensions.yaml": {
"contents": "# Read the documentation: https://symfony.com/doc/current/bundles/StofDoctrineExtensionsBundle/index.html\n# See the official DoctrineExtensions documentation for more details: https://github.com/Atlantic18/DoctrineExtensions/tree/master/doc/\nstof_doctrine_extensions:\n default_locale: en_US\n",
"executable": false,
"encoding": ""
"contents": [
"# 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",
""
],
"executable": false
}
},
"origin": "antishov/doctrine-extensions-bundle:1.4@github.com/symfony/recipes-contrib:master",
"is_contrib": true
"ref": "6c1ceb662f8997085f739cd089bfbef67f245983"
}
}
}
+12 -19
View File
@@ -1,20 +1,6 @@
{
"locks": {
"anyx/login-gate-bundle": {
"version": "1.0",
"recipe": {
"repo": "1.0",
"branch": "master",
"version": "1.0",
"ref": "49f0e34d3f1059f8985e8e56e4b5e2b08e5fc79b"
}
}
},
"manifests": {
"anyx/login-gate-bundle": {
"repository": "github.com/symfony/recipes-contrib",
"package": "anyx/login-gate-bundle",
"version": "1.0",
"manifest": {
"bundles": {
"Anyx\\LoginGateBundle\\LoginGateBundle": [
@@ -27,13 +13,20 @@
},
"files": {
"config/packages/login_gate.yaml": {
"contents": "login_gate:\n storages: ['session'] # Attempts storage engine. Available engines: ['orm', 'session', 'mongodb']\n options:\n max_count_attempts: 3\n timeout: 600 # Ban period (in seconds ... 600 = 10 minutes)\n watch_period: 3600\n\n",
"executable": false,
"encoding": ""
"contents": [
"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",
"",
""
],
"executable": false
}
},
"origin": "anyx/login-gate-bundle:1.0@github.com/symfony/recipes-contrib:master",
"is_contrib": true
"ref": "49f0e34d3f1059f8985e8e56e4b5e2b08e5fc79b"
}
}
}
+15 -22
View File
@@ -1,20 +1,6 @@
{
"locks": {
"armin/scssphp-bundle": {
"version": "1.0",
"recipe": {
"repo": "1.0",
"branch": "master",
"version": "1.0",
"ref": "dfcd909f037c7f1e2535bec00c1eba240d7aa513"
}
}
},
"manifests": {
"armin/scssphp-bundle": {
"repository": "github.com/symfony/recipes-contrib",
"package": "armin/scssphp-bundle",
"version": "1.0",
"manifest": {
"bundles": {
"Armin\\ScssphpBundle\\ScssphpBundle": [
@@ -27,18 +13,25 @@
},
"files": {
"config/packages/prod/scssphp.yaml": {
"contents": "scssphp:\n enabled: true\n autoUpdate: false\n",
"executable": false,
"encoding": ""
"contents": [
"scssphp:",
" enabled: true",
" autoUpdate: false",
""
],
"executable": false
},
"config/packages/scssphp.yaml": {
"contents": "scssphp:\n enabled: true\n autoUpdate: true\n",
"executable": false,
"encoding": ""
"contents": [
"scssphp:",
" enabled: true",
" autoUpdate: true",
""
],
"executable": false
}
},
"origin": "armin/scssphp-bundle:1.0@github.com/symfony/recipes-contrib:master",
"is_contrib": true
"ref": "dfcd909f037c7f1e2535bec00c1eba240d7aa513"
}
}
}
+9 -19
View File
@@ -1,20 +1,6 @@
{
"locks": {
"artox-lab/clarc-bundle": {
"version": "0.1",
"recipe": {
"repo": "0.1",
"branch": "master",
"version": "0.1",
"ref": "5b211da937aafccca43bcea381f3f2db7edc918f"
}
}
},
"manifests": {
"artox-lab/clarc-bundle": {
"repository": "github.com/symfony/recipes-contrib",
"package": "artox-lab/clarc-bundle",
"version": "0.1",
"manifest": {
"bundles": {
"ArtoxLab\\Bundle\\ClarcBundle\\ArtoxLabClarcBundle": [
@@ -33,13 +19,17 @@
},
"files": {
"config/packages/artox_lab_clarc.yaml": {
"contents": "artox_lab_clarc:\n api:\n serializer:\n class: \\ArtoxLab\\Bundle\\ClarcBundle\\Core\\Interfaces\\UI\\API\\Transformers\\Serializers\\NullObjectArraySerializer\n",
"executable": false,
"encoding": ""
"contents": [
"artox_lab_clarc:",
" api:",
" serializer:",
" class: \\ArtoxLab\\Bundle\\ClarcBundle\\Core\\Interfaces\\UI\\API\\Transformers\\Serializers\\NullObjectArraySerializer",
""
],
"executable": false
}
},
"origin": "artox-lab/clarc-bundle:0.1@github.com/symfony/recipes-contrib:master",
"is_contrib": true
"ref": "5b211da937aafccca43bcea381f3f2db7edc918f"
}
}
}
+10 -19
View File
@@ -1,20 +1,6 @@
{
"locks": {
"artox-lab/clarc-message-bus-bundle": {
"version": "1.0",
"recipe": {
"repo": "1.0",
"branch": "master",
"version": "1.0",
"ref": "f12b61a5d1456c0db63d38a4638e366b385b8316"
}
}
},
"manifests": {
"artox-lab/clarc-message-bus-bundle": {
"repository": "github.com/symfony/recipes-contrib",
"package": "artox-lab/clarc-message-bus-bundle",
"version": "1.0",
"manifest": {
"bundles": {
"ArtoxLab\\Bundle\\ClarcMessageBusBundle\\ArtoxLabClarcMessageBusBundle": [
@@ -27,13 +13,18 @@
},
"files": {
"config/packages/artox_lab_clarc_message_bus.yaml": {
"contents": "artox_lab_clarc_message_bus:\n bus:\n middleware:\n add_redelivery_stamp_middleware:\n retry_count: 10\n",
"executable": false,
"encoding": ""
"contents": [
"artox_lab_clarc_message_bus:",
" bus:",
" middleware:",
" add_redelivery_stamp_middleware:",
" retry_count: 10",
""
],
"executable": false
}
},
"origin": "artox-lab/clarc-message-bus-bundle:1.0@github.com/symfony/recipes-contrib:master",
"is_contrib": true
"ref": "f12b61a5d1456c0db63d38a4638e366b385b8316"
}
}
}
+9 -19
View File
@@ -1,20 +1,6 @@
{
"locks": {
"artox-lab/sms-bundle": {
"version": "1.0",
"recipe": {
"repo": "1.0",
"branch": "master",
"version": "1.0",
"ref": "bd9cb03c4458d7f089586938e06dadcd1f481ba8"
}
}
},
"manifests": {
"artox-lab/sms-bundle": {
"repository": "github.com/symfony/recipes-contrib",
"package": "artox-lab/sms-bundle",
"version": "1.0",
"manifest": {
"bundles": {
"ArtoxLab\\Bundle\\SmsBundle\\ArtoxLabSmsBundle": [
@@ -32,13 +18,17 @@
},
"files": {
"config/packages/artox_lab_sms.yaml": {
"contents": "artox_lab_sms:\n providers:\n # You must to define at least one provider configuration\n # See more info at https://github.com/artox-lab/sms-bundle\n",
"executable": false,
"encoding": ""
"contents": [
"artox_lab_sms:",
" providers:",
" # You must to define at least one provider configuration",
" # See more info at https://github.com/artox-lab/sms-bundle",
""
],
"executable": false
}
},
"origin": "artox-lab/sms-bundle:1.0@github.com/symfony/recipes-contrib:master",
"is_contrib": true
"ref": "bd9cb03c4458d7f089586938e06dadcd1f481ba8"
}
}
}
+23 -25
View File
@@ -1,20 +1,6 @@
{
"locks": {
"artprima/prometheus-metrics-bundle": {
"version": "1.0",
"recipe": {
"repo": "1.0",
"branch": "master",
"version": "1.0",
"ref": "a07f1cab0b63419f2153b744a254d9d6c3d732e9"
}
}
},
"manifests": {
"artprima/prometheus-metrics-bundle": {
"repository": "github.com/symfony/recipes-contrib",
"package": "artprima/prometheus-metrics-bundle",
"version": "1.0",
"manifest": {
"bundles": {
"Artprima\\PrometheusMetricsBundle\\ArtprimaPrometheusMetricsBundle": [
@@ -27,23 +13,35 @@
},
"files": {
"config/routes/metrics.yaml": {
"contents": "app_metrics:\n resource: '@ArtprimaPrometheusMetricsBundle/Resources/config/routing.xml'\n",
"executable": false,
"encoding": ""
"contents": [
"app_metrics:",
" resource: '@ArtprimaPrometheusMetricsBundle/Resources/config/routing.xml'",
""
],
"executable": false
},
"config/packages/test/prometheus_metrics.yaml": {
"contents": "artprima_prometheus_metrics:\n type: in_memory\n",
"executable": false,
"encoding": ""
"contents": [
"artprima_prometheus_metrics:",
" type: in_memory",
""
],
"executable": false
},
"config/packages/prometheus_metrics.yaml": {
"contents": "artprima_prometheus_metrics:\n namespace: myapp\n type: apcu\n ignored_routes:\n - prometheus_bundle_prometheus\n - _wdt\n",
"executable": false,
"encoding": ""
"contents": [
"artprima_prometheus_metrics:",
" namespace: myapp",
" type: apcu",
" ignored_routes:",
" - prometheus_bundle_prometheus",
" - _wdt",
""
],
"executable": false
}
},
"origin": "artprima/prometheus-metrics-bundle:1.0@github.com/symfony/recipes-contrib:master",
"is_contrib": true
"ref": "a07f1cab0b63419f2153b744a254d9d6c3d732e9"
}
}
}
+1 -16
View File
@@ -1,20 +1,6 @@
{
"locks": {
"assoconnect/mjml-bundle": {
"version": "1.0",
"recipe": {
"repo": "1.0",
"branch": "master",
"version": "1.0",
"ref": "74656f4762a2cc83f03f78c50142b3c9285fb18c"
}
}
},
"manifests": {
"assoconnect/mjml-bundle": {
"repository": "github.com/symfony/recipes-contrib",
"package": "assoconnect/mjml-bundle",
"version": "1.0",
"manifest": {
"bundles": {
"Assoconnect\\MJMLBundle\\AssoconnectMJMLBundle": [
@@ -26,8 +12,7 @@
]
},
"files": [],
"origin": "assoconnect/mjml-bundle:1.0@github.com/symfony/recipes-contrib:master",
"is_contrib": true
"ref": "74656f4762a2cc83f03f78c50142b3c9285fb18c"
}
}
}
+14 -19
View File
@@ -1,20 +1,6 @@
{
"locks": {
"async-aws/async-aws-bundle": {
"version": "0.1",
"recipe": {
"repo": "0.1",
"branch": "master",
"version": "0.1",
"ref": "1c5ddc78525b87905779c67df1ab71521f664662"
}
}
},
"manifests": {
"async-aws/async-aws-bundle": {
"repository": "github.com/symfony/recipes-contrib",
"package": "async-aws/async-aws-bundle",
"version": "0.1",
"manifest": {
"bundles": {
"AsyncAws\\Symfony\\Bundle\\AsyncAwsBundle": [
@@ -31,13 +17,22 @@
},
"files": {
"config/packages/async_aws.yaml": {
"contents": "# Read documentation at https://async-aws.com/integration/symfony-bundle.html\nasync_aws:\n config:\n region: eu-central-1\n accessKeyId: '%env(AWS_KEY)%'\n accessKeySecret: '%env(AWS_SECRET)%'\n\n # All installed clients are automatically autowired. Use this section to customize clients\n clients:\n",
"executable": false,
"encoding": ""
"contents": [
"# 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:",
""
],
"executable": false
}
},
"origin": "async-aws/async-aws-bundle:0.1@github.com/symfony/recipes-contrib:master",
"is_contrib": true
"ref": "1c5ddc78525b87905779c67df1ab71521f664662"
}
}
}
+11 -19
View File
@@ -1,20 +1,6 @@
{
"locks": {
"async-aws/async-aws-bundle": {
"version": "1.0",
"recipe": {
"repo": "1.0",
"branch": "master",
"version": "1.0",
"ref": "36bc5854429183d4ba6980c916f9e9284deb3a16"
}
}
},
"manifests": {
"async-aws/async-aws-bundle": {
"repository": "github.com/symfony/recipes-contrib",
"package": "async-aws/async-aws-bundle",
"version": "1.0",
"manifest": {
"bundles": {
"AsyncAws\\Symfony\\Bundle\\AsyncAwsBundle": [
@@ -27,13 +13,19 @@
},
"files": {
"config/packages/async_aws.yaml": {
"contents": "# Read documentation at https://async-aws.com/integration/symfony-bundle.html\nasync_aws:\n config:\n\n # All installed clients are automatically autowired. Use this section to customize clients\n clients:\n",
"executable": false,
"encoding": ""
"contents": [
"# 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:",
""
],
"executable": false
}
},
"origin": "async-aws/async-aws-bundle:1.0@github.com/symfony/recipes-contrib:master",
"is_contrib": true
"ref": "36bc5854429183d4ba6980c916f9e9284deb3a16"
}
}
}
+1 -16
View File
@@ -1,20 +1,6 @@
{
"locks": {
"atlas/symfony": {
"version": "1.0",
"recipe": {
"repo": "1.0",
"branch": "master",
"version": "1.0",
"ref": "59ce1c811d6db5e8c23fd8ecc0fdfa92f00a9dbf"
}
}
},
"manifests": {
"atlas/symfony": {
"repository": "github.com/symfony/recipes-contrib",
"package": "atlas/symfony",
"version": "1.0",
"manifest": {
"bundles": {
"Atlas\\Symfony\\AtlasBundle": [
@@ -31,8 +17,7 @@
}
},
"files": [],
"origin": "atlas/symfony:1.0@github.com/symfony/recipes-contrib:master",
"is_contrib": true
"ref": "59ce1c811d6db5e8c23fd8ecc0fdfa92f00a9dbf"
}
}
}
+11 -19
View File
@@ -1,20 +1,6 @@
{
"locks": {
"aws/aws-sdk-php-symfony": {
"version": "1.3",
"recipe": {
"repo": "1.3",
"branch": "master",
"version": "1.3",
"ref": "d1753f9e2a669c464b2b0618af9b0123426b67b4"
}
}
},
"manifests": {
"aws/aws-sdk-php-symfony": {
"repository": "github.com/symfony/recipes-contrib",
"package": "aws/aws-sdk-php-symfony",
"version": "1.3",
"manifest": {
"bundles": {
"Aws\\Symfony\\AwsBundle": [
@@ -31,13 +17,19 @@
},
"files": {
"config/packages/aws.yaml": {
"contents": "aws:\n version: latest\n region: us-east-1\n credentials:\n key: \"%env(AWS_KEY)%\"\n secret: \"%env(AWS_SECRET)%\"\n",
"executable": false,
"encoding": ""
"contents": [
"aws:",
" version: latest",
" region: us-east-1",
" credentials:",
" key: \"%env(AWS_KEY)%\"",
" secret: \"%env(AWS_SECRET)%\"",
""
],
"executable": false
}
},
"origin": "aws/aws-sdk-php-symfony:1.3@github.com/symfony/recipes-contrib:master",
"is_contrib": true
"ref": "d1753f9e2a669c464b2b0618af9b0123426b67b4"
}
}
}
+14 -19
View File
@@ -1,20 +1,6 @@
{
"locks": {
"backup-manager/symfony": {
"version": "2.1",
"recipe": {
"repo": "2.1",
"branch": "master",
"version": "2.1",
"ref": "4bb70c3f71c9bcd581e28724f50569af236df758"
}
}
},
"manifests": {
"backup-manager/symfony": {
"repository": "github.com/symfony/recipes-contrib",
"package": "backup-manager/symfony",
"version": "2.1",
"manifest": {
"bundles": {
"BM\\BackupManagerBundle\\BMBackupManagerBundle": [
@@ -35,13 +21,22 @@
},
"files": {
"config/packages/bm_backup_manager.yaml": {
"contents": "# See full config at https://github.com/backup-manager/symfony\nbm_backup_manager:\n database:\n development:\n dsn: '%env(resolve:DATABASE_URL)%'\n storage:\n local:\n type: Local\n root: '%kernel.cache_dir%/db'\n",
"executable": false,
"encoding": ""
"contents": [
"# See full config at https://github.com/backup-manager/symfony",
"bm_backup_manager:",
" database:",
" development:",
" dsn: '%env(resolve:DATABASE_URL)%'",
" storage:",
" local:",
" type: Local",
" root: '%kernel.cache_dir%/db'",
""
],
"executable": false
}
},
"origin": "backup-manager/symfony:2.1@github.com/symfony/recipes-contrib:master",
"is_contrib": true
"ref": "4bb70c3f71c9bcd581e28724f50569af236df758"
}
}
}
+7 -19
View File
@@ -1,20 +1,6 @@
{
"locks": {
"baldinof/roadrunner-bundle": {
"version": "0.1",
"recipe": {
"repo": "0.1",
"branch": "master",
"version": "0.1",
"ref": "64dda95346658b92b164d8e4408e6d4d9ef293a2"
}
}
},
"manifests": {
"baldinof/roadrunner-bundle": {
"repository": "github.com/symfony/recipes-contrib",
"package": "baldinof/roadrunner-bundle",
"version": "0.1",
"manifest": {
"copy-from-recipe": {
"config/": "%CONFIG_DIR%/"
@@ -38,13 +24,15 @@
},
"files": {
"config/packages/baldinof_road_runner.yaml": {
"contents": "baldinof_road_runner:\n should_reboot_kernel: false\n",
"executable": false,
"encoding": ""
"contents": [
"baldinof_road_runner:",
" should_reboot_kernel: false",
""
],
"executable": false
}
},
"origin": "baldinof/roadrunner-bundle:0.1@github.com/symfony/recipes-contrib:master",
"is_contrib": true
"ref": "64dda95346658b92b164d8e4408e6d4d9ef293a2"
}
}
}
+23 -19
View File
@@ -1,20 +1,6 @@
{
"locks": {
"baldinof/roadrunner-bundle": {
"version": "1.2",
"recipe": {
"repo": "1.2",
"branch": "master",
"version": "1.2",
"ref": "3c0c7c55596d9f2a3936f3543423b7f36819149c"
}
}
},
"manifests": {
"baldinof/roadrunner-bundle": {
"repository": "github.com/symfony/recipes-contrib",
"package": "baldinof/roadrunner-bundle",
"version": "1.2",
"manifest": {
"copy-from-recipe": {
"config/": "%CONFIG_DIR%/"
@@ -40,13 +26,31 @@
},
"files": {
"config/packages/baldinof_road_runner.yaml": {
"contents": "baldinof_road_runner:\n # The kernel is preserved between requests. Change this to `true`\n # if you want to reboot it, and use a fresh container on each request.\n should_reboot_kernel: false\n\n # Integrations are automatically detected, depending on installed bundle & current configuration\n # See https://github.com/baldinof/roadrunner-bundle#integrations\n default_integrations: true\n\n # Allow to send prometheus metrics to the master RoadRunner process,\n # via a `Spiral\\RoadRunner\\MetricsInterface` service.\n # See https://github.com/baldinof/roadrunner-bundle#metrics\n metrics_enabled: false\n\n # You can use middlewares to manipulate PSR requests & responses.\n # See https://github.com/baldinof/roadrunner-bundle#middlewares\n # middlewares:\n # - App\\Middleware\\YourMiddleware\n",
"executable": false,
"encoding": ""
"contents": [
"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",
""
],
"executable": false
}
},
"origin": "baldinof/roadrunner-bundle:1.2@github.com/symfony/recipes-contrib:master",
"is_contrib": true
"ref": "3c0c7c55596d9f2a3936f3543423b7f36819149c"
}
}
}
+32 -19
View File
@@ -1,20 +1,6 @@
{
"locks": {
"baldinof/roadrunner-bundle": {
"version": "2.0",
"recipe": {
"repo": "2.0",
"branch": "master",
"version": "2.0",
"ref": "cdd398712fbc03897c0550c856df05fb9ab2b36b"
}
}
},
"manifests": {
"baldinof/roadrunner-bundle": {
"repository": "github.com/symfony/recipes-contrib",
"package": "baldinof/roadrunner-bundle",
"version": "2.0",
"manifest": {
"copy-from-recipe": {
"config/": "%CONFIG_DIR%/"
@@ -40,13 +26,40 @@
},
"files": {
"config/packages/baldinof_road_runner.yaml": {
"contents": "baldinof_road_runner:\n # When the kernel should be rebooted.\n # See https://github.com/baldinof/roadrunner-bundle#kernel-reboots\n kernel_reboot:\n # if you want to use a fresh container on each request, use the `always` strategy\n strategy: on_exception\n # Exceptions you KNOW that do not put your app in an errored state\n allowed_exceptions:\n - Symfony\\Component\\HttpKernel\\Exception\\HttpExceptionInterface\n - Symfony\\Component\\Serializer\\Exception\\ExceptionInterface\n - Symfony\\Contracts\\HttpClient\\Exception\\ExceptionInterface\n\n # Allow to send prometheus metrics to the main RoadRunner process,\n # via a `Spiral\\RoadRunner\\MetricsInterface` service.\n # See https://github.com/baldinof/roadrunner-bundle#metrics\n metrics:\n enabled: false\n # collect:\n # my_counter:\n # type: counter\n # help: Some help\n\n\n # You can use middlewares to manipulate Symfony requests & responses.\n # See https://github.com/baldinof/roadrunner-bundle#middlewares\n # middlewares:\n # - App\\Middleware\\YourMiddleware\n",
"executable": false,
"encoding": ""
"contents": [
"baldinof_road_runner:",
" # When the kernel should be rebooted.",
" # See https://github.com/baldinof/roadrunner-bundle#kernel-reboots",
" kernel_reboot:",
" # if you want to use a fresh container on each request, use the `always` strategy",
" strategy: on_exception",
" # Exceptions you KNOW that do not put your app in an errored state",
" allowed_exceptions:",
" - Symfony\\Component\\HttpKernel\\Exception\\HttpExceptionInterface",
" - Symfony\\Component\\Serializer\\Exception\\ExceptionInterface",
" - Symfony\\Contracts\\HttpClient\\Exception\\ExceptionInterface",
"",
" # Allow to send prometheus metrics to the main RoadRunner process,",
" # via a `Spiral\\RoadRunner\\MetricsInterface` service.",
" # See https://github.com/baldinof/roadrunner-bundle#metrics",
" metrics:",
" enabled: false",
" # collect:",
" # my_counter:",
" # type: counter",
" # help: Some help",
"",
"",
" # You can use middlewares to manipulate Symfony requests & responses.",
" # See https://github.com/baldinof/roadrunner-bundle#middlewares",
" # middlewares:",
" # - App\\Middleware\\YourMiddleware",
""
],
"executable": false
}
},
"origin": "baldinof/roadrunner-bundle:2.0@github.com/symfony/recipes-contrib:master",
"is_contrib": true
"ref": "cdd398712fbc03897c0550c856df05fb9ab2b36b"
}
}
}
+23 -19
View File
@@ -1,20 +1,6 @@
{
"locks": {
"basster/lazy-response-bundle": {
"version": "1.0",
"recipe": {
"repo": "1.0",
"branch": "master",
"version": "1.0",
"ref": "eb9db09d43c64894b6f4d4ab04ed90cbe1197c9b"
}
}
},
"manifests": {
"basster/lazy-response-bundle": {
"repository": "github.com/symfony/recipes-contrib",
"package": "basster/lazy-response-bundle",
"version": "1.0",
"manifest": {
"copy-from-recipe": {
"config/": "%CONFIG_DIR%/"
@@ -22,13 +8,31 @@
},
"files": {
"config/packages/basster_lazy_response.yaml": {
"contents": "services:\n _defaults:\n public: false\n autowire: true\n autoconfigure: true\n\n # Enable DTO handler.\n # Comment or remove, if you don't want to use the default.\n # See any of the default handlers for reference.\n Basster\\LazyResponseBundle\\Response\\Handler\\RedirectResponseHandler: null\n\n # Requires twig\n # Basster\\LazyResponseBundle\\Response\\Handler\\TwigResponseHandler: null\n\n # Requires symfony/serializer\n # Basster\\LazyResponseBundle\\Response\\Handler\\JsonSerializeResponseHandler: null\n\n # Feel free to add your own handlers:\n",
"executable": false,
"encoding": ""
"contents": [
"services:",
" _defaults:",
" public: false",
" autowire: true",
" autoconfigure: true",
"",
" # Enable DTO handler.",
" # Comment or remove, if you don't want to use the default.",
" # See any of the default handlers for reference.",
" Basster\\LazyResponseBundle\\Response\\Handler\\RedirectResponseHandler: null",
"",
" # Requires twig",
" # Basster\\LazyResponseBundle\\Response\\Handler\\TwigResponseHandler: null",
"",
" # Requires symfony/serializer",
" # Basster\\LazyResponseBundle\\Response\\Handler\\JsonSerializeResponseHandler: null",
"",
" # Feel free to add your own handlers:",
""
],
"executable": false
}
},
"origin": "basster/lazy-response-bundle:1.0@github.com/symfony/recipes-contrib:master",
"is_contrib": true
"ref": "eb9db09d43c64894b6f4d4ab04ed90cbe1197c9b"
}
}
}
+15 -19
View File
@@ -1,20 +1,6 @@
{
"locks": {
"basster/twig-base64-extension": {
"version": "1.0",
"recipe": {
"repo": "1.0",
"branch": "master",
"version": "1.0",
"ref": "0a0762c7d5acf2449f9f7f330a514c666e8d0b92"
}
}
},
"manifests": {
"basster/twig-base64-extension": {
"repository": "github.com/symfony/recipes-contrib",
"package": "basster/twig-base64-extension",
"version": "1.0",
"manifest": {
"copy-from-recipe": {
"config/": "%CONFIG_DIR%/"
@@ -22,13 +8,23 @@
},
"files": {
"config/packages/basster_twig_base64.yaml": {
"contents": "services:\n _defaults:\n public: false\n autowire: true\n autoconfigure: true\n\n # registers all neccessary classes as services.\n Basster\\TwigBase64\\Converter\\ImageToBase64Converter: null\n Basster\\TwigBase64\\Twig\\Base64ImageExtension: null\n Basster\\TwigBase64\\Converter\\FileConverterInterface: '@Basster\\TwigBase64\\Converter\\ImageToBase64Converter'\n",
"executable": false,
"encoding": ""
"contents": [
"services:",
" _defaults:",
" public: false",
" autowire: true",
" autoconfigure: true",
"",
" # registers all neccessary classes as services.",
" Basster\\TwigBase64\\Converter\\ImageToBase64Converter: null",
" Basster\\TwigBase64\\Twig\\Base64ImageExtension: null",
" Basster\\TwigBase64\\Converter\\FileConverterInterface: '@Basster\\TwigBase64\\Converter\\ImageToBase64Converter'",
""
],
"executable": false
}
},
"origin": "basster/twig-base64-extension:1.0@github.com/symfony/recipes-contrib:master",
"is_contrib": true
"ref": "0a0762c7d5acf2449f9f7f330a514c666e8d0b92"
}
}
}
+8 -19
View File
@@ -1,20 +1,6 @@
{
"locks": {
"bcc/cron-manager-bundle": {
"version": "3.1",
"recipe": {
"repo": "3.1",
"branch": "master",
"version": "3.1",
"ref": "500a1a7b5da7d1a322335f80169b71dcfcd09e27"
}
}
},
"manifests": {
"bcc/cron-manager-bundle": {
"repository": "github.com/symfony/recipes-contrib",
"package": "bcc/cron-manager-bundle",
"version": "3.1",
"manifest": {
"bundles": {
"BCC\\CronManagerBundle\\BCCCronManagerBundle": [
@@ -34,13 +20,16 @@
},
"files": {
"config/routes/bcc_cron_manager_bundle.yaml": {
"contents": "BCCCronManagerBundle:\n resource: \"@BCCCronManagerBundle/Resources/config/routing.xml\"\n prefix: admin/cron-manager\n",
"executable": false,
"encoding": ""
"contents": [
"BCCCronManagerBundle:",
" resource: \"@BCCCronManagerBundle/Resources/config/routing.xml\"",
" prefix: admin/cron-manager",
""
],
"executable": false
}
},
"origin": "bcc/cron-manager-bundle:3.1@github.com/symfony/recipes-contrib:master",
"is_contrib": true
"ref": "500a1a7b5da7d1a322335f80169b71dcfcd09e27"
}
}
}
+8 -19
View File
@@ -1,20 +1,6 @@
{
"locks": {
"becklyn/assets-bundle": {
"version": "2.4",
"recipe": {
"repo": "2.4",
"branch": "master",
"version": "2.4",
"ref": "f743de2828a28ae7c30e8cb7ea730cbeb4be4f18"
}
}
},
"manifests": {
"becklyn/assets-bundle": {
"repository": "github.com/symfony/recipes-contrib",
"package": "becklyn/assets-bundle",
"version": "2.4",
"manifest": {
"bundles": {
"Becklyn\\AssetsBundle\\BecklynAssetsBundle": [
@@ -27,13 +13,16 @@
},
"files": {
"config/routes/becklyn_assets.yaml": {
"contents": "_import.becklyn_assets:\n resource: .\n type: 'becklyn-assets'\n",
"executable": false,
"encoding": ""
"contents": [
"_import.becklyn_assets:",
" resource: .",
" type: 'becklyn-assets'",
""
],
"executable": false
}
},
"origin": "becklyn/assets-bundle:2.4@github.com/symfony/recipes-contrib:master",
"is_contrib": true
"ref": "f743de2828a28ae7c30e8cb7ea730cbeb4be4f18"
}
}
}
+8 -19
View File
@@ -1,20 +1,6 @@
{
"locks": {
"becklyn/gluggi-bundle": {
"version": "3.1",
"recipe": {
"repo": "3.1",
"branch": "master",
"version": "3.1",
"ref": "3b26a87dab369e3136baaa870ce1d9c32e2191cc"
}
}
},
"manifests": {
"becklyn/gluggi-bundle": {
"repository": "github.com/symfony/recipes-contrib",
"package": "becklyn/gluggi-bundle",
"version": "3.1",
"manifest": {
"bundles": {
"Becklyn\\GluggiBundle\\GluggiBundle": [
@@ -27,13 +13,16 @@
},
"files": {
"config/routes/dev/gluggi.yaml": {
"contents": "_import.gluggi:\n resource: \"@GluggiBundle/Resources/config/routes.yaml\"\n prefix: /_layout/\n",
"executable": false,
"encoding": ""
"contents": [
"_import.gluggi:",
" resource: \"@GluggiBundle/Resources/config/routes.yaml\"",
" prefix: /_layout/",
""
],
"executable": false
}
},
"origin": "becklyn/gluggi-bundle:3.1@github.com/symfony/recipes-contrib:master",
"is_contrib": true
"ref": "3b26a87dab369e3136baaa870ce1d9c32e2191cc"
}
}
}
+8 -19
View File
@@ -1,20 +1,6 @@
{
"locks": {
"becklyn/javascript-routing": {
"version": "1.0",
"recipe": {
"repo": "1.0",
"branch": "master",
"version": "1.0",
"ref": "ecb8bf9401b0b107af74b50ad521d9ea982edf96"
}
}
},
"manifests": {
"becklyn/javascript-routing": {
"repository": "github.com/symfony/recipes-contrib",
"package": "becklyn/javascript-routing",
"version": "1.0",
"manifest": {
"bundles": {
"Becklyn\\JavaScriptRouting\\BecklynJavaScriptRoutingBundle": [
@@ -27,13 +13,16 @@
},
"files": {
"config/routes/becklyn_javascript_routing.yaml": {
"contents": "_import.becklyn_javascript_routing:\n resource: '@BecklynJavaScriptRoutingBundle/Resources/config/routes.yaml'\n prefix: /_v/routing\n",
"executable": false,
"encoding": ""
"contents": [
"_import.becklyn_javascript_routing:",
" resource: '@BecklynJavaScriptRoutingBundle/Resources/config/routes.yaml'",
" prefix: /_v/routing",
""
],
"executable": false
}
},
"origin": "becklyn/javascript-routing:1.0@github.com/symfony/recipes-contrib:master",
"is_contrib": true
"ref": "ecb8bf9401b0b107af74b50ad521d9ea982edf96"
}
}
}
+8 -19
View File
@@ -1,20 +1,6 @@
{
"locks": {
"becklyn/translations": {
"version": "1.0",
"recipe": {
"repo": "1.0",
"branch": "master",
"version": "1.0",
"ref": "b827e87157a4937728b199c68fddcc0b63632c2f"
}
}
},
"manifests": {
"becklyn/translations": {
"repository": "github.com/symfony/recipes-contrib",
"package": "becklyn/translations",
"version": "1.0",
"manifest": {
"bundles": {
"Becklyn\\Translations\\BecklynTranslationsBundle": [
@@ -27,13 +13,16 @@
},
"files": {
"config/routes/becklyn_translations.yaml": {
"contents": "_import.becklyn_translations:\n resource: '@BecklynTranslationsBundle/Resources/config/routes.yaml'\n prefix: /_v/translations/\n",
"executable": false,
"encoding": ""
"contents": [
"_import.becklyn_translations:",
" resource: '@BecklynTranslationsBundle/Resources/config/routes.yaml'",
" prefix: /_v/translations/",
""
],
"executable": false
}
},
"origin": "becklyn/translations:1.0@github.com/symfony/recipes-contrib:master",
"is_contrib": true
"ref": "b827e87157a4937728b199c68fddcc0b63632c2f"
}
}
}
+8 -19
View File
@@ -1,20 +1,6 @@
{
"locks": {
"beelab/recaptcha2-bundle": {
"version": "2.0",
"recipe": {
"repo": "2.0",
"branch": "master",
"version": "2.0",
"ref": "ad714d23c3c754619d9f2e1bd7b621c0d6185165"
}
}
},
"manifests": {
"beelab/recaptcha2-bundle": {
"repository": "github.com/symfony/recipes-contrib",
"package": "beelab/recaptcha2-bundle",
"version": "2.0",
"manifest": {
"bundles": {
"Beelab\\Recaptcha2Bundle\\BeelabRecaptcha2Bundle": [
@@ -35,13 +21,16 @@
},
"files": {
"config/packages/beelab_recaptcha2.yaml": {
"contents": "beelab_recaptcha2:\n site_key: '%env(APP_RECAPTCHA_SITE_KEY)%'\n secret: '%env(APP_RECAPTCHA_SECRET)%'\n",
"executable": false,
"encoding": ""
"contents": [
"beelab_recaptcha2:",
" site_key: '%env(APP_RECAPTCHA_SITE_KEY)%'",
" secret: '%env(APP_RECAPTCHA_SECRET)%'",
""
],
"executable": false
}
},
"origin": "beelab/recaptcha2-bundle:2.0@github.com/symfony/recipes-contrib:master",
"is_contrib": true
"ref": "ad714d23c3c754619d9f2e1bd7b621c0d6185165"
}
}
}
+61 -22
View File
@@ -1,20 +1,6 @@
{
"locks": {
"beelab/tag-bundle": {
"version": "1.3",
"recipe": {
"repo": "1.3",
"branch": "master",
"version": "1.3",
"ref": "9bd5cf1ad8576a8ad13e317cf8d7b854883cab9e"
}
}
},
"manifests": {
"beelab/tag-bundle": {
"repository": "github.com/symfony/recipes-contrib",
"package": "beelab/tag-bundle",
"version": "1.3",
"manifest": {
"bundles": {
"Beelab\\TagBundle\\BeelabTagBundle": [
@@ -32,18 +18,71 @@
},
"files": {
"src/Entity/Tag.php": {
"contents": "<?php\n\nnamespace App\\Entity;\n\nuse Beelab\\TagBundle\\Tag\\TagInterface;\nuse Doctrine\\ORM\\Mapping as ORM;\n\n/**\n * @ORM\\Table()\n * @ORM\\Entity()\n */\nclass Tag implements TagInterface\n{\n /**\n * @var int\n *\n * @ORM\\Column(type=\"integer\")\n * @ORM\\Id\n * @ORM\\GeneratedValue(strategy=\"AUTO\")\n */\n protected $id;\n\n /**\n * @var string|null\n *\n * @ORM\\Column()\n */\n protected $name;\n\n public function __toString(): string\n {\n return $this->name;\n }\n\n public function getId(): int\n {\n return $this->id;\n }\n\n public function setName(?string $name): void\n {\n $this->name = $name;\n }\n\n public function getName(): ?string\n {\n return $this->name;\n }\n}\n\n",
"executable": false,
"encoding": ""
"contents": [
"<?php",
"",
"namespace App\\Entity;",
"",
"use Beelab\\TagBundle\\Tag\\TagInterface;",
"use Doctrine\\ORM\\Mapping as ORM;",
"",
"/**",
" * @ORM\\Table()",
" * @ORM\\Entity()",
" */",
"class Tag implements TagInterface",
"{",
" /**",
" * @var int",
" *",
" * @ORM\\Column(type=\"integer\")",
" * @ORM\\Id",
" * @ORM\\GeneratedValue(strategy=\"AUTO\")",
" */",
" protected $id;",
"",
" /**",
" * @var string|null",
" *",
" * @ORM\\Column()",
" */",
" protected $name;",
"",
" public function __toString(): string",
" {",
" return $this->name;",
" }",
"",
" public function getId(): int",
" {",
" return $this->id;",
" }",
"",
" public function setName(?string $name): void",
" {",
" $this->name = $name;",
" }",
"",
" public function getName(): ?string",
" {",
" return $this->name;",
" }",
"}",
"",
""
],
"executable": false
},
"config/packages/beelab_tag.yaml": {
"contents": "beelab_tag:\n tag_class: App\\Entity\\Tag\n",
"executable": false,
"encoding": ""
"contents": [
"beelab_tag:",
" tag_class: App\\Entity\\Tag",
""
],
"executable": false
}
},
"origin": "beelab/tag-bundle:1.3@github.com/symfony/recipes-contrib:master",
"is_contrib": true
"ref": "9bd5cf1ad8576a8ad13e317cf8d7b854883cab9e"
}
}
}
+1 -16
View File
@@ -1,20 +1,6 @@
{
"locks": {
"beelab/test-bundle": {
"version": "2.0",
"recipe": {
"repo": "2.0",
"branch": "master",
"version": "2.0",
"ref": "54e66717d8cf2abacb3f90fd8e34561dbb4b313d"
}
}
},
"manifests": {
"beelab/test-bundle": {
"repository": "github.com/symfony/recipes-contrib",
"package": "beelab/test-bundle",
"version": "2.0",
"manifest": {
"bundles": {
"Beelab\\TestBundle\\BeelabTestBundle": [
@@ -23,8 +9,7 @@
}
},
"files": [],
"origin": "beelab/test-bundle:2.0@github.com/symfony/recipes-contrib:master",
"is_contrib": true
"ref": "54e66717d8cf2abacb3f90fd8e34561dbb4b313d"
}
}
}
+14 -19
View File
@@ -1,20 +1,6 @@
{
"locks": {
"biig/domain": {
"version": "1.0",
"recipe": {
"repo": "1.0",
"branch": "master",
"version": "1.0",
"ref": "280d89cd33040967e09b4b7259fcb404adae1c5f"
}
}
},
"manifests": {
"biig/domain": {
"repository": "github.com/symfony/recipes-contrib",
"package": "biig/domain",
"version": "1.0",
"manifest": {
"bundles": {
"Biig\\Component\\Domain\\Integration\\Symfony\\DomainBundle": [
@@ -27,13 +13,22 @@
},
"files": {
"config/packages/biig_domain.yaml": {
"contents": "biig_domain:\n # Learn more about configuration in the bundle configuration reference\n # https://github.com/biig-io/DomainComponent/blob/v1/docs/domain_event_dispatcher.md#configuration-reference\n\n # Post persist events are *not* activated by default, you need to enable the post persist listeners\n persist_listeners:\n # As doctrine supports many connections, you need to enable your connections one by one\n doctrine: ['default']\n\n",
"executable": false,
"encoding": ""
"contents": [
"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']",
"",
""
],
"executable": false
}
},
"origin": "biig/domain:1.0@github.com/symfony/recipes-contrib:master",
"is_contrib": true
"ref": "280d89cd33040967e09b4b7259fcb404adae1c5f"
}
}
}
+35 -25
View File
@@ -1,20 +1,6 @@
{
"locks": {
"birkof/netopia-mobilpay-bundle": {
"version": "1.0",
"recipe": {
"repo": "1.0",
"branch": "master",
"version": "1.0",
"ref": "3753f6a7183e53932a7d28dd77d885db10d1e32c"
}
}
},
"manifests": {
"birkof/netopia-mobilpay-bundle": {
"repository": "github.com/symfony/recipes-contrib",
"package": "birkof/netopia-mobilpay-bundle",
"version": "1.0",
"manifest": {
"bundles": {
"birkof\\NetopiaMobilPay\\NetopiaMobilPayBundle": [
@@ -40,23 +26,47 @@
},
"files": {
"config/netopia_mobilpay/.gitignore": {
"contents": "",
"executable": false,
"encoding": ""
"contents": [
""
],
"executable": false
},
"config/routes/netopia_mobilpay.yaml": {
"contents": "netopia_mobilpay_return_url:\n path: /netopia-mobilpay/thank-you\n methods: GET\n defaults:\n _controller: FrameworkBundle:Redirect:redirect\n route: default\n permanent: true\n\nnetopia_mobilpay_confirm_url:\n path: /netopia-mobilpay/confirm\n methods: POST\n defaults:\n _controller: FrameworkBundle:Redirect:redirect\n route: default\n permanent: true\n\n",
"executable": false,
"encoding": ""
"contents": [
"netopia_mobilpay_return_url:",
" path: /netopia-mobilpay/thank-you",
" methods: GET",
" defaults:",
" _controller: FrameworkBundle:Redirect:redirect",
" route: default",
" permanent: true",
"",
"netopia_mobilpay_confirm_url:",
" path: /netopia-mobilpay/confirm",
" methods: POST",
" defaults:",
" _controller: FrameworkBundle:Redirect:redirect",
" route: default",
" permanent: true",
"",
""
],
"executable": false
},
"config/packages/netopia_mobilpay.yaml": {
"contents": "netopia_mobilpay:\n payment_url: '%env(NETOPIA_MOBILPAY_PAYMENT_URL)%'\n public_cert: '%env(NETOPIA_MOBILPAY_PUBLIC_CERT)%'\n private_key: '%env(NETOPIA_MOBILPAY_PRIVATE_KEY)%'\n signature: '%env(NETOPIA_MOBILPAY_SIGNATURE)%'\n\n",
"executable": false,
"encoding": ""
"contents": [
"netopia_mobilpay:",
" payment_url: '%env(NETOPIA_MOBILPAY_PAYMENT_URL)%'",
" public_cert: '%env(NETOPIA_MOBILPAY_PUBLIC_CERT)%'",
" private_key: '%env(NETOPIA_MOBILPAY_PRIVATE_KEY)%'",
" signature: '%env(NETOPIA_MOBILPAY_SIGNATURE)%'",
"",
""
],
"executable": false
}
},
"origin": "birkof/netopia-mobilpay-bundle:1.0@github.com/symfony/recipes-contrib:master",
"is_contrib": true
"ref": "3753f6a7183e53932a7d28dd77d885db10d1e32c"
}
}
}
+14 -22
View File
@@ -1,20 +1,6 @@
{
"locks": {
"bitbag/shipping-export-plugin": {
"version": "1.0",
"recipe": {
"repo": "1.0",
"branch": "master",
"version": "1.0",
"ref": "4095c0f7a2cc51e0f40e806ad7d3256ef5f42ae2"
}
}
},
"manifests": {
"bitbag/shipping-export-plugin": {
"repository": "github.com/symfony/recipes-contrib",
"package": "bitbag/shipping-export-plugin",
"version": "1.0",
"manifest": {
"bundles": {
"BitBag\\SyliusShippingExportPlugin\\BitBagSyliusShippingExportPlugin": [
@@ -36,18 +22,24 @@
},
"files": {
"config/routes/bitbag_shipping_export_plugin.yaml": {
"contents": "bitbag_shipping_export_plugin:\n resource: \"@BitBagSyliusShippingExportPlugin/Resources/config/routing.yml\"\n prefix: /admin\n",
"executable": false,
"encoding": ""
"contents": [
"bitbag_shipping_export_plugin:",
" resource: \"@BitBagSyliusShippingExportPlugin/Resources/config/routing.yml\"",
" prefix: /admin",
""
],
"executable": false
},
"config/packages/bitbag_shipping_export_plugin.yaml": {
"contents": "imports:\n - { resource: \"@BitBagSyliusShippingExportPlugin/Resources/config/config.yml\" }\n",
"executable": false,
"encoding": ""
"contents": [
"imports:",
" - { resource: \"@BitBagSyliusShippingExportPlugin/Resources/config/config.yml\" }",
""
],
"executable": false
}
},
"origin": "bitbag/shipping-export-plugin:1.0@github.com/symfony/recipes-contrib:master",
"is_contrib": true
"ref": "4095c0f7a2cc51e0f40e806ad7d3256ef5f42ae2"
}
}
}
+15 -22
View File
@@ -1,20 +1,6 @@
{
"locks": {
"boshurik/telegram-bot-bundle": {
"version": "3.1",
"recipe": {
"repo": "3.1",
"branch": "master",
"version": "3.1",
"ref": "0e172664f2f361f8f3932f32cea845f56650dd01"
}
}
},
"manifests": {
"boshurik/telegram-bot-bundle": {
"repository": "github.com/symfony/recipes-contrib",
"package": "boshurik/telegram-bot-bundle",
"version": "3.1",
"manifest": {
"bundles": {
"BoShurik\\TelegramBotBundle\\BoShurikTelegramBotBundle": [
@@ -37,18 +23,25 @@
},
"files": {
"config/routes/boshurik_telegram_bot.yaml": {
"contents": "boshurik_telegram_bot_routing:\n resource: \"@BoShurikTelegramBotBundle/Resources/config/routing.yml\"\n prefix: \"/_telegram/%telegram_route_secret%\"\n",
"executable": false,
"encoding": ""
"contents": [
"boshurik_telegram_bot_routing:",
" resource: \"@BoShurikTelegramBotBundle/Resources/config/routing.yml\"",
" prefix: \"/_telegram/%telegram_route_secret%\"",
""
],
"executable": false
},
"config/packages/boshurik_telegram_bot.yaml": {
"contents": "boshurik_telegram_bot:\n api:\n token: \"%env(TELEGRAM_BOT_TOKEN)%\"\n",
"executable": false,
"encoding": ""
"contents": [
"boshurik_telegram_bot:",
" api:",
" token: \"%env(TELEGRAM_BOT_TOKEN)%\"",
""
],
"executable": false
}
},
"origin": "boshurik/telegram-bot-bundle:3.1@github.com/symfony/recipes-contrib:master",
"is_contrib": true
"ref": "0e172664f2f361f8f3932f32cea845f56650dd01"
}
}
}
+9 -19
View File
@@ -1,20 +1,6 @@
{
"locks": {
"botjaeger/nexmo-bundle": {
"version": "0.5",
"recipe": {
"repo": "0.5",
"branch": "master",
"version": "0.5",
"ref": "4e4625779b88a951a05b32f0bc243869f84d8b84"
}
}
},
"manifests": {
"botjaeger/nexmo-bundle": {
"repository": "github.com/symfony/recipes-contrib",
"package": "botjaeger/nexmo-bundle",
"version": "0.5",
"manifest": {
"bundles": {
"Botjaeger\\NexmoBundle\\BotjaegerNexmoBundle": [
@@ -32,13 +18,17 @@
},
"files": {
"config/packages/botjaeger_nexmo.yaml": {
"contents": "botjaeger_nexmo:\n api_key: \"%env(BOTJAEGER_NEXMO_API_KEY)%\"\n api_secret: \"%env(BOTJAEGER_NEXMO_API_SECRET)%\"\n api_brand: \"%env(BOTJAEGER_NEXMO_API_BRAND)%\"\n",
"executable": false,
"encoding": ""
"contents": [
"botjaeger_nexmo:",
" api_key: \"%env(BOTJAEGER_NEXMO_API_KEY)%\"",
" api_secret: \"%env(BOTJAEGER_NEXMO_API_SECRET)%\"",
" api_brand: \"%env(BOTJAEGER_NEXMO_API_BRAND)%\"",
""
],
"executable": false
}
},
"origin": "botjaeger/nexmo-bundle:0.5@github.com/symfony/recipes-contrib:master",
"is_contrib": true
"ref": "4e4625779b88a951a05b32f0bc243869f84d8b84"
}
}
}
+52 -19
View File
@@ -1,20 +1,6 @@
{
"locks": {
"bref/symfony-bridge": {
"version": "0.1",
"recipe": {
"repo": "0.1",
"branch": "master",
"version": "0.1",
"ref": "073e577186ef96e4f26df1f8a3dc14a48826d364"
}
}
},
"manifests": {
"bref/symfony-bridge": {
"repository": "github.com/symfony/recipes-contrib",
"package": "bref/symfony-bridge",
"version": "0.1",
"manifest": {
"copy-from-recipe": {
"serverless.yaml": "serverless.yml"
@@ -31,13 +17,60 @@
},
"files": {
"serverless.yaml": {
"contents": "# Read the documentation at https://www.serverless.com/framework/docs/providers/aws/guide/serverless.yml/\nservice: symfony\n\nprovider:\n name: aws\n # The AWS region in which to deploy (us-east-1 is the default)\n region: us-east-1\n # The stage of the application, e.g. dev, production, staging\u2026 ('dev' is the default)\n stage: dev\n runtime: provided.al2\n environment:\n # Symfony environment variables\n APP_ENV: prod\n\nplugins:\n - ./vendor/bref/bref\n\nfunctions:\n # This function runs the Symfony website/API\n web:\n handler: public/index.php\n timeout: 28 # in seconds (API Gateway has a timeout of 29 seconds)\n layers:\n - ${bref:layer.php-80-fpm}\n events:\n - httpApi: '*'\n # This function let us run console commands in Lambda\n console:\n handler: bin/console\n timeout: 120 # in seconds\n layers:\n - ${bref:layer.php-80} # PHP\n - ${bref:layer.console} # The \"console\" layer\n\npackage:\n patterns:\n # Excluded files and folders for deployment\n - '!assets/**'\n - '!node_modules/**'\n - '!public/build/**'\n - '!tests/**'\n - '!var/**'\n # If you want to include files and folders that are part of excluded folders,\n # add them at the end\n - 'var/cache/prod/**'\n - 'public/build/entrypoints.json'\n - 'public/build/manifest.json'\n",
"executable": false,
"encoding": ""
"contents": [
"# Read the documentation at https://www.serverless.com/framework/docs/providers/aws/guide/serverless.yml/",
"service: symfony",
"",
"provider:",
" name: aws",
" # The AWS region in which to deploy (us-east-1 is the default)",
" region: us-east-1",
" # The stage of the application, e.g. dev, production, staging\u2026 ('dev' is the default)",
" stage: dev",
" runtime: provided.al2",
" environment:",
" # Symfony environment variables",
" APP_ENV: prod",
"",
"plugins:",
" - ./vendor/bref/bref",
"",
"functions:",
" # This function runs the Symfony website/API",
" web:",
" handler: public/index.php",
" timeout: 28 # in seconds (API Gateway has a timeout of 29 seconds)",
" layers:",
" - ${bref:layer.php-80-fpm}",
" events:",
" - httpApi: '*'",
" # This function let us run console commands in Lambda",
" console:",
" handler: bin/console",
" timeout: 120 # in seconds",
" layers:",
" - ${bref:layer.php-80} # PHP",
" - ${bref:layer.console} # The \"console\" layer",
"",
"package:",
" patterns:",
" # Excluded files and folders for deployment",
" - '!assets/**'",
" - '!node_modules/**'",
" - '!public/build/**'",
" - '!tests/**'",
" - '!var/**'",
" # If you want to include files and folders that are part of excluded folders,",
" # add them at the end",
" - 'var/cache/prod/**'",
" - 'public/build/entrypoints.json'",
" - 'public/build/manifest.json'",
""
],
"executable": false
}
},
"origin": "bref/symfony-bridge:0.1@github.com/symfony/recipes-contrib:master",
"is_contrib": true
"ref": "073e577186ef96e4f26df1f8a3dc14a48826d364"
}
}
}
+32 -19
View File
@@ -1,20 +1,6 @@
{
"locks": {
"broadway/broadway-bundle": {
"version": "0.4",
"recipe": {
"repo": "0.4",
"branch": "master",
"version": "0.4",
"ref": "0601c67ff07896a752e5a72381a22254ff754ea1"
}
}
},
"manifests": {
"broadway/broadway-bundle": {
"repository": "github.com/symfony/recipes-contrib",
"package": "broadway/broadway-bundle",
"version": "0.4",
"manifest": {
"bundles": {
"Broadway\\Bundle\\BroadwayBundle\\BroadwayBundle": [
@@ -27,13 +13,40 @@
},
"files": {
"config/packages/broadway.yaml": {
"contents": "# see https://github.com/broadway/broadway-bundle\n\nbroadway:\n\n # a service definition id implementing Broadway\\EventStore\\EventStore\n event_store: broadway.event_store.in_memory\n\n # a service definition id implementing Broadway\\ReadModel\\RepositoryFactory\n read_model: broadway.read_model.in_memory.repository_factory\n\n # service definition ids implementing Broadway\\Serializer\\Serializer\n serializer:\n payload: broadway.simple_interface_serializer\n readmodel: broadway.simple_interface_serializer\n metadata: broadway.simple_interface_serializer\n\n command_handling:\n dispatch_events: false\n\n # a service definition id implementing Psr\\Log\\LoggerInterface\n logger: null\n\n saga:\n enabled: false\n\n # a service definition id implementing Broadway\\Saga\\State\\RepositoryInterface\n state_repository: broadway.saga.state.in_memory_repository\n",
"executable": false,
"encoding": ""
"contents": [
"# see https://github.com/broadway/broadway-bundle",
"",
"broadway:",
"",
" # a service definition id implementing Broadway\\EventStore\\EventStore",
" event_store: broadway.event_store.in_memory",
"",
" # a service definition id implementing Broadway\\ReadModel\\RepositoryFactory",
" read_model: broadway.read_model.in_memory.repository_factory",
"",
" # service definition ids implementing Broadway\\Serializer\\Serializer",
" serializer:",
" payload: broadway.simple_interface_serializer",
" readmodel: broadway.simple_interface_serializer",
" metadata: broadway.simple_interface_serializer",
"",
" command_handling:",
" dispatch_events: false",
"",
" # a service definition id implementing Psr\\Log\\LoggerInterface",
" logger: null",
"",
" saga:",
" enabled: false",
"",
" # a service definition id implementing Broadway\\Saga\\State\\RepositoryInterface",
" state_repository: broadway.saga.state.in_memory_repository",
""
],
"executable": false
}
},
"origin": "broadway/broadway-bundle:0.4@github.com/symfony/recipes-contrib:master",
"is_contrib": true
"ref": "0601c67ff07896a752e5a72381a22254ff754ea1"
}
}
}
+12 -19
View File
@@ -1,20 +1,6 @@
{
"locks": {
"broadway/event-store-dbal": {
"version": "0.1",
"recipe": {
"repo": "0.1",
"branch": "master",
"version": "0.1",
"ref": "59b36f95fafbf4327a57c2493e02fc57d8c8e6ad"
}
}
},
"manifests": {
"broadway/event-store-dbal": {
"repository": "github.com/symfony/recipes-contrib",
"package": "broadway/event-store-dbal",
"version": "0.1",
"manifest": {
"copy-from-recipe": {
"config/": "%CONFIG_DIR%/"
@@ -22,13 +8,20 @@
},
"files": {
"config/packages/broadway_event_store_dbal.yaml": {
"contents": "broadway:\n event_store:\n dbal:\n enabled: true\n connection: 'default'\n table: 'events'\n use_binary: true\n",
"executable": false,
"encoding": ""
"contents": [
"broadway:",
" event_store:",
" dbal:",
" enabled: true",
" connection: 'default'",
" table: 'events'",
" use_binary: true",
""
],
"executable": false
}
},
"origin": "broadway/event-store-dbal:0.1@github.com/symfony/recipes-contrib:master",
"is_contrib": true
"ref": "59b36f95fafbf4327a57c2493e02fc57d8c8e6ad"
}
}
}
+18 -19
View File
@@ -1,20 +1,6 @@
{
"locks": {
"broadway/event-store-dbal": {
"version": "0.2",
"recipe": {
"repo": "0.2",
"branch": "master",
"version": "0.2",
"ref": "a8e44b60058a2798f65be93037aa1562f4de60eb"
}
}
},
"manifests": {
"broadway/event-store-dbal": {
"repository": "github.com/symfony/recipes-contrib",
"package": "broadway/event-store-dbal",
"version": "0.2",
"manifest": {
"copy-from-recipe": {
"config/": "%CONFIG_DIR%/"
@@ -22,13 +8,26 @@
},
"files": {
"config/packages/broadway_event_store_dbal.yaml": {
"contents": "broadway:\n event_store: broadway.event_store.dbal\n\nservices:\n broadway.event_store.dbal:\n class: Broadway\\EventStore\\Dbal\\DBALEventStore\n arguments:\n - \"@doctrine.dbal.default_connection\"\n - \"@broadway.serializer.payload\"\n - \"@broadway.serializer.metadata\"\n - \"events\"\n - false\n - \"@broadway.uuid.converter\"\n",
"executable": false,
"encoding": ""
"contents": [
"broadway:",
" event_store: broadway.event_store.dbal",
"",
"services:",
" broadway.event_store.dbal:",
" class: Broadway\\EventStore\\Dbal\\DBALEventStore",
" arguments:",
" - \"@doctrine.dbal.default_connection\"",
" - \"@broadway.serializer.payload\"",
" - \"@broadway.serializer.metadata\"",
" - \"events\"",
" - false",
" - \"@broadway.uuid.converter\"",
""
],
"executable": false
}
},
"origin": "broadway/event-store-dbal:0.2@github.com/symfony/recipes-contrib:master",
"is_contrib": true
"ref": "a8e44b60058a2798f65be93037aa1562f4de60eb"
}
}
}
+21 -19
View File
@@ -1,20 +1,6 @@
{
"locks": {
"broadway/event-store-mongodb": {
"version": "0.2",
"recipe": {
"repo": "0.2",
"branch": "master",
"version": "0.2",
"ref": "0c47913c3bd0ddb01d6a9fcebf336ecfea076d92"
}
}
},
"manifests": {
"broadway/event-store-mongodb": {
"repository": "github.com/symfony/recipes-contrib",
"package": "broadway/event-store-mongodb",
"version": "0.2",
"manifest": {
"copy-from-recipe": {
"config/": "%CONFIG_DIR%/"
@@ -30,13 +16,29 @@
},
"files": {
"config/packages/broadway_event_store_mongodb.yaml": {
"contents": "broadway:\n event_store: broadway.event_store.mongodb\n\nservices:\n broadway.event_store.mongodb_client:\n class: MongoDB\\Client\n arguments: ['%mongodb_uri%']\n\n broadway.event_store.mongodb_collection:\n class: MongoDB\\Collection\n factory: ['@broadway.event_store.mongodb_client', selectCollection]\n arguments: ['%mongodb_database%', 'events']\n\n broadway.event_store.mongodb:\n class: Broadway\\EventStore\\MongoDB\\MongoDBEventStore\n arguments: ['@broadway.event_store.mongodb_collection', '@broadway.serializer.payload', '@broadway.serializer.metadata']\n",
"executable": false,
"encoding": ""
"contents": [
"broadway:",
" event_store: broadway.event_store.mongodb",
"",
"services:",
" broadway.event_store.mongodb_client:",
" class: MongoDB\\Client",
" arguments: ['%mongodb_uri%']",
"",
" broadway.event_store.mongodb_collection:",
" class: MongoDB\\Collection",
" factory: ['@broadway.event_store.mongodb_client', selectCollection]",
" arguments: ['%mongodb_database%', 'events']",
"",
" broadway.event_store.mongodb:",
" class: Broadway\\EventStore\\MongoDB\\MongoDBEventStore",
" arguments: ['@broadway.event_store.mongodb_collection', '@broadway.serializer.payload', '@broadway.serializer.metadata']",
""
],
"executable": false
}
},
"origin": "broadway/event-store-mongodb:0.2@github.com/symfony/recipes-contrib:master",
"is_contrib": true
"ref": "0c47913c3bd0ddb01d6a9fcebf336ecfea076d92"
}
}
}
+23 -19
View File
@@ -1,20 +1,6 @@
{
"locks": {
"broadway/read-model-elasticsearch": {
"version": "0.3",
"recipe": {
"repo": "0.3",
"branch": "master",
"version": "0.3",
"ref": "9afaea6bf879d010ff3d10395e2e21e02388462c"
}
}
},
"manifests": {
"broadway/read-model-elasticsearch": {
"repository": "github.com/symfony/recipes-contrib",
"package": "broadway/read-model-elasticsearch",
"version": "0.3",
"manifest": {
"copy-from-recipe": {
"config/": "%CONFIG_DIR%/"
@@ -25,13 +11,31 @@
},
"files": {
"config/packages/broadway_read_model_elasticsearch.yaml": {
"contents": "broadway:\n read_model: broadway.read_model.elasticsearch.repository_factory\n\nservices:\n broadway.elasticsearch.client_factory:\n class: Broadway\\ReadModel\\ElasticSearch\\ElasticSearchClientFactory\n\n broadway.read_model.elasticsearch.repository_factory:\n class: Broadway\\ReadModel\\ElasticSearch\\ElasticSearchRepositoryFactory\n arguments:\n - \"@broadway.elasticsearch.client\"\n - \"@broadway.serializer.readmodel\"\n\n broadway.elasticsearch.client:\n class: Elasticsearch\\Client\n factory: ['@broadway.elasticsearch.client_factory', create]\n arguments:\n - \"%elasticsearch%\"\n",
"executable": false,
"encoding": ""
"contents": [
"broadway:",
" read_model: broadway.read_model.elasticsearch.repository_factory",
"",
"services:",
" broadway.elasticsearch.client_factory:",
" class: Broadway\\ReadModel\\ElasticSearch\\ElasticSearchClientFactory",
"",
" broadway.read_model.elasticsearch.repository_factory:",
" class: Broadway\\ReadModel\\ElasticSearch\\ElasticSearchRepositoryFactory",
" arguments:",
" - \"@broadway.elasticsearch.client\"",
" - \"@broadway.serializer.readmodel\"",
"",
" broadway.elasticsearch.client:",
" class: Elasticsearch\\Client",
" factory: ['@broadway.elasticsearch.client_factory', create]",
" arguments:",
" - \"%elasticsearch%\"",
""
],
"executable": false
}
},
"origin": "broadway/read-model-elasticsearch:0.3@github.com/symfony/recipes-contrib:master",
"is_contrib": true
"ref": "9afaea6bf879d010ff3d10395e2e21e02388462c"
}
}
}
+23 -19
View File
@@ -1,20 +1,6 @@
{
"locks": {
"broadway/read-model-mongodb": {
"version": "0.2",
"recipe": {
"repo": "0.2",
"branch": "master",
"version": "0.2",
"ref": "41d08827ba6eae0d103bccdef8267612fc7b78e1"
}
}
},
"manifests": {
"broadway/read-model-mongodb": {
"repository": "github.com/symfony/recipes-contrib",
"package": "broadway/read-model-mongodb",
"version": "0.2",
"manifest": {
"copy-from-recipe": {
"config/": "%CONFIG_DIR%/"
@@ -30,13 +16,31 @@
},
"files": {
"config/packages/broadway_read_model_mongodb.yaml": {
"contents": "broadway:\n read_model: broadway.read_model.mongodb.repository_factory\n\nservices:\n broadway.read_model.mongodb_client:\n class: MongoDB\\Client\n arguments: ['%mongodb_uri%']\n\n broadway.read_model.mongodb_collection:\n class: MongoDB\\Collection\n factory: ['@broadway.read_model.mongodb_client', selectCollection]\n arguments: ['%mongodb_database%', 'read_models']\n\n broadway.read_model.mongodb.repository_factory:\n class: Broadway\\ReadModel\\MongoDB\\MongoDBRepositoryFactory\n arguments:\n - \"@broadway.read_model.mongodb_collection\"\n - \"@broadway.serializer.readmodel\"\n",
"executable": false,
"encoding": ""
"contents": [
"broadway:",
" read_model: broadway.read_model.mongodb.repository_factory",
"",
"services:",
" broadway.read_model.mongodb_client:",
" class: MongoDB\\Client",
" arguments: ['%mongodb_uri%']",
"",
" broadway.read_model.mongodb_collection:",
" class: MongoDB\\Collection",
" factory: ['@broadway.read_model.mongodb_client', selectCollection]",
" arguments: ['%mongodb_database%', 'read_models']",
"",
" broadway.read_model.mongodb.repository_factory:",
" class: Broadway\\ReadModel\\MongoDB\\MongoDBRepositoryFactory",
" arguments:",
" - \"@broadway.read_model.mongodb_collection\"",
" - \"@broadway.serializer.readmodel\"",
""
],
"executable": false
}
},
"origin": "broadway/read-model-mongodb:0.2@github.com/symfony/recipes-contrib:master",
"is_contrib": true
"ref": "41d08827ba6eae0d103bccdef8267612fc7b78e1"
}
}
}
+8 -19
View File
@@ -1,20 +1,6 @@
{
"locks": {
"bukashk0zzz/filter-bundle": {
"version": "2.0",
"recipe": {
"repo": "2.0",
"branch": "master",
"version": "2.0",
"ref": "0f1035a5f7174f09663157a87f9a0849e85ed369"
}
}
},
"manifests": {
"bukashk0zzz/filter-bundle": {
"repository": "github.com/symfony/recipes-contrib",
"package": "bukashk0zzz/filter-bundle",
"version": "2.0",
"manifest": {
"bundles": {
"Bukashk0zzz\\FilterBundle\\Bukashk0zzzFilterBundle": [
@@ -27,13 +13,16 @@
},
"files": {
"config/packages/bukashk0zzz_filter.yaml": {
"contents": "bukashk0zzz_filter:\n # Enable if you need auto filtering form data before constraint(Validation) check\n auto_filter_forms: false\n",
"executable": false,
"encoding": ""
"contents": [
"bukashk0zzz_filter:",
" # Enable if you need auto filtering form data before constraint(Validation) check",
" auto_filter_forms: false",
""
],
"executable": false
}
},
"origin": "bukashk0zzz/filter-bundle:2.0@github.com/symfony/recipes-contrib:master",
"is_contrib": true
"ref": "0f1035a5f7174f09663157a87f9a0849e85ed369"
}
}
}
@@ -1,20 +1,6 @@
{
"locks": {
"bukashk0zzz/liip-imagine-serialization-bundle": {
"version": "2.0",
"recipe": {
"repo": "2.0",
"branch": "master",
"version": "2.0",
"ref": "2e99dff254583c4fec409c7b98a267501fd4e27c"
}
}
},
"manifests": {
"bukashk0zzz/liip-imagine-serialization-bundle": {
"repository": "github.com/symfony/recipes-contrib",
"package": "bukashk0zzz/liip-imagine-serialization-bundle",
"version": "2.0",
"manifest": {
"bundles": {
"Bukashk0zzz\\LiipImagineSerializationBundle\\Bukashk0zzzLiipImagineSerializationBundle": [
@@ -27,13 +13,19 @@
},
"files": {
"config/packages/bukashk0zzz_liip_imagine_serialization.yaml": {
"contents": "bukashk0zzz_liip_imagine_serialization:\n # Set true for generating url for vichUploader fields\n vichUploaderSerialize: false\n\n # Set true for adding original field value to object\n includeOriginal: false\n",
"executable": false,
"encoding": ""
"contents": [
"bukashk0zzz_liip_imagine_serialization:",
" # Set true for generating url for vichUploader fields",
" vichUploaderSerialize: false",
"",
" # Set true for adding original field value to object",
" includeOriginal: false",
""
],
"executable": false
}
},
"origin": "bukashk0zzz/liip-imagine-serialization-bundle:2.0@github.com/symfony/recipes-contrib:master",
"is_contrib": true
"ref": "2e99dff254583c4fec409c7b98a267501fd4e27c"
}
}
}
+9 -19
View File
@@ -1,20 +1,6 @@
{
"locks": {
"cache/adapter-bundle": {
"version": "1.1",
"recipe": {
"repo": "1.1",
"branch": "master",
"version": "1.1",
"ref": "808d9142e173dfca88ef8b9aa72a7431d63caf27"
}
}
},
"manifests": {
"cache/adapter-bundle": {
"repository": "github.com/symfony/recipes-contrib",
"package": "cache/adapter-bundle",
"version": "1.1",
"manifest": {
"bundles": {
"Cache\\AdapterBundle\\CacheAdapterBundle": [
@@ -30,13 +16,17 @@
},
"files": {
"config/packages/cache_adapter.yaml": {
"contents": "cache_adapter:\n providers:\n default:\n factory: cache.factory.array\n",
"executable": false,
"encoding": ""
"contents": [
"cache_adapter:",
" providers:",
" default:",
" factory: cache.factory.array",
""
],
"executable": false
}
},
"origin": "cache/adapter-bundle:1.1@github.com/symfony/recipes-contrib:master",
"is_contrib": true
"ref": "808d9142e173dfca88ef8b9aa72a7431d63caf27"
}
}
}
+19 -19
View File
@@ -1,20 +1,6 @@
{
"locks": {
"cache/cache-bundle": {
"version": "1.0",
"recipe": {
"repo": "1.0",
"branch": "master",
"version": "1.0",
"ref": "817d06a0a3bea320ef72beb249285c7988ee9566"
}
}
},
"manifests": {
"cache/cache-bundle": {
"repository": "github.com/symfony/recipes-contrib",
"package": "cache/cache-bundle",
"version": "1.0",
"manifest": {
"bundles": {
"Cache\\CacheBundle\\CacheBundle": [
@@ -31,13 +17,27 @@
},
"files": {
"config/packages/cache.yaml": {
"contents": "cache:\n session:\n enabled: \"%env(bool:SESSION_CACHE_ENABLED)%\"\n service_id: \"cache.provider.default\"\n use_tagging: true\n ttl: 7200\n router:\n enabled: \"%env(bool:ROUTER_CACHE_ENABLED)%\"\n service_id: \"cache.provider.default\"\n ttl: 86400\n logging:\n enabled: \"%env(bool:APP_DEBUG)%\"\n logger: \"logger\"\n level: \"info\"\n",
"executable": false,
"encoding": ""
"contents": [
"cache:",
" session:",
" enabled: \"%env(bool:SESSION_CACHE_ENABLED)%\"",
" service_id: \"cache.provider.default\"",
" use_tagging: true",
" ttl: 7200",
" router:",
" enabled: \"%env(bool:ROUTER_CACHE_ENABLED)%\"",
" service_id: \"cache.provider.default\"",
" ttl: 86400",
" logging:",
" enabled: \"%env(bool:APP_DEBUG)%\"",
" logger: \"logger\"",
" level: \"info\"",
""
],
"executable": false
}
},
"origin": "cache/cache-bundle:1.0@github.com/symfony/recipes-contrib:master",
"is_contrib": true
"ref": "817d06a0a3bea320ef72beb249285c7988ee9566"
}
}
}
+13 -19
View File
@@ -1,20 +1,6 @@
{
"locks": {
"ckrack/optimus-bundle": {
"version": "0.1",
"recipe": {
"repo": "0.1",
"branch": "master",
"version": "0.1",
"ref": "dc65a1523edeec7cbf073af3814a5ae0dbc954a7"
}
}
},
"manifests": {
"ckrack/optimus-bundle": {
"repository": "github.com/symfony/recipes-contrib",
"package": "ckrack/optimus-bundle",
"version": "0.1",
"manifest": {
"bundles": {
"Ckrack\\OptimusBundle\\CkrackOptimusBundle": [
@@ -40,13 +26,21 @@
},
"files": {
"config/packages/ckrack_optimus.yaml": {
"contents": "ckrack_optimus:\n # Set options, as documented at https://github.com/jenssegers/optimus#usage\n prime: \"%env(int:OPTIMUS_PRIME)%\"\n inverse: \"%env(int:OPTIMUS_INVERSE)%\"\n random: \"%env(int:OPTIMUS_RANDOM)%\"\n\n # if set to true, param converter will continue with the next available param converters\n passthrough: true\n",
"executable": false,
"encoding": ""
"contents": [
"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",
""
],
"executable": false
}
},
"origin": "ckrack/optimus-bundle:0.1@github.com/symfony/recipes-contrib:master",
"is_contrib": true
"ref": "dc65a1523edeec7cbf073af3814a5ae0dbc954a7"
}
}
}
+10 -19
View File
@@ -1,20 +1,6 @@
{
"locks": {
"codebuds/mattermost-publication-bundle": {
"version": "0.3",
"recipe": {
"repo": "0.3",
"branch": "master",
"version": "0.3",
"ref": "58f0ed3809bec1377c9300348997777fcc4f6d94"
}
}
},
"manifests": {
"codebuds/mattermost-publication-bundle": {
"repository": "github.com/symfony/recipes-contrib",
"package": "codebuds/mattermost-publication-bundle",
"version": "0.3",
"manifest": {
"bundles": {
"CodeBuds\\MattermostPublicationBundle\\MattermostPublicationBundle": [
@@ -30,13 +16,18 @@
},
"files": {
"config/packages/mattermost_publication.yaml": {
"contents": "mattermost_publication:\n webhook_url: '%env(MATTERMOST_WEBHOOK_URL)%'\n # You can also set the default channel, username and icon_url\n # for more information you can checkout the bundle documentation\n # https://github.com/codebuds33/mattermost-publication-bundle/blob/master/README.md\n",
"executable": false,
"encoding": ""
"contents": [
"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",
""
],
"executable": false
}
},
"origin": "codebuds/mattermost-publication-bundle:0.3@github.com/symfony/recipes-contrib:master",
"is_contrib": true
"ref": "58f0ed3809bec1377c9300348997777fcc4f6d94"
}
}
}
+228 -64
View File
@@ -1,20 +1,6 @@
{
"locks": {
"codeception/codeception": {
"version": "2.3",
"recipe": {
"repo": "2.3",
"branch": "master",
"version": "2.3",
"ref": "30798e46831f4fc641fca83c0423918518901cd7"
}
}
},
"manifests": {
"codeception/codeception": {
"repository": "github.com/symfony/recipes-contrib",
"package": "codeception/codeception",
"version": "2.3",
"manifest": {
"copy-from-recipe": {
"codeception.yml": "codeception.yml",
@@ -39,88 +25,266 @@
},
"files": {
"codeception.yml": {
"contents": "namespace: App\\Tests\npaths:\n tests: tests\n output: tests/_output\n data: tests/_data\n support: tests/_support\n envs: tests/_envs\nactor_suffix: Tester\nextensions:\n enabled:\n - Codeception\\Extension\\RunFailed\nparams:\n - .env\n",
"executable": false,
"encoding": ""
"contents": [
"namespace: App\\Tests",
"paths:",
" tests: tests",
" output: tests/_output",
" data: tests/_data",
" support: tests/_support",
" envs: tests/_envs",
"actor_suffix: Tester",
"extensions:",
" enabled:",
" - Codeception\\Extension\\RunFailed",
"params:",
" - .env",
""
],
"executable": false
},
"tests/unit/.gitignore": {
"contents": "",
"executable": false,
"encoding": ""
"contents": [
""
],
"executable": false
},
"tests/_output/.gitignore": {
"contents": "*\n!.gitignore\n",
"executable": false,
"encoding": ""
"contents": [
"*",
"!.gitignore",
""
],
"executable": false
},
"tests/_data/.gitignore": {
"contents": "",
"executable": false,
"encoding": ""
"contents": [
""
],
"executable": false
},
"tests/unit.suite.yml": {
"contents": "# Codeception Test Suite Configuration\n#\n# Suite for unit or integration tests.\n\nactor: UnitTester\nmodules:\n enabled:\n - Asserts\n - \\App\\Tests\\Helper\\Unit\n",
"executable": false,
"encoding": ""
"contents": [
"# Codeception Test Suite Configuration",
"#",
"# Suite for unit or integration tests.",
"",
"actor: UnitTester",
"modules:",
" enabled:",
" - Asserts",
" - \\App\\Tests\\Helper\\Unit",
""
],
"executable": false
},
"tests/functional/.gitignore": {
"contents": "",
"executable": false,
"encoding": ""
"contents": [
""
],
"executable": false
},
"tests/functional.suite.yml": {
"contents": "# Codeception Test Suite Configuration\n#\n# Suite for functional tests\n# Emulate web requests and make application process them\n# Include one of framework modules (Symfony2, Yii2, Laravel5) to use it\n# Remove this suite if you don't use frameworks\n\nactor: FunctionalTester\nmodules:\n enabled:\n - Symfony:\n app_path: 'src'\n environment: 'test'\n# - Doctrine2:\n# depends: Symfony\n# cleanup: true\n - \\App\\Tests\\Helper\\Functional\n",
"executable": false,
"encoding": ""
"contents": [
"# Codeception Test Suite Configuration",
"#",
"# Suite for functional tests",
"# Emulate web requests and make application process them",
"# Include one of framework modules (Symfony2, Yii2, Laravel5) to use it",
"# Remove this suite if you don't use frameworks",
"",
"actor: FunctionalTester",
"modules:",
" enabled:",
" - Symfony:",
" app_path: 'src'",
" environment: 'test'",
"# - Doctrine2:",
"# depends: Symfony",
"# cleanup: true",
" - \\App\\Tests\\Helper\\Functional",
""
],
"executable": false
},
"tests/acceptance.suite.yml": {
"contents": "# Codeception Test Suite Configuration\n#\n# Suite for acceptance tests.\n# Perform tests in browser using the WebDriver or PhpBrowser.\n# If you need both WebDriver and PHPBrowser tests - create a separate suite.\n\nactor: AcceptanceTester\nmodules:\n enabled:\n - PhpBrowser:\n url: http://localhost:8000\n - \\App\\Tests\\Helper\\Acceptance\n",
"executable": false,
"encoding": ""
"contents": [
"# Codeception Test Suite Configuration",
"#",
"# Suite for acceptance tests.",
"# Perform tests in browser using the WebDriver or PhpBrowser.",
"# If you need both WebDriver and PHPBrowser tests - create a separate suite.",
"",
"actor: AcceptanceTester",
"modules:",
" enabled:",
" - PhpBrowser:",
" url: http://localhost:8000",
" - \\App\\Tests\\Helper\\Acceptance",
""
],
"executable": false
},
"tests/acceptance/.gitignore": {
"contents": "",
"executable": false,
"encoding": ""
"contents": [
""
],
"executable": false
},
"tests/_support/_generated/.gitignore": {
"contents": "*\n!.gitignore\n",
"executable": false,
"encoding": ""
"contents": [
"*",
"!.gitignore",
""
],
"executable": false
},
"tests/_support/AcceptanceTester.php": {
"contents": "<?php\nnamespace App\\Tests;\n\n/**\n * Inherited Methods\n * @method void wantToTest($text)\n * @method void wantTo($text)\n * @method void execute($callable)\n * @method void expectTo($prediction)\n * @method void expect($prediction)\n * @method void amGoingTo($argumentation)\n * @method void am($role)\n * @method void lookForwardTo($achieveValue)\n * @method void comment($description)\n * @method \\Codeception\\Lib\\Friend haveFriend($name, $actorClass = NULL)\n *\n * @SuppressWarnings(PHPMD)\n*/\nclass AcceptanceTester extends \\Codeception\\Actor\n{\n use _generated\\AcceptanceTesterActions;\n\n /**\n * Define custom actions here\n */\n}\n",
"executable": false,
"encoding": ""
"contents": [
"<?php",
"namespace App\\Tests;",
"",
"/**",
" * Inherited Methods",
" * @method void wantToTest($text)",
" * @method void wantTo($text)",
" * @method void execute($callable)",
" * @method void expectTo($prediction)",
" * @method void expect($prediction)",
" * @method void amGoingTo($argumentation)",
" * @method void am($role)",
" * @method void lookForwardTo($achieveValue)",
" * @method void comment($description)",
" * @method \\Codeception\\Lib\\Friend haveFriend($name, $actorClass = NULL)",
" *",
" * @SuppressWarnings(PHPMD)",
"*/",
"class AcceptanceTester extends \\Codeception\\Actor",
"{",
" use _generated\\AcceptanceTesterActions;",
"",
" /**",
" * Define custom actions here",
" */",
"}",
""
],
"executable": false
},
"tests/_support/FunctionalTester.php": {
"contents": "<?php\nnamespace App\\Tests;\n\n/**\n * Inherited Methods\n * @method void wantToTest($text)\n * @method void wantTo($text)\n * @method void execute($callable)\n * @method void expectTo($prediction)\n * @method void expect($prediction)\n * @method void amGoingTo($argumentation)\n * @method void am($role)\n * @method void lookForwardTo($achieveValue)\n * @method void comment($description)\n * @method \\Codeception\\Lib\\Friend haveFriend($name, $actorClass = NULL)\n *\n * @SuppressWarnings(PHPMD)\n*/\nclass FunctionalTester extends \\Codeception\\Actor\n{\n use _generated\\FunctionalTesterActions;\n\n /**\n * Define custom actions here\n */\n}\n",
"executable": false,
"encoding": ""
"contents": [
"<?php",
"namespace App\\Tests;",
"",
"/**",
" * Inherited Methods",
" * @method void wantToTest($text)",
" * @method void wantTo($text)",
" * @method void execute($callable)",
" * @method void expectTo($prediction)",
" * @method void expect($prediction)",
" * @method void amGoingTo($argumentation)",
" * @method void am($role)",
" * @method void lookForwardTo($achieveValue)",
" * @method void comment($description)",
" * @method \\Codeception\\Lib\\Friend haveFriend($name, $actorClass = NULL)",
" *",
" * @SuppressWarnings(PHPMD)",
"*/",
"class FunctionalTester extends \\Codeception\\Actor",
"{",
" use _generated\\FunctionalTesterActions;",
"",
" /**",
" * Define custom actions here",
" */",
"}",
""
],
"executable": false
},
"tests/_support/UnitTester.php": {
"contents": "<?php\nnamespace App\\Tests;\n\n/**\n * Inherited Methods\n * @method void wantToTest($text)\n * @method void wantTo($text)\n * @method void execute($callable)\n * @method void expectTo($prediction)\n * @method void expect($prediction)\n * @method void amGoingTo($argumentation)\n * @method void am($role)\n * @method void lookForwardTo($achieveValue)\n * @method void comment($description)\n * @method \\Codeception\\Lib\\Friend haveFriend($name, $actorClass = NULL)\n *\n * @SuppressWarnings(PHPMD)\n*/\nclass UnitTester extends \\Codeception\\Actor\n{\n use _generated\\UnitTesterActions;\n\n /**\n * Define custom actions here\n */\n}\n",
"executable": false,
"encoding": ""
"contents": [
"<?php",
"namespace App\\Tests;",
"",
"/**",
" * Inherited Methods",
" * @method void wantToTest($text)",
" * @method void wantTo($text)",
" * @method void execute($callable)",
" * @method void expectTo($prediction)",
" * @method void expect($prediction)",
" * @method void amGoingTo($argumentation)",
" * @method void am($role)",
" * @method void lookForwardTo($achieveValue)",
" * @method void comment($description)",
" * @method \\Codeception\\Lib\\Friend haveFriend($name, $actorClass = NULL)",
" *",
" * @SuppressWarnings(PHPMD)",
"*/",
"class UnitTester extends \\Codeception\\Actor",
"{",
" use _generated\\UnitTesterActions;",
"",
" /**",
" * Define custom actions here",
" */",
"}",
""
],
"executable": false
},
"tests/_support/Helper/Functional.php": {
"contents": "<?php\nnamespace App\\Tests\\Helper;\n\n// here you can define custom actions\n// all public methods declared in helper class will be available in $I\n\nclass Functional extends \\Codeception\\Module\n{\n\n}\n",
"executable": false,
"encoding": ""
"contents": [
"<?php",
"namespace App\\Tests\\Helper;",
"",
"// here you can define custom actions",
"// all public methods declared in helper class will be available in $I",
"",
"class Functional extends \\Codeception\\Module",
"{",
"",
"}",
""
],
"executable": false
},
"tests/_support/Helper/Acceptance.php": {
"contents": "<?php\nnamespace App\\Tests\\Helper;\n\n// here you can define custom actions\n// all public methods declared in helper class will be available in $I\n\nclass Acceptance extends \\Codeception\\Module\n{\n\n}\n",
"executable": false,
"encoding": ""
"contents": [
"<?php",
"namespace App\\Tests\\Helper;",
"",
"// here you can define custom actions",
"// all public methods declared in helper class will be available in $I",
"",
"class Acceptance extends \\Codeception\\Module",
"{",
"",
"}",
""
],
"executable": false
},
"tests/_support/Helper/Unit.php": {
"contents": "<?php\nnamespace App\\Tests\\Helper;\n\n// here you can define custom actions\n// all public methods declared in helper class will be available in $I\n\nclass Unit extends \\Codeception\\Module\n{\n\n}\n",
"executable": false,
"encoding": ""
"contents": [
"<?php",
"namespace App\\Tests\\Helper;",
"",
"// here you can define custom actions",
"// all public methods declared in helper class will be available in $I",
"",
"class Unit extends \\Codeception\\Module",
"{",
"",
"}",
""
],
"executable": false
}
},
"origin": "codeception/codeception:2.3@github.com/symfony/recipes-contrib:master",
"is_contrib": true
"ref": "30798e46831f4fc641fca83c0423918518901cd7"
}
}
}
+19 -19
View File
@@ -1,20 +1,6 @@
{
"locks": {
"coka/api-bundle": {
"version": "3.0",
"recipe": {
"repo": "3.0",
"branch": "master",
"version": "3.0",
"ref": "90f3023c0dd1b2c21d537a4ab4b1384431671cfa"
}
}
},
"manifests": {
"coka/api-bundle": {
"repository": "github.com/symfony/recipes-contrib",
"package": "coka/api-bundle",
"version": "3.0",
"manifest": {
"bundles": {
"Oka\\ApiBundle\\OkaApiBundle": [
@@ -27,13 +13,27 @@
},
"files": {
"config/packages/oka_api.yaml": {
"contents": "oka_api:\n cors:\n default:\n allow_credentials: true\n expose_headers: ['Accept-Encoding']\n max_age: 3600\n firewalls:\n wsse:\n enabled: false\n security_behaviors:\n password_updater: false\n response:\n compression:\n enabled: false\n",
"executable": false,
"encoding": ""
"contents": [
"oka_api:",
" cors:",
" default:",
" allow_credentials: true",
" expose_headers: ['Accept-Encoding']",
" max_age: 3600",
" firewalls:",
" wsse:",
" enabled: false",
" security_behaviors:",
" password_updater: false",
" response:",
" compression:",
" enabled: false",
""
],
"executable": false
}
},
"origin": "coka/api-bundle:3.0@github.com/symfony/recipes-contrib:master",
"is_contrib": true
"ref": "90f3023c0dd1b2c21d537a4ab4b1384431671cfa"
}
}
}
+11 -19
View File
@@ -1,20 +1,6 @@
{
"locks": {
"coka/api-bundle": {
"version": "4.0",
"recipe": {
"repo": "4.0",
"branch": "master",
"version": "4.0",
"ref": "91d4f774e70ccb7fe9c9a954a107cba0c8d0c6cc"
}
}
},
"manifests": {
"coka/api-bundle": {
"repository": "github.com/symfony/recipes-contrib",
"package": "coka/api-bundle",
"version": "4.0",
"manifest": {
"bundles": {
"Oka\\ApiBundle\\OkaApiBundle": [
@@ -27,13 +13,19 @@
},
"files": {
"config/packages/oka_api.yaml": {
"contents": "oka_api:\n cors:\n default:\n allow_credentials: true\n expose_headers: ['Accept-Encoding']\n max_age: 3600\n",
"executable": false,
"encoding": ""
"contents": [
"oka_api:",
" cors:",
" default:",
" allow_credentials: true",
" expose_headers: ['Accept-Encoding']",
" max_age: 3600",
""
],
"executable": false
}
},
"origin": "coka/api-bundle:4.0@github.com/symfony/recipes-contrib:master",
"is_contrib": true
"ref": "91d4f774e70ccb7fe9c9a954a107cba0c8d0c6cc"
}
}
}
+9 -19
View File
@@ -1,20 +1,6 @@
{
"locks": {
"coka/cors-bundle": {
"version": "1.0",
"recipe": {
"repo": "1.0",
"branch": "master",
"version": "1.0",
"ref": "d95bf28f73dae46873449853b463d9261401b091"
}
}
},
"manifests": {
"coka/cors-bundle": {
"repository": "github.com/symfony/recipes-contrib",
"package": "coka/cors-bundle",
"version": "1.0",
"manifest": {
"bundles": {
"Oka\\CORSBundle\\OkaCORSBundle": [
@@ -27,13 +13,17 @@
},
"files": {
"config/packages/oka_cors.yaml": {
"contents": "oka_cors:\n default:\n expose_headers: ['Accept-Encoding']\n max_age: 3600\n",
"executable": false,
"encoding": ""
"contents": [
"oka_cors:",
" default:",
" expose_headers: ['Accept-Encoding']",
" max_age: 3600",
""
],
"executable": false
}
},
"origin": "coka/cors-bundle:1.0@github.com/symfony/recipes-contrib:master",
"is_contrib": true
"ref": "d95bf28f73dae46873449853b463d9261401b091"
}
}
}
+11 -19
View File
@@ -1,20 +1,6 @@
{
"locks": {
"coka/file-bundle": {
"version": "3.0",
"recipe": {
"repo": "3.0",
"branch": "master",
"version": "3.0",
"ref": "1059eecc938bf1db6630edc8b2355c64032f2153"
}
}
},
"manifests": {
"coka/file-bundle": {
"repository": "github.com/symfony/recipes-contrib",
"package": "coka/file-bundle",
"version": "3.0",
"manifest": {
"bundles": {
"Oka\\FileBundle\\OkaFileBundle": [
@@ -31,13 +17,19 @@
},
"files": {
"config/packages/oka_file.yaml": {
"contents": "oka_file:\n db_driver: orm\n storage:\n root_path: '%env(resolve:OKAFILE_STORAGE_ROOT_PATH)%'\n webserver:\n host: '%env(resolve:OKAFILE_STORAGE_WEB_SERVER_HOST)%'\n",
"executable": false,
"encoding": ""
"contents": [
"oka_file:",
" db_driver: orm",
" storage:",
" root_path: '%env(resolve:OKAFILE_STORAGE_ROOT_PATH)%'",
" webserver:",
" host: '%env(resolve:OKAFILE_STORAGE_WEB_SERVER_HOST)%'",
""
],
"executable": false
}
},
"origin": "coka/file-bundle:3.0@github.com/symfony/recipes-contrib:master",
"is_contrib": true
"ref": "1059eecc938bf1db6630edc8b2355c64032f2153"
}
}
}
+9 -19
View File
@@ -1,20 +1,6 @@
{
"locks": {
"coka/pagination-bundle": {
"version": "3.0",
"recipe": {
"repo": "3.0",
"branch": "master",
"version": "3.0",
"ref": "9341636f08baec071f5c9f03fe5819446cae325b"
}
}
},
"manifests": {
"coka/pagination-bundle": {
"repository": "github.com/symfony/recipes-contrib",
"package": "coka/pagination-bundle",
"version": "3.0",
"manifest": {
"bundles": {
"Oka\\PaginationBundle\\OkaPaginationBundle": [
@@ -27,13 +13,17 @@
},
"files": {
"config/packages/oka_pagination.yaml": {
"contents": "oka_pagination:\n db_driver: orm\n twig:\n enable_extension: false\n",
"executable": false,
"encoding": ""
"contents": [
"oka_pagination:",
" db_driver: orm",
" twig:",
" enable_extension: false",
""
],
"executable": false
}
},
"origin": "coka/pagination-bundle:3.0@github.com/symfony/recipes-contrib:master",
"is_contrib": true
"ref": "9341636f08baec071f5c9f03fe5819446cae325b"
}
}
}
+9 -19
View File
@@ -1,20 +1,6 @@
{
"locks": {
"coka/pagination-bundle": {
"version": "5.0",
"recipe": {
"repo": "5.0",
"branch": "master",
"version": "5.0",
"ref": "f9f9e005da632a270bf5eb3bdafad7b26754deff"
}
}
},
"manifests": {
"coka/pagination-bundle": {
"repository": "github.com/symfony/recipes-contrib",
"package": "coka/pagination-bundle",
"version": "5.0",
"manifest": {
"bundles": {
"Oka\\PaginationBundle\\OkaPaginationBundle": [
@@ -27,13 +13,17 @@
},
"files": {
"config/packages/oka_pagination.yaml": {
"contents": "oka_pagination:\n db_driver: orm\n twig:\n enabled: false\n",
"executable": false,
"encoding": ""
"contents": [
"oka_pagination:",
" db_driver: orm",
" twig:",
" enabled: false",
""
],
"executable": false
}
},
"origin": "coka/pagination-bundle:5.0@github.com/symfony/recipes-contrib:master",
"is_contrib": true
"ref": "f9f9e005da632a270bf5eb3bdafad7b26754deff"
}
}
}
+8 -19
View File
@@ -1,20 +1,6 @@
{
"locks": {
"coka/rate-limit-bundle": {
"version": "1.0",
"recipe": {
"repo": "1.0",
"branch": "master",
"version": "1.0",
"ref": "07f99f106ba54b58e53df51b634f577f4183bb60"
}
}
},
"manifests": {
"coka/rate-limit-bundle": {
"repository": "github.com/symfony/recipes-contrib",
"package": "coka/rate-limit-bundle",
"version": "1.0",
"manifest": {
"bundles": {
"Oka\\RateLimitBundle\\OkaRateLimitBundle": [
@@ -27,13 +13,16 @@
},
"files": {
"config/packages/oka_rate_limit.yaml": {
"contents": "oka_rate_limit:\n configs:\n - {path: ''}\n",
"executable": false,
"encoding": ""
"contents": [
"oka_rate_limit:",
" configs:",
" - {path: ''}",
""
],
"executable": false
}
},
"origin": "coka/rate-limit-bundle:1.0@github.com/symfony/recipes-contrib:master",
"is_contrib": true
"ref": "07f99f106ba54b58e53df51b634f577f4183bb60"
}
}
}
+8 -19
View File
@@ -1,20 +1,6 @@
{
"locks": {
"coka/rest-request-validator-bundle": {
"version": "1.0",
"recipe": {
"repo": "1.0",
"branch": "master",
"version": "1.0",
"ref": "42ae8a552909a4048bd94ea39d245c0b677c97db"
}
}
},
"manifests": {
"coka/rest-request-validator-bundle": {
"repository": "github.com/symfony/recipes-contrib",
"package": "coka/rest-request-validator-bundle",
"version": "1.0",
"manifest": {
"bundles": {
"Oka\\RESTRequestValidatorBundle\\OkaRESTRequestValidatorBundle": [
@@ -27,13 +13,16 @@
},
"files": {
"config/packages/oka_rest_request_validator.yaml": {
"contents": "oka_rest_request_validator:\n exception:\n enabled: true\n",
"executable": false,
"encoding": ""
"contents": [
"oka_rest_request_validator:",
" exception:",
" enabled: true",
""
],
"executable": false
}
},
"origin": "coka/rest-request-validator-bundle:1.0@github.com/symfony/recipes-contrib:master",
"is_contrib": true
"ref": "42ae8a552909a4048bd94ea39d245c0b677c97db"
}
}
}
+9 -19
View File
@@ -1,20 +1,6 @@
{
"locks": {
"coka/wsse-authentication-bundle": {
"version": "1.0",
"recipe": {
"repo": "1.0",
"branch": "master",
"version": "1.0",
"ref": "5c503cdc83831927c4ac04564fc1b37dcae78713"
}
}
},
"manifests": {
"coka/wsse-authentication-bundle": {
"repository": "github.com/symfony/recipes-contrib",
"package": "coka/wsse-authentication-bundle",
"version": "1.0",
"manifest": {
"bundles": {
"Oka\\WSSEAuthenticationBundle\\OkaWSSEAuthenticationBundle": [
@@ -27,13 +13,17 @@
},
"files": {
"config/packages/oka_wsse_authentication.yaml": {
"contents": "oka_wsse_authentication:\n db_driver: orm\n nonce:\n save_path: '%kernel.cache_dir%/oka_wsse/nonces'\n",
"executable": false,
"encoding": ""
"contents": [
"oka_wsse_authentication:",
" db_driver: orm",
" nonce:",
" save_path: '%kernel.cache_dir%/oka_wsse/nonces'",
""
],
"executable": false
}
},
"origin": "coka/wsse-authentication-bundle:1.0@github.com/symfony/recipes-contrib:master",
"is_contrib": true
"ref": "5c503cdc83831927c4ac04564fc1b37dcae78713"
}
}
}
+16 -19
View File
@@ -1,20 +1,6 @@
{
"locks": {
"commercetools/symfony-bundle": {
"version": "0.4",
"recipe": {
"repo": "0.4",
"branch": "master",
"version": "0.4",
"ref": "6bc24cf7e057c8ff6b1631eae1404ba928b893c3"
}
}
},
"manifests": {
"commercetools/symfony-bundle": {
"repository": "github.com/symfony/recipes-contrib",
"package": "commercetools/symfony-bundle",
"version": "0.4",
"manifest": {
"bundles": {
"Commercetools\\Symfony\\CtpBundle\\CtpBundle": [
@@ -49,13 +35,24 @@
},
"files": {
"config/packages/commercetools.yaml": {
"contents": "commercetools:\n api:\n default_client: 'default'\n clients:\n default:\n client_id: '%env(CTP_CLIENT_ID)%'\n client_secret: '%env(CTP_CLIENT_SECRET)%'\n project: '%env(CTP_PROJECT_KEY)%'\n scope: '%env(CTP_SCOPES)%'\n oauth_url: '%env(CTP_AUTH_URL)%'\n api_url: '%env(CTP_API_URL)%'\n",
"executable": false,
"encoding": ""
"contents": [
"commercetools:",
" api:",
" default_client: 'default'",
" clients:",
" default:",
" client_id: '%env(CTP_CLIENT_ID)%'",
" client_secret: '%env(CTP_CLIENT_SECRET)%'",
" project: '%env(CTP_PROJECT_KEY)%'",
" scope: '%env(CTP_SCOPES)%'",
" oauth_url: '%env(CTP_AUTH_URL)%'",
" api_url: '%env(CTP_API_URL)%'",
""
],
"executable": false
}
},
"origin": "commercetools/symfony-bundle:0.4@github.com/symfony/recipes-contrib:master",
"is_contrib": true
"ref": "6bc24cf7e057c8ff6b1631eae1404ba928b893c3"
}
}
}
@@ -1,20 +1,6 @@
{
"locks": {
"comsave/salesforce-outbound-message-bundle": {
"version": "0.3",
"recipe": {
"repo": "0.3",
"branch": "master",
"version": "0.3",
"ref": "3d89607e2bafbfe4bb0ba0ea6f43f9b02aa6fa58"
}
}
},
"manifests": {
"comsave/salesforce-outbound-message-bundle": {
"repository": "github.com/symfony/recipes-contrib",
"package": "comsave/salesforce-outbound-message-bundle",
"version": "0.3",
"manifest": {
"bundles": {
"Comsave\\SalesforceOutboundMessageBundle\\ComsaveSalesforceOutboundMessageBundle": [
@@ -31,13 +17,20 @@
},
"files": {
"config/comsave_outbound_message.yaml": {
"contents": "comsave_salesforce_outbound_message:\n wsdl_directory: 'src/Company/Resources/wsdl'\n document_paths:\n Account:\n path: 'src/Company/Document/Account'\n Product2:\n path: 'src/Company/Document/Product2'\n",
"executable": false,
"encoding": ""
"contents": [
"comsave_salesforce_outbound_message:",
" wsdl_directory: 'src/Company/Resources/wsdl'",
" document_paths:",
" Account:",
" path: 'src/Company/Document/Account'",
" Product2:",
" path: 'src/Company/Document/Product2'",
""
],
"executable": false
}
},
"origin": "comsave/salesforce-outbound-message-bundle:0.3@github.com/symfony/recipes-contrib:master",
"is_contrib": true
"ref": "3d89607e2bafbfe4bb0ba0ea6f43f9b02aa6fa58"
}
}
}
+13 -22
View File
@@ -1,20 +1,6 @@
{
"locks": {
"connectholland/cookie-consent-bundle": {
"version": "0.4",
"recipe": {
"repo": "0.4",
"branch": "master",
"version": "0.4",
"ref": "9725d24dc996a1041f25b9e29fc1567a861f98e4"
}
}
},
"manifests": {
"connectholland/cookie-consent-bundle": {
"repository": "github.com/symfony/recipes-contrib",
"package": "connectholland/cookie-consent-bundle",
"version": "0.4",
"manifest": {
"bundles": {
"ConnectHolland\\CookieConsentBundle\\CHCookieConsentBundle": [
@@ -27,18 +13,23 @@
},
"files": {
"config/routes/ch_cookie_consent.yaml": {
"contents": "ch_cookie_consent:\n resource: \"@CHCookieConsentBundle/Resources/config/routing.yaml\"\n",
"executable": false,
"encoding": ""
"contents": [
"ch_cookie_consent:",
" resource: \"@CHCookieConsentBundle/Resources/config/routing.yaml\"",
""
],
"executable": false
},
"config/packages/ch_cookie_consent.yaml": {
"contents": "ch_cookie_consent: \n categories: ['analytics', 'tracking', 'social_media', 'marketing']\n",
"executable": false,
"encoding": ""
"contents": [
"ch_cookie_consent: ",
" categories: ['analytics', 'tracking', 'social_media', 'marketing']",
""
],
"executable": false
}
},
"origin": "connectholland/cookie-consent-bundle:0.4@github.com/symfony/recipes-contrib:master",
"is_contrib": true
"ref": "9725d24dc996a1041f25b9e29fc1567a861f98e4"
}
}
}
+7 -19
View File
@@ -1,20 +1,6 @@
{
"locks": {
"connectholland/timechimp-bundle": {
"version": "1.0",
"recipe": {
"repo": "1.0",
"branch": "master",
"version": "1.0",
"ref": "84527816cc62efb58453131d350a5aee146f9f7e"
}
}
},
"manifests": {
"connectholland/timechimp-bundle": {
"repository": "github.com/symfony/recipes-contrib",
"package": "connectholland/timechimp-bundle",
"version": "1.0",
"manifest": {
"bundles": {
"ConnectHolland\\TimechimpBundle\\ConnecthollandTimechimpBundle": [
@@ -34,13 +20,15 @@
},
"files": {
"config/packages/connectholland_timechimp.yaml": {
"contents": "connectholland_timechimp:\n api_key: '%env(string:TIMECHIMP_ACCESS_TOKEN)%'\n",
"executable": false,
"encoding": ""
"contents": [
"connectholland_timechimp:",
" api_key: '%env(string:TIMECHIMP_ACCESS_TOKEN)%'",
""
],
"executable": false
}
},
"origin": "connectholland/timechimp-bundle:1.0@github.com/symfony/recipes-contrib:master",
"is_contrib": true
"ref": "84527816cc62efb58453131d350a5aee146f9f7e"
}
}
}
+7 -19
View File
@@ -1,20 +1,6 @@
{
"locks": {
"connectholland/uptime-robot-bundle": {
"version": "1.0",
"recipe": {
"repo": "1.0",
"branch": "master",
"version": "1.0",
"ref": "cce5373677f7543c76cb8613e0fe529de4b3a5c8"
}
}
},
"manifests": {
"connectholland/uptime-robot-bundle": {
"repository": "github.com/symfony/recipes-contrib",
"package": "connectholland/uptime-robot-bundle",
"version": "1.0",
"manifest": {
"bundles": {
"ConnectHolland\\UptimeRobotBundle\\ConnecthollandUptimeRobotBundle": [
@@ -34,13 +20,15 @@
},
"files": {
"config/packages/connectholland_uptime_robot.yaml": {
"contents": "connectholland_uptime_robot:\n api_key: '%env(string:UPTIMEROBOT_API_KEY)%'\n",
"executable": false,
"encoding": ""
"contents": [
"connectholland_uptime_robot:",
" api_key: '%env(string:UPTIMEROBOT_API_KEY)%'",
""
],
"executable": false
}
},
"origin": "connectholland/uptime-robot-bundle:1.0@github.com/symfony/recipes-contrib:master",
"is_contrib": true
"ref": "cce5373677f7543c76cb8613e0fe529de4b3a5c8"
}
}
}
+8 -19
View File
@@ -1,20 +1,6 @@
{
"locks": {
"contao/core-bundle": {
"version": "4.6",
"recipe": {
"repo": "4.6",
"branch": "master",
"version": "4.6",
"ref": "f92ce23cb3d97f3f69d2fd448fb3dde0023a6b90"
}
}
},
"manifests": {
"contao/core-bundle": {
"repository": "github.com/symfony/recipes-contrib",
"package": "contao/core-bundle",
"version": "4.6",
"manifest": {
"bundles": {
"Contao\\CoreBundle\\ContaoCoreBundle": [
@@ -58,13 +44,16 @@
},
"files": {
"config/packages/contao_core.yaml": {
"contents": "# See https://github.com/contao/core-bundle\ncontao:\n web_dir: \"%kernel.project_dir%/public\"\n",
"executable": false,
"encoding": ""
"contents": [
"# See https://github.com/contao/core-bundle",
"contao:",
" web_dir: \"%kernel.project_dir%/public\"",
""
],
"executable": false
}
},
"origin": "contao/core-bundle:4.6@github.com/symfony/recipes-contrib:master",
"is_contrib": true
"ref": "f92ce23cb3d97f3f69d2fd448fb3dde0023a6b90"
}
}
}
+7 -19
View File
@@ -1,20 +1,6 @@
{
"locks": {
"contao/installation-bundle": {
"version": "4.6",
"recipe": {
"repo": "4.6",
"branch": "master",
"version": "4.6",
"ref": "00cb02ec7764a4674daa86d4d793aff2335138cc"
}
}
},
"manifests": {
"contao/installation-bundle": {
"repository": "github.com/symfony/recipes-contrib",
"package": "contao/installation-bundle",
"version": "4.6",
"manifest": {
"bundles": {
"Contao\\InstallationBundle\\ContaoInstallationBundle": [
@@ -27,13 +13,15 @@
},
"files": {
"config/routes/contao_installation.yaml": {
"contents": "contao_installation:\n resource: \"@ContaoInstallationBundle/Resources/config/routing.yml\"\n",
"executable": false,
"encoding": ""
"contents": [
"contao_installation:",
" resource: \"@ContaoInstallationBundle/Resources/config/routing.yml\"",
""
],
"executable": false
}
},
"origin": "contao/installation-bundle:4.6@github.com/symfony/recipes-contrib:master",
"is_contrib": true
"ref": "00cb02ec7764a4674daa86d4d793aff2335138cc"
}
}
}
+11 -19
View File
@@ -1,20 +1,6 @@
{
"locks": {
"contentful/contentful-bundle": {
"version": "3.0",
"recipe": {
"repo": "3.0",
"branch": "master",
"version": "3.0",
"ref": "39078448bb72c791a935ecf270942b7f26e3139f"
}
}
},
"manifests": {
"contentful/contentful-bundle": {
"repository": "github.com/symfony/recipes-contrib",
"package": "contentful/contentful-bundle",
"version": "3.0",
"manifest": {
"bundles": {
"Contentful\\ContentfulBundle\\ContentfulBundle": [
@@ -37,13 +23,19 @@
},
"files": {
"config/packages/contentful.yaml": {
"contents": "# For the complete configuration, please visit\n# https://www.contentful.com/developers/docs/php/tutorials/getting-started-with-contentful-and-symfony/\ncontentful:\n delivery:\n space: \"%env(CONTENTFUL_SPACE_ID)%\"\n token: \"%env(CONTENTFUL_ACCESS_TOKEN)%\"\n",
"executable": false,
"encoding": ""
"contents": [
"# For the complete configuration, please visit",
"# https://www.contentful.com/developers/docs/php/tutorials/getting-started-with-contentful-and-symfony/",
"contentful:",
" delivery:",
" space: \"%env(CONTENTFUL_SPACE_ID)%\"",
" token: \"%env(CONTENTFUL_ACCESS_TOKEN)%\"",
""
],
"executable": false
}
},
"origin": "contentful/contentful-bundle:3.0@github.com/symfony/recipes-contrib:master",
"is_contrib": true
"ref": "39078448bb72c791a935ecf270942b7f26e3139f"
}
}
}
+12 -19
View File
@@ -1,20 +1,6 @@
{
"locks": {
"contentful/contentful-bundle": {
"version": "4.0",
"recipe": {
"repo": "4.0",
"branch": "master",
"version": "4.0",
"ref": "f0b3ffcd60bb909b43a893aec66740c17373c13c"
}
}
},
"manifests": {
"contentful/contentful-bundle": {
"repository": "github.com/symfony/recipes-contrib",
"package": "contentful/contentful-bundle",
"version": "4.0",
"manifest": {
"bundles": {
"Contentful\\ContentfulBundle\\ContentfulBundle": [
@@ -37,13 +23,20 @@
},
"files": {
"config/packages/contentful.yaml": {
"contents": "# For the complete configuration, please visit\n# https://www.contentful.com/developers/docs/php/tutorials/getting-started-with-contentful-and-symfony/\ncontentful:\n delivery:\n main:\n token: \"%env(CONTENTFUL_ACCESS_TOKEN)%\"\n space: \"%env(CONTENTFUL_SPACE_ID)%\"\n",
"executable": false,
"encoding": ""
"contents": [
"# For the complete configuration, please visit",
"# https://www.contentful.com/developers/docs/php/tutorials/getting-started-with-contentful-and-symfony/",
"contentful:",
" delivery:",
" main:",
" token: \"%env(CONTENTFUL_ACCESS_TOKEN)%\"",
" space: \"%env(CONTENTFUL_SPACE_ID)%\"",
""
],
"executable": false
}
},
"origin": "contentful/contentful-bundle:4.0@github.com/symfony/recipes-contrib:master",
"is_contrib": true
"ref": "f0b3ffcd60bb909b43a893aec66740c17373c13c"
}
}
}
+9 -19
View File
@@ -1,20 +1,6 @@
{
"locks": {
"core23/facebook-bundle": {
"version": "0.4",
"recipe": {
"repo": "0.4",
"branch": "master",
"version": "0.4",
"ref": "0e959d3befb5588bb8c2053b94c7affbff5c75c4"
}
}
},
"manifests": {
"core23/facebook-bundle": {
"repository": "github.com/symfony/recipes-contrib",
"package": "core23/facebook-bundle",
"version": "0.4",
"manifest": {
"bundles": {
"Core23\\FacebookBundle\\Core23FacebookBundle": [
@@ -31,13 +17,17 @@
},
"files": {
"config/packages/core23_facebook.yaml": {
"contents": "core23_facebook:\n api:\n app_id: '%env(FACEBOOK_API_ID)%'\n app_secret: '%env(FACEBOOK_API_SECRET)%'\n",
"executable": false,
"encoding": ""
"contents": [
"core23_facebook:",
" api:",
" app_id: '%env(FACEBOOK_API_ID)%'",
" app_secret: '%env(FACEBOOK_API_SECRET)%'",
""
],
"executable": false
}
},
"origin": "core23/facebook-bundle:0.4@github.com/symfony/recipes-contrib:master",
"is_contrib": true
"ref": "0e959d3befb5588bb8c2053b94c7affbff5c75c4"
}
}
}
+8 -19
View File
@@ -1,20 +1,6 @@
{
"locks": {
"core23/gdpr-bundle": {
"version": "0.2",
"recipe": {
"repo": "0.2",
"branch": "master",
"version": "0.2",
"ref": "49fe404d938474efdce54f7d4bf6ef45ed177953"
}
}
},
"manifests": {
"core23/gdpr-bundle": {
"repository": "github.com/symfony/recipes-contrib",
"package": "core23/gdpr-bundle",
"version": "0.2",
"manifest": {
"bundles": {
"Core23\\GDPRBundle\\Core23GDPRBundle": [
@@ -27,13 +13,16 @@
},
"files": {
"config/packages/core23_gdpr.yaml": {
"contents": "sonata_block:\n blocks:\n core23_gdpr.block.information: null\n",
"executable": false,
"encoding": ""
"contents": [
"sonata_block:",
" blocks:",
" core23_gdpr.block.information: null",
""
],
"executable": false
}
},
"origin": "core23/gdpr-bundle:0.2@github.com/symfony/recipes-contrib:master",
"is_contrib": true
"ref": "49fe404d938474efdce54f7d4bf6ef45ed177953"
}
}
}
+9 -19
View File
@@ -1,20 +1,6 @@
{
"locks": {
"core23/lastfm-bundle": {
"version": "0.4",
"recipe": {
"repo": "0.4",
"branch": "master",
"version": "0.4",
"ref": "c73e219dfbfb682343c3a8c3df3ee329e6f4a8b7"
}
}
},
"manifests": {
"core23/lastfm-bundle": {
"repository": "github.com/symfony/recipes-contrib",
"package": "core23/lastfm-bundle",
"version": "0.4",
"manifest": {
"bundles": {
"Core23\\LastFmBundle\\Core23LastFmBundle": [
@@ -31,13 +17,17 @@
},
"files": {
"config/packages/core23_lastfm.yaml": {
"contents": "core23_lastfm:\n api:\n app_id: '%env(LASTFM_API_ID)%'\n shared_secret: '%env(LASTFM_API_SECRET)%'\n",
"executable": false,
"encoding": ""
"contents": [
"core23_lastfm:",
" api:",
" app_id: '%env(LASTFM_API_ID)%'",
" shared_secret: '%env(LASTFM_API_SECRET)%'",
""
],
"executable": false
}
},
"origin": "core23/lastfm-bundle:0.4@github.com/symfony/recipes-contrib:master",
"is_contrib": true
"ref": "c73e219dfbfb682343c3a8c3df3ee329e6f4a8b7"
}
}
}
+9 -19
View File
@@ -1,20 +1,6 @@
{
"locks": {
"core23/matomo-bundle": {
"version": "1.1",
"recipe": {
"repo": "1.1",
"branch": "master",
"version": "1.1",
"ref": "2b9e18de0ac9dd663b19444fc83240a4c02eb569"
}
}
},
"manifests": {
"core23/matomo-bundle": {
"repository": "github.com/symfony/recipes-contrib",
"package": "core23/matomo-bundle",
"version": "1.1",
"manifest": {
"bundles": {
"Core23\\MatomoBundle\\Core23MatomoBundle": [
@@ -27,13 +13,17 @@
},
"files": {
"config/packages/core23_matomo.yaml": {
"contents": "sonata_block:\n blocks:\n core23_matomo.block.statistic:\n core23_matomo.block.tracker:\n",
"executable": false,
"encoding": ""
"contents": [
"sonata_block:",
" blocks:",
" core23_matomo.block.statistic:",
" core23_matomo.block.tracker:",
""
],
"executable": false
}
},
"origin": "core23/matomo-bundle:1.1@github.com/symfony/recipes-contrib:master",
"is_contrib": true
"ref": "2b9e18de0ac9dd663b19444fc83240a4c02eb569"
}
}
}
+27 -22
View File
@@ -1,20 +1,6 @@
{
"locks": {
"core23/shariff-bundle": {
"version": "3.0",
"recipe": {
"repo": "3.0",
"branch": "master",
"version": "3.0",
"ref": "543b5fc304a0580ead9b6b65f1d01f028259d3b2"
}
}
},
"manifests": {
"core23/shariff-bundle": {
"repository": "github.com/symfony/recipes-contrib",
"package": "core23/shariff-bundle",
"version": "3.0",
"manifest": {
"bundles": {
"Core23\\ShariffBundle\\Core23ShariffBundle": [
@@ -31,18 +17,37 @@
},
"files": {
"config/routes/core23_shariff.yaml": {
"contents": "core23_shariff:\n resource: '@Core23ShariffBundle/Resources/config/routing/backend.yml'\n prefix: /shariff\n",
"executable": false,
"encoding": ""
"contents": [
"core23_shariff:",
" resource: '@Core23ShariffBundle/Resources/config/routing/backend.yml'",
" prefix: /shariff",
""
],
"executable": false
},
"config/packages/core23_shariff.yaml": {
"contents": "core23_shariff:\n services:\n facebook:\n app_id: '%env(FACEBOOK_API_ID)%'\n secret: '%env(FACEBOOK_API_SECRET)%'\n\nsonata_block:\n blocks:\n core23_shariff.block.share:\n\ndoctrine_cache:\n providers:\n core23_shariff:\n type: php_file\n namespace: core23_shariff\n",
"executable": false,
"encoding": ""
"contents": [
"core23_shariff:",
" services:",
" facebook:",
" app_id: '%env(FACEBOOK_API_ID)%'",
" secret: '%env(FACEBOOK_API_SECRET)%'",
"",
"sonata_block:",
" blocks:",
" core23_shariff.block.share:",
"",
"doctrine_cache:",
" providers:",
" core23_shariff:",
" type: php_file",
" namespace: core23_shariff",
""
],
"executable": false
}
},
"origin": "core23/shariff-bundle:3.0@github.com/symfony/recipes-contrib:master",
"is_contrib": true
"ref": "543b5fc304a0580ead9b6b65f1d01f028259d3b2"
}
}
}
+20 -19
View File
@@ -1,20 +1,6 @@
{
"locks": {
"cpliakas/git-wrapper": {
"version": "3.0",
"recipe": {
"repo": "3.0",
"branch": "master",
"version": "3.0",
"ref": "e66e45db95fc7d7702ee76c592965c204c9739ff"
}
}
},
"manifests": {
"cpliakas/git-wrapper": {
"repository": "github.com/symfony/recipes-contrib",
"package": "cpliakas/git-wrapper",
"version": "3.0",
"manifest": {
"copy-from-recipe": {
"config/": "%CONFIG_DIR%/"
@@ -22,13 +8,28 @@
},
"files": {
"config/packages/cpliakas_git_wrapper.yaml": {
"contents": "services:\n GitWrapper\\GitWrapper: null\n\n\n# To add logging capabilities use monolog and this configuration:\n#monolog:\n# channels:\n# - 'git'\n\n#services:\n# GitWrapper\\EventSubscriber\\GitLoggerEventSubscriber:\n# $logger: '@monolog.logger.git'\n# GitWrapper\\GitWrapper:\n# calls:\n# - addLoggerEventSubscriber: ['@GitWrapper\\EventSubscriber\\GitLoggerEventSubscriber']\n",
"executable": false,
"encoding": ""
"contents": [
"services:",
" GitWrapper\\GitWrapper: null",
"",
"",
"# To add logging capabilities use monolog and this configuration:",
"#monolog:",
"# channels:",
"# - 'git'",
"",
"#services:",
"# GitWrapper\\EventSubscriber\\GitLoggerEventSubscriber:",
"# $logger: '@monolog.logger.git'",
"# GitWrapper\\GitWrapper:",
"# calls:",
"# - addLoggerEventSubscriber: ['@GitWrapper\\EventSubscriber\\GitLoggerEventSubscriber']",
""
],
"executable": false
}
},
"origin": "cpliakas/git-wrapper:3.0@github.com/symfony/recipes-contrib:master",
"is_contrib": true
"ref": "e66e45db95fc7d7702ee76c592965c204c9739ff"
}
}
}
+9 -19
View File
@@ -1,20 +1,6 @@
{
"locks": {
"crayner/authenticate-bundle": {
"version": "1.0",
"recipe": {
"repo": "1.0",
"branch": "master",
"version": "1.0",
"ref": "3911baf00ee1ee8e1edb5a97572fe79f1f0a8d21"
}
}
},
"manifests": {
"crayner/authenticate-bundle": {
"repository": "github.com/symfony/recipes-contrib",
"package": "crayner/authenticate-bundle",
"version": "1.0",
"manifest": {
"bundles": {
"Crayner\\Authenticate\\CraynerAuthenticateBundle": [
@@ -27,13 +13,17 @@
},
"files": {
"config/routes/crayner_authenticate.yaml": {
"contents": "crayner_authenticate:\n resource: '@CraynerAuthenticateBundle/Resources/config/routes.yaml'\n prefix: /security\n\n",
"executable": false,
"encoding": ""
"contents": [
"crayner_authenticate:",
" resource: '@CraynerAuthenticateBundle/Resources/config/routes.yaml'",
" prefix: /security",
"",
""
],
"executable": false
}
},
"origin": "crayner/authenticate-bundle:1.0@github.com/symfony/recipes-contrib:master",
"is_contrib": true
"ref": "3911baf00ee1ee8e1edb5a97572fe79f1f0a8d21"
}
}
}
+15 -19
View File
@@ -1,20 +1,6 @@
{
"locks": {
"csa/guzzle-bundle": {
"version": "3.0",
"recipe": {
"repo": "3.0",
"branch": "master",
"version": "3.0",
"ref": "37c8c8a6c9b4365529a27975dced0589fea4bb48"
}
}
},
"manifests": {
"csa/guzzle-bundle": {
"repository": "github.com/symfony/recipes-contrib",
"package": "csa/guzzle-bundle",
"version": "3.0",
"manifest": {
"bundles": {
"Csa\\Bundle\\GuzzleBundle\\CsaGuzzleBundle": [
@@ -27,13 +13,23 @@
},
"files": {
"config/packages/csa_guzzle.yaml": {
"contents": "# Full configuration reference: https://github.com/csarrazi/CsaGuzzleBundle/blob/2.x/src/Resources/doc/configuration_reference.md#configuration-reference\n# Available client config options: http://docs.guzzlephp.org/en/latest/quickstart.html#creating-a-client\n# and http://docs.guzzlephp.org/en/latest/request-options.html\ncsa_guzzle:\n profiler: '%kernel.debug%'\n clients:\n default: null\n# my_client:\n# config:\n# base_uri: 'http://example.com'\n",
"executable": false,
"encoding": ""
"contents": [
"# Full configuration reference: https://github.com/csarrazi/CsaGuzzleBundle/blob/2.x/src/Resources/doc/configuration_reference.md#configuration-reference",
"# Available client config options: http://docs.guzzlephp.org/en/latest/quickstart.html#creating-a-client",
"# and http://docs.guzzlephp.org/en/latest/request-options.html",
"csa_guzzle:",
" profiler: '%kernel.debug%'",
" clients:",
" default: null",
"# my_client:",
"# config:",
"# base_uri: 'http://example.com'",
""
],
"executable": false
}
},
"origin": "csa/guzzle-bundle:3.0@github.com/symfony/recipes-contrib:master",
"is_contrib": true
"ref": "37c8c8a6c9b4365529a27975dced0589fea4bb48"
}
}
}
+17 -22
View File
@@ -1,20 +1,6 @@
{
"locks": {
"cyberomulus/sitemap-generator-bundle": {
"version": "1.2",
"recipe": {
"repo": "1.2",
"branch": "master",
"version": "1.2",
"ref": "444f9d4165852dbf7af8a6cbaa63715531f394c6"
}
}
},
"manifests": {
"cyberomulus/sitemap-generator-bundle": {
"repository": "github.com/symfony/recipes-contrib",
"package": "cyberomulus/sitemap-generator-bundle",
"version": "1.2",
"manifest": {
"bundles": {
"Cyberomulus\\SiteMapGeneratorBundle\\CyberomulusSiteMapGeneratorBundle": [
@@ -27,18 +13,27 @@
},
"files": {
"config/routes/cyberomulus_site_map_generator.yaml": {
"contents": "cyberomulus_sitemapgenerator:\n resource: '@CyberomulusSiteMapGeneratorBundle/Resources/config/routes.xml'\n",
"executable": false,
"encoding": ""
"contents": [
"cyberomulus_sitemapgenerator:",
" resource: '@CyberomulusSiteMapGeneratorBundle/Resources/config/routes.xml'",
""
],
"executable": false
},
"config/packages/cyberomulus_site_map_generator.yaml": {
"contents": "cyberomulus_site_map_generator:\n defaults_values:\n # Set the defaults values on url entries (false by default)\n url:\n # true for set a datetime at now if is null\n last_modification_now: true\n",
"executable": false,
"encoding": ""
"contents": [
"cyberomulus_site_map_generator:",
" defaults_values:",
" # Set the defaults values on url entries (false by default)",
" url:",
" # true for set a datetime at now if is null",
" last_modification_now: true",
""
],
"executable": false
}
},
"origin": "cyberomulus/sitemap-generator-bundle:1.2@github.com/symfony/recipes-contrib:master",
"is_contrib": true
"ref": "444f9d4165852dbf7af8a6cbaa63715531f394c6"
}
}
}
+9 -19
View File
@@ -1,20 +1,6 @@
{
"locks": {
"dama/doctrine-test-bundle": {
"version": "4.0",
"recipe": {
"repo": "4.0",
"branch": "master",
"version": "4.0",
"ref": "56eaa387b5e48ebcc7c95a893b47dfa1ad51449c"
}
}
},
"manifests": {
"dama/doctrine-test-bundle": {
"repository": "github.com/symfony/recipes-contrib",
"package": "dama/doctrine-test-bundle",
"version": "4.0",
"manifest": {
"bundles": {
"DAMA\\DoctrineTestBundle\\DAMADoctrineTestBundle": [
@@ -27,13 +13,17 @@
},
"files": {
"config/packages/test/dama_doctrine_test_bundle.yaml": {
"contents": "dama_doctrine_test:\n enable_static_connection: true\n enable_static_meta_data_cache: true\n enable_static_query_cache: true\n",
"executable": false,
"encoding": ""
"contents": [
"dama_doctrine_test:",
" enable_static_connection: true",
" enable_static_meta_data_cache: true",
" enable_static_query_cache: true",
""
],
"executable": false
}
},
"origin": "dama/doctrine-test-bundle:4.0@github.com/symfony/recipes-contrib:master",
"is_contrib": true
"ref": "56eaa387b5e48ebcc7c95a893b47dfa1ad51449c"
}
}
}
+20 -22
View File
@@ -1,20 +1,6 @@
{
"locks": {
"damienharper/auditor-bundle": {
"version": "4.0",
"recipe": {
"repo": "4.0",
"branch": "master",
"version": "4.0",
"ref": "694b129ef686d68a4c9ca6b3cafbeb3dec0c9c2d"
}
}
},
"manifests": {
"damienharper/auditor-bundle": {
"repository": "github.com/symfony/recipes-contrib",
"package": "damienharper/auditor-bundle",
"version": "4.0",
"manifest": {
"bundles": {
"DH\\AuditorBundle\\DHAuditorBundle": [
@@ -27,18 +13,30 @@
},
"files": {
"config/routes/dh_auditor.yaml": {
"contents": "dh_auditor:\n resource: \"@DHAuditorBundle/Controller/\"\n type: auditor\n",
"executable": false,
"encoding": ""
"contents": [
"dh_auditor:",
" resource: \"@DHAuditorBundle/Controller/\"",
" type: auditor",
""
],
"executable": false
},
"config/packages/dh_auditor.yaml": {
"contents": "# Full configuration reference available at:\n# https://damienharper.github.io/auditor-docs/docs/auditor-bundle/configuration/reference.html\ndh_auditor:\n enabled: true\n providers:\n doctrine:\n table_prefix: null\n table_suffix: '_audit'\n",
"executable": false,
"encoding": ""
"contents": [
"# Full configuration reference available at:",
"# https://damienharper.github.io/auditor-docs/docs/auditor-bundle/configuration/reference.html",
"dh_auditor:",
" enabled: true",
" providers:",
" doctrine:",
" table_prefix: null",
" table_suffix: '_audit'",
""
],
"executable": false
}
},
"origin": "damienharper/auditor-bundle:4.0@github.com/symfony/recipes-contrib:master",
"is_contrib": true
"ref": "694b129ef686d68a4c9ca6b3cafbeb3dec0c9c2d"
}
}
}
+15 -19
View File
@@ -1,20 +1,6 @@
{
"locks": {
"damienharper/doctrine-audit-bundle": {
"version": "1.0",
"recipe": {
"repo": "1.0",
"branch": "master",
"version": "1.0",
"ref": "ab8b371ee4206c79a144f3617d8eef3d6e7b87be"
}
}
},
"manifests": {
"damienharper/doctrine-audit-bundle": {
"repository": "github.com/symfony/recipes-contrib",
"package": "damienharper/doctrine-audit-bundle",
"version": "1.0",
"manifest": {
"bundles": {
"DH\\DoctrineAuditBundle\\DHDoctrineAuditBundle": [
@@ -27,13 +13,23 @@
},
"files": {
"config/packages/dh_doctrine_audit.yaml": {
"contents": "dh_doctrine_audit:\n # Configuration reference available at:\n # https://github.com/DamienHarper/DoctrineAuditBundle#configuration\n\n entities:\n# MyBundle\\Entity\\MyAuditedEntity1: null # all MyAuditedEntity1 properties are audited\n# MyBundle\\Entity\\MyAuditedEntity2:\n# ignored_columns: # MyAuditedEntity2 properties to be ignored by the audit process\n# - createdAt\n# - updatedAt\n",
"executable": false,
"encoding": ""
"contents": [
"dh_doctrine_audit:",
" # Configuration reference available at:",
" # https://github.com/DamienHarper/DoctrineAuditBundle#configuration",
"",
" entities:",
"# MyBundle\\Entity\\MyAuditedEntity1: null # all MyAuditedEntity1 properties are audited",
"# MyBundle\\Entity\\MyAuditedEntity2:",
"# ignored_columns: # MyAuditedEntity2 properties to be ignored by the audit process",
"# - createdAt",
"# - updatedAt",
""
],
"executable": false
}
},
"origin": "damienharper/doctrine-audit-bundle:1.0@github.com/symfony/recipes-contrib:master",
"is_contrib": true
"ref": "ab8b371ee4206c79a144f3617d8eef3d6e7b87be"
}
}
}
+10 -19
View File
@@ -1,20 +1,6 @@
{
"locks": {
"datana-gmbh/intercom-config": {
"version": "1.1",
"recipe": {
"repo": "1.1",
"branch": "master",
"version": "1.1",
"ref": "5c2f35fd8dfee432d17ac4d5a5d393a61e0794b9"
}
}
},
"manifests": {
"datana-gmbh/intercom-config": {
"repository": "github.com/symfony/recipes-contrib",
"package": "datana-gmbh/intercom-config",
"version": "1.1",
"manifest": {
"copy-from-recipe": {
"config/": "%CONFIG_DIR%/"
@@ -26,13 +12,18 @@
},
"files": {
"config/packages/datana_intercom_config.yaml": {
"contents": "services:\n Datana\\Intercom\\Config\\Config:\n arguments:\n - '%env(INTERCOM_WORKSPACE_APP_ID)%'\n - '%env(INTERCOM_IDENTITY_VERIFICATION_SECRET)%'\n",
"executable": false,
"encoding": ""
"contents": [
"services:",
" Datana\\Intercom\\Config\\Config:",
" arguments:",
" - '%env(INTERCOM_WORKSPACE_APP_ID)%'",
" - '%env(INTERCOM_IDENTITY_VERIFICATION_SECRET)%'",
""
],
"executable": false
}
},
"origin": "datana-gmbh/intercom-config:1.1@github.com/symfony/recipes-contrib:master",
"is_contrib": true
"ref": "5c2f35fd8dfee432d17ac4d5a5d393a61e0794b9"
}
}
}
@@ -1,20 +1,6 @@
{
"locks": {
"datana-gmbh/sendgrid-dynamic-template-mailer": {
"version": "1.0",
"recipe": {
"repo": "1.0",
"branch": "master",
"version": "1.0",
"ref": "5b3705038a4cbbc32203ee75be06db766e840f6d"
}
}
},
"manifests": {
"datana-gmbh/sendgrid-dynamic-template-mailer": {
"repository": "github.com/symfony/recipes-contrib",
"package": "datana-gmbh/sendgrid-dynamic-template-mailer",
"version": "1.0",
"manifest": {
"copy-from-recipe": {
"config/": "%CONFIG_DIR%/"
@@ -25,13 +11,18 @@
},
"files": {
"config/packages/datana_sendgrid_dynamic_template_mailer.yaml": {
"contents": "services:\n Datana\\Bridge\\Symfony\\Mailer\\Sendgrid\\Transport\\SendgridDynamicTemplateTransportFactory:\n parent: 'mailer.transport_factory.abstract'\n tags: ['mailer.transport_factory']\n autowire: true\n",
"executable": false,
"encoding": ""
"contents": [
"services:",
" Datana\\Bridge\\Symfony\\Mailer\\Sendgrid\\Transport\\SendgridDynamicTemplateTransportFactory:",
" parent: 'mailer.transport_factory.abstract'",
" tags: ['mailer.transport_factory']",
" autowire: true",
""
],
"executable": false
}
},
"origin": "datana-gmbh/sendgrid-dynamic-template-mailer:1.0@github.com/symfony/recipes-contrib:master",
"is_contrib": true
"ref": "5b3705038a4cbbc32203ee75be06db766e840f6d"
}
}
}
+13 -19
View File
@@ -1,20 +1,6 @@
{
"locks": {
"deamon/logger-extra-bundle": {
"version": "4.0",
"recipe": {
"repo": "4.0",
"branch": "master",
"version": "4.0",
"ref": "0c64a27be5cc083dd16bebfe1ca16104d8649fa9"
}
}
},
"manifests": {
"deamon/logger-extra-bundle": {
"repository": "github.com/symfony/recipes-contrib",
"package": "deamon/logger-extra-bundle",
"version": "4.0",
"manifest": {
"bundles": {
"Deamon\\LoggerExtraBundle\\DeamonLoggerExtraBundle": [
@@ -27,13 +13,21 @@
},
"files": {
"config/packages/deamon_logger_extra.yaml": {
"contents": "# see https://github.com/FrDeamon/logger-extra-bundle/blob/master/README.md#config-reference\ndeamon_logger_extra:\n # the application name\n application: null\n # the handler to update\n handlers: 'main'\n # configuration for all optional fields\n config: null\n",
"executable": false,
"encoding": ""
"contents": [
"# see https://github.com/FrDeamon/logger-extra-bundle/blob/master/README.md#config-reference",
"deamon_logger_extra:",
" # the application name",
" application: null",
" # the handler to update",
" handlers: 'main'",
" # configuration for all optional fields",
" config: null",
""
],
"executable": false
}
},
"origin": "deamon/logger-extra-bundle:4.0@github.com/symfony/recipes-contrib:master",
"is_contrib": true
"ref": "0c64a27be5cc083dd16bebfe1ca16104d8649fa9"
}
}
}
+16 -22
View File
@@ -1,20 +1,6 @@
{
"locks": {
"debril/rss-atom-bundle": {
"version": "4.0",
"recipe": {
"repo": "4.0",
"branch": "master",
"version": "4.0",
"ref": "2c23ed747eda9f4c13f5e7eb55fffa1091fdd505"
}
}
},
"manifests": {
"debril/rss-atom-bundle": {
"repository": "github.com/symfony/recipes-contrib",
"package": "debril/rss-atom-bundle",
"version": "4.0",
"manifest": {
"bundles": {
"Debril\\RssAtomBundle\\DebrilRssAtomBundle": [
@@ -27,18 +13,26 @@
},
"files": {
"config/routes/rss_atom.yaml": {
"contents": "rss_atom_bundle:\n resource: \"@DebrilRssAtomBundle/Resources/config/routing.yml\"\n",
"executable": false,
"encoding": ""
"contents": [
"rss_atom_bundle:",
" resource: \"@DebrilRssAtomBundle/Resources/config/routing.yml\"",
""
],
"executable": false
},
"config/packages/rss_atom.yaml": {
"contents": "debril_rss_atom:\n # switch to true if you need to set cache-control: private\n private: false\n # switch to true if you need to always send status 200\n force_refresh: false\n",
"executable": false,
"encoding": ""
"contents": [
"debril_rss_atom:",
" # switch to true if you need to set cache-control: private",
" private: false",
" # switch to true if you need to always send status 200",
" force_refresh: false",
""
],
"executable": false
}
},
"origin": "debril/rss-atom-bundle:4.0@github.com/symfony/recipes-contrib:master",
"is_contrib": true
"ref": "2c23ed747eda9f4c13f5e7eb55fffa1091fdd505"
}
}
}
+7 -19
View File
@@ -1,20 +1,6 @@
{
"locks": {
"dekalee/autopilot-bundle": {
"version": "1.0",
"recipe": {
"repo": "1.0",
"branch": "master",
"version": "1.0",
"ref": "7d8d3dafe6ac802b38f6147a4732b7958adc8052"
}
}
},
"manifests": {
"dekalee/autopilot-bundle": {
"repository": "github.com/symfony/recipes-contrib",
"package": "dekalee/autopilot-bundle",
"version": "1.0",
"manifest": {
"bundles": {
"Dekalee\\AutopilotBundle\\DekaleeAutopilotBundle": [
@@ -34,13 +20,15 @@
},
"files": {
"config/packages/dekalee_autopilot_swarrot.yaml": {
"contents": "dekalee_autopilot:\n api_key: '%env(DEKALEE_AUTOPILOT_APIKEY)%'\n",
"executable": false,
"encoding": ""
"contents": [
"dekalee_autopilot:",
" api_key: '%env(DEKALEE_AUTOPILOT_APIKEY)%'",
""
],
"executable": false
}
},
"origin": "dekalee/autopilot-bundle:1.0@github.com/symfony/recipes-contrib:master",
"is_contrib": true
"ref": "7d8d3dafe6ac802b38f6147a4732b7958adc8052"
}
}
}
+8 -19
View File
@@ -1,20 +1,6 @@
{
"locks": {
"dekalee/cdn77-bundle": {
"version": "1.4",
"recipe": {
"repo": "1.4",
"branch": "master",
"version": "1.4",
"ref": "3fc03324acddea649ef00675e18a0fb95679b983"
}
}
},
"manifests": {
"dekalee/cdn77-bundle": {
"repository": "github.com/symfony/recipes-contrib",
"package": "dekalee/cdn77-bundle",
"version": "1.4",
"manifest": {
"bundles": {
"Dekalee\\Cdn77Bundle\\DekaleeCdn77Bundle": [
@@ -31,13 +17,16 @@
},
"files": {
"config/packages/dekalee_cdn77.yaml": {
"contents": "dekalee_cdn77:\n login: \"%env(DEKALEE_CDN77_LOGIN)%\"\n password: \"%env(DEKALEE_CDN77_PASSWORD)%\"\n",
"executable": false,
"encoding": ""
"contents": [
"dekalee_cdn77:",
" login: \"%env(DEKALEE_CDN77_LOGIN)%\"",
" password: \"%env(DEKALEE_CDN77_PASSWORD)%\"",
""
],
"executable": false
}
},
"origin": "dekalee/cdn77-bundle:1.4@github.com/symfony/recipes-contrib:master",
"is_contrib": true
"ref": "3fc03324acddea649ef00675e18a0fb95679b983"
}
}
}
+9 -19
View File
@@ -1,20 +1,6 @@
{
"locks": {
"dekalee/enom-bundle": {
"version": "1.0",
"recipe": {
"repo": "1.0",
"branch": "master",
"version": "1.0",
"ref": "f5d48d7f8a5a1f9661446151006f242771168d00"
}
}
},
"manifests": {
"dekalee/enom-bundle": {
"repository": "github.com/symfony/recipes-contrib",
"package": "dekalee/enom-bundle",
"version": "1.0",
"manifest": {
"bundles": {
"Dekalee\\EnomBundle\\DekaleeEnomBundle": [
@@ -36,13 +22,17 @@
},
"files": {
"config/packages/dekalee_enom.yaml": {
"contents": "dekalee_enom:\n uid: '%env(ENOM_UID)%'\n password: '%env(ENOM_PASSWORD)%'\n base_url: '%env(ENOM_BASE_URL)%'\n",
"executable": false,
"encoding": ""
"contents": [
"dekalee_enom:",
" uid: '%env(ENOM_UID)%'",
" password: '%env(ENOM_PASSWORD)%'",
" base_url: '%env(ENOM_BASE_URL)%'",
""
],
"executable": false
}
},
"origin": "dekalee/enom-bundle:1.0@github.com/symfony/recipes-contrib:master",
"is_contrib": true
"ref": "f5d48d7f8a5a1f9661446151006f242771168d00"
}
}
}
+9 -19
View File
@@ -1,20 +1,6 @@
{
"locks": {
"dekalee/mailjet-bundle": {
"version": "0.5",
"recipe": {
"repo": "0.5",
"branch": "master",
"version": "0.5",
"ref": "f3b44ec81d2162b39eec6f9366e020ce56800108"
}
}
},
"manifests": {
"dekalee/mailjet-bundle": {
"repository": "github.com/symfony/recipes-contrib",
"package": "dekalee/mailjet-bundle",
"version": "0.5",
"manifest": {
"bundles": {
"Dekalee\\MailjetBundle\\DekaleeMailjetBundle": [
@@ -37,13 +23,17 @@
},
"files": {
"config/packages/dekalee_mailjet.yaml": {
"contents": "dekalee_mailjet:\n api_key: '%env(DEKALEE_MAILJET_API_KEY)%'\n secret_key: '%env(DEKALEE_MAILJET_SECRET_KEY)%'\n base_template_id: '%env(DEKALEE_MAILJET_BASE_TEMPLATE_ID)%'\n",
"executable": false,
"encoding": ""
"contents": [
"dekalee_mailjet:",
" api_key: '%env(DEKALEE_MAILJET_API_KEY)%'",
" secret_key: '%env(DEKALEE_MAILJET_SECRET_KEY)%'",
" base_template_id: '%env(DEKALEE_MAILJET_BASE_TEMPLATE_ID)%'",
""
],
"executable": false
}
},
"origin": "dekalee/mailjet-bundle:0.5@github.com/symfony/recipes-contrib:master",
"is_contrib": true
"ref": "f3b44ec81d2162b39eec6f9366e020ce56800108"
}
}
}
+11 -19
View File
@@ -1,20 +1,6 @@
{
"locks": {
"dekalee/mailjet-bundle": {
"version": "2.1",
"recipe": {
"repo": "2.1",
"branch": "master",
"version": "2.1",
"ref": "e592d510ab248ebb3be32b5df1056bba5b594709"
}
}
},
"manifests": {
"dekalee/mailjet-bundle": {
"repository": "github.com/symfony/recipes-contrib",
"package": "dekalee/mailjet-bundle",
"version": "2.1",
"manifest": {
"bundles": {
"Dekalee\\MailjetBundle\\DekaleeMailjetBundle": [
@@ -39,13 +25,19 @@
},
"files": {
"config/packages/dekalee_mailjet.yaml": {
"contents": "dekalee_mailjet:\n api_key: '%env(DEKALEE_MAILJET_API_KEY)%'\n secret_key: '%env(DEKALEE_MAILJET_SECRET_KEY)%'\n base_template_id: '%env(DEKALEE_MAILJET_BASE_TEMPLATE_ID)%'\n reporting_email: '%env(DEKALEE_MAILJET_EMAIL_REPORTING)%'\n force_deliver: false\n",
"executable": false,
"encoding": ""
"contents": [
"dekalee_mailjet:",
" api_key: '%env(DEKALEE_MAILJET_API_KEY)%'",
" secret_key: '%env(DEKALEE_MAILJET_SECRET_KEY)%'",
" base_template_id: '%env(DEKALEE_MAILJET_BASE_TEMPLATE_ID)%'",
" reporting_email: '%env(DEKALEE_MAILJET_EMAIL_REPORTING)%'",
" force_deliver: false",
""
],
"executable": false
}
},
"origin": "dekalee/mailjet-bundle:2.1@github.com/symfony/recipes-contrib:master",
"is_contrib": true
"ref": "e592d510ab248ebb3be32b5df1056bba5b594709"
}
}
}
+7 -19
View File
@@ -1,20 +1,6 @@
{
"locks": {
"dekalee/pubsub-swarrot-bundle": {
"version": "1.0",
"recipe": {
"repo": "1.0",
"branch": "master",
"version": "1.0",
"ref": "1bd103acb5e43904306e17f1cd586286f6fe75d8"
}
}
},
"manifests": {
"dekalee/pubsub-swarrot-bundle": {
"repository": "github.com/symfony/recipes-contrib",
"package": "dekalee/pubsub-swarrot-bundle",
"version": "1.0",
"manifest": {
"bundles": {
"Dekalee\\PubSubSwarrotBundle\\DekaleePubSubSwarrotBundle": [
@@ -34,13 +20,15 @@
},
"files": {
"config/packages/dekalee_pub_sub_swarrot.yaml": {
"contents": "dekalee_pub_sub_swarrot:\n key_file_path: '%env(DEKALEE_PUBSUB_SWARROT_KEY_FILE_PATH)%'\n",
"executable": false,
"encoding": ""
"contents": [
"dekalee_pub_sub_swarrot:",
" key_file_path: '%env(DEKALEE_PUBSUB_SWARROT_KEY_FILE_PATH)%'",
""
],
"executable": false
}
},
"origin": "dekalee/pubsub-swarrot-bundle:1.0@github.com/symfony/recipes-contrib:master",
"is_contrib": true
"ref": "1bd103acb5e43904306e17f1cd586286f6fe75d8"
}
}
}
+16 -22
View File
@@ -1,20 +1,6 @@
{
"locks": {
"disjfa/mozaic-bundle": {
"version": "0.1",
"recipe": {
"repo": "0.1",
"branch": "master",
"version": "0.1",
"ref": "189106e738b9e6da8d44e845559e2415bdea06e4"
}
}
},
"manifests": {
"disjfa/mozaic-bundle": {
"repository": "github.com/symfony/recipes-contrib",
"package": "disjfa/mozaic-bundle",
"version": "0.1",
"manifest": {
"bundles": {
"Disjfa\\MozaicBundle\\DisjfaMozaicBundle": [
@@ -39,18 +25,26 @@
},
"files": {
"config/routes/disjfa_mozaic.yaml": {
"contents": "disjfa_mozaic:\n resource: '@DisjfaMozaicBundle/Controller/'\n type: annotation\n",
"executable": true,
"encoding": ""
"contents": [
"disjfa_mozaic:",
" resource: '@DisjfaMozaicBundle/Controller/'",
" type: annotation",
""
],
"executable": true
},
"config/packages/disjfa_mozaic.yaml": {
"contents": "disjfa_mozaic:\n unsplash:\n application_id: '%env(resolve:UNSPLASH_APPLICATION_ID)%'\n secret: '%env(resolve:UNSPLASH_APPLICATION_SECRET)%'\n",
"executable": true,
"encoding": ""
"contents": [
"disjfa_mozaic:",
" unsplash:",
" application_id: '%env(resolve:UNSPLASH_APPLICATION_ID)%'",
" secret: '%env(resolve:UNSPLASH_APPLICATION_SECRET)%'",
""
],
"executable": true
}
},
"origin": "disjfa/mozaic-bundle:0.1@github.com/symfony/recipes-contrib:master",
"is_contrib": true
"ref": "189106e738b9e6da8d44e845559e2415bdea06e4"
}
}
}
+9 -19
View File
@@ -1,20 +1,6 @@
{
"locks": {
"disjfa/translation-bundle": {
"version": "0.1",
"recipe": {
"repo": "0.1",
"branch": "master",
"version": "0.1",
"ref": "8da88d4e40049729892ac1cc38182ecad6e23e64"
}
}
},
"manifests": {
"disjfa/translation-bundle": {
"repository": "github.com/symfony/recipes-contrib",
"package": "disjfa/translation-bundle",
"version": "0.1",
"manifest": {
"bundles": {
"Disjfa\\TranslationBundle\\DisjfaTranslationBundle": [
@@ -27,13 +13,17 @@
},
"files": {
"config/routes/disjfa_translation.yaml": {
"contents": "disjfa_translation:\n resource: '@DisjfaTranslationBundle/Controller/'\n type: annotation\n prefix: /admin\n",
"executable": true,
"encoding": ""
"contents": [
"disjfa_translation:",
" resource: '@DisjfaTranslationBundle/Controller/'",
" type: annotation",
" prefix: /admin",
""
],
"executable": true
}
},
"origin": "disjfa/translation-bundle:0.1@github.com/symfony/recipes-contrib:master",
"is_contrib": true
"ref": "8da88d4e40049729892ac1cc38182ecad6e23e64"
}
}
}
+7 -19
View File
@@ -1,20 +1,6 @@
{
"locks": {
"dobryprogramator/smartform-bundle": {
"version": "1.0",
"recipe": {
"repo": "1.0",
"branch": "master",
"version": "1.0",
"ref": "92670c4f45005e719b91e925149d9555de322069"
}
}
},
"manifests": {
"dobryprogramator/smartform-bundle": {
"repository": "github.com/symfony/recipes-contrib",
"package": "dobryprogramator/smartform-bundle",
"version": "1.0",
"manifest": {
"bundles": {
"DobryProgramator\\SmartformBundle\\DobryProgramatorSmartformBundle": [
@@ -30,13 +16,15 @@
},
"files": {
"config/packages/dobry_programator_smartform.yaml": {
"contents": "dobry_programator_smartform:\n client_id: '%env(SMARTFORM_CLIENT_ID)%'\n",
"executable": false,
"encoding": ""
"contents": [
"dobry_programator_smartform:",
" client_id: '%env(SMARTFORM_CLIENT_ID)%'",
""
],
"executable": false
}
},
"origin": "dobryprogramator/smartform-bundle:1.0@github.com/symfony/recipes-contrib:master",
"is_contrib": true
"ref": "92670c4f45005e719b91e925149d9555de322069"
}
}
}

Some files were not shown because too many files have changed in this diff Show More