mirror of
https://github.com/symfony/recipes-contrib.git
synced 2026-09-17 01:56:28 +03:00
Update Flex archives
This commit is contained in:
@@ -0,0 +1,80 @@
|
||||
{
|
||||
"manifests": {
|
||||
"mmucklo/queue-bundle": {
|
||||
"manifest": {
|
||||
"bundles": {
|
||||
"Dtc\\QueueBundle\\DtcQueueBundle": [
|
||||
"all"
|
||||
]
|
||||
},
|
||||
"copy-from-recipe": {
|
||||
"config/": "%CONFIG_DIR%/"
|
||||
},
|
||||
"post-install-output": [
|
||||
"<bg=blue;fg=white> </>",
|
||||
"<bg=blue;fg=white> What's next? </>",
|
||||
"<bg=blue;fg=white> </>",
|
||||
"",
|
||||
"Please update config/packages/dtc_queue.yaml to accurately reflect your needs.",
|
||||
" (Choose between odm|orm|beanstalkd|rabbit_mq|redis, etc.)",
|
||||
"",
|
||||
" - For a full list of configuration options, see:",
|
||||
" * https://github.com/mmucklo/DtcQueueBundle/blob/master/Resources/doc/full-configuration.md",
|
||||
"",
|
||||
"For admin, make sure the twig is installed and the twig engine is turned on in framework.yaml",
|
||||
"",
|
||||
" - If not, install twig, then add the following to config/packages/framework.yaml:",
|
||||
"",
|
||||
"framework:",
|
||||
" # ...",
|
||||
" templating:",
|
||||
" engines: ['twig']"
|
||||
]
|
||||
},
|
||||
"files": {
|
||||
"config/packages/dtc_queue.yaml": {
|
||||
"contents": [
|
||||
"dtc_queue:",
|
||||
" # For full configuration options see:",
|
||||
" # https://github.com/mmucklo/DtcQueueBundle/blob/master/Resources/doc/full-configuration.md",
|
||||
" manager:",
|
||||
" # This parameter is required and should typically be set to one of:",
|
||||
" # [odm|orm|beanstalkd|rabbit_mq|redis]",
|
||||
" job: odm",
|
||||
" timings:",
|
||||
" # Set this to true to record job timing history in a separate table",
|
||||
" # (note: for beanstalkd|rabbit_mq|redis, job_timing or run needs to",
|
||||
" # be set to one of orm|odm under the manager section)",
|
||||
" record: false",
|
||||
" odm:",
|
||||
" # This is only necessary if still using an \"odm\" manager.",
|
||||
" # It only needs to be modified if you want to use a different",
|
||||
" # document manager than the default one",
|
||||
" # (there is a similar parameter for entity_manager if you're",
|
||||
" # using orm)",
|
||||
" #",
|
||||
" # If you don't use odm at all, this can safely be ignored or deleted",
|
||||
" document_manager: default",
|
||||
" priority:",
|
||||
" max: 255",
|
||||
" direction: desc",
|
||||
" admin:",
|
||||
" # chartjs is used to render the job timings graph in the admin section",
|
||||
" chartjs: 'https://cdnjs.cloudflare.com/ajax/libs/Chart.js/2.7.1/Chart.bundle.min.js'",
|
||||
""
|
||||
],
|
||||
"executable": false
|
||||
},
|
||||
"config/routes/dtc_queue.yaml": {
|
||||
"contents": [
|
||||
"dtc_queue:",
|
||||
" resource: '@DtcQueueBundle/Resources/config/routing.yml'",
|
||||
""
|
||||
],
|
||||
"executable": false
|
||||
}
|
||||
},
|
||||
"ref": "2544c220a21d7bbb8fea7b321c2f3bcc32ecceb8"
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,61 @@
|
||||
{
|
||||
"manifests": {
|
||||
"mmucklo/queue-bundle": {
|
||||
"manifest": {
|
||||
"bundles": {
|
||||
"Dtc\\QueueBundle\\DtcQueueBundle": [
|
||||
"all"
|
||||
]
|
||||
},
|
||||
"copy-from-package": {
|
||||
"Resources/config/dtc_queue.yaml": "%CONFIG_DIR%/packages/dtc_queue.yaml"
|
||||
},
|
||||
"copy-from-recipe": {
|
||||
"config/": "%CONFIG_DIR%/"
|
||||
},
|
||||
"post-install-output": [
|
||||
"<bg=blue;fg=white> </>",
|
||||
"<bg=blue;fg=white> What's next? </>",
|
||||
"<bg=blue;fg=white> </>",
|
||||
"",
|
||||
"Please update config/packages/dtc_queue.yaml:",
|
||||
"",
|
||||
"# config/packages/dtc_queue.yaml",
|
||||
"dtc_queue:",
|
||||
" manager:",
|
||||
" # This parameter is required and should typically be set to one of:",
|
||||
" # [odm|orm|beanstalkd|rabbit_mq|redis]",
|
||||
" job: orm",
|
||||
" # ...",
|
||||
"",
|
||||
"For a full list of configuration options, see:",
|
||||
" * https://github.com/mmucklo/DtcQueueBundle/blob/master/Resources/doc/full-configuration.md",
|
||||
"",
|
||||
"If you use the \"orm\" job manager, you'll want to create a migration or update the schema on your database manually. For more info see:",
|
||||
" * https://github.com/mmucklo/DtcQueueBundle/blob/master/Resources/doc/symfony4-5.md",
|
||||
"",
|
||||
"For admin, make sure twig-pack or twig-bundle + twig is installed.",
|
||||
"",
|
||||
"On older versions of Symfony, the following might be necessary:",
|
||||
"",
|
||||
"# config/packages/framework.yaml",
|
||||
"framework:",
|
||||
" # ...",
|
||||
" templating:",
|
||||
" engines: ['twig']"
|
||||
]
|
||||
},
|
||||
"files": {
|
||||
"config/routes/dtc_queue.yaml": {
|
||||
"contents": [
|
||||
"dtc_queue:",
|
||||
" resource: '@DtcQueueBundle/Resources/config/routing.yml'",
|
||||
""
|
||||
],
|
||||
"executable": false
|
||||
}
|
||||
},
|
||||
"ref": "2648a599aa400cc4e3841827d9280684da7f6c92"
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,57 @@
|
||||
{
|
||||
"manifests": {
|
||||
"mmucklo/queue-bundle": {
|
||||
"manifest": {
|
||||
"bundles": {
|
||||
"Dtc\\QueueBundle\\DtcQueueBundle": [
|
||||
"all"
|
||||
]
|
||||
},
|
||||
"copy-from-package": {
|
||||
"Resources/config/dtc_queue.yaml": "%CONFIG_DIR%/packages/dtc_queue.yaml"
|
||||
},
|
||||
"copy-from-recipe": {
|
||||
"config/": "%CONFIG_DIR%/"
|
||||
},
|
||||
"post-install-output": [
|
||||
"Please update config/packages/dtc_queue.yaml:",
|
||||
"",
|
||||
"# config/packages/dtc_queue.yaml",
|
||||
"dtc_queue:",
|
||||
" manager:",
|
||||
" # This parameter is required and should typically be set to one of:",
|
||||
" # [odm|orm|beanstalkd|rabbit_mq|redis]",
|
||||
" job: orm",
|
||||
" # ...",
|
||||
"",
|
||||
"For a full list of configuration options, see:",
|
||||
" * https://github.com/mmucklo/DtcQueueBundle/blob/master/Resources/doc/full-configuration.md",
|
||||
"",
|
||||
"If you use the \"orm\" job manager, you'll want to create a migration or update the schema on your database manually. For more info see:",
|
||||
" * https://github.com/mmucklo/DtcQueueBundle/blob/master/Resources/doc/symfony4-5.md",
|
||||
"",
|
||||
"For admin, make sure twig-pack or twig-bundle + twig is installed.",
|
||||
"",
|
||||
"On older versions of Symfony, the following might be necessary:",
|
||||
"",
|
||||
"# config/packages/framework.yaml",
|
||||
"framework:",
|
||||
" # ...",
|
||||
" templating:",
|
||||
" engines: ['twig']"
|
||||
]
|
||||
},
|
||||
"files": {
|
||||
"config/routes/dtc_queue.yaml": {
|
||||
"contents": [
|
||||
"dtc_queue:",
|
||||
" resource: '@DtcQueueBundle/Resources/config/routing.yml'",
|
||||
""
|
||||
],
|
||||
"executable": false
|
||||
}
|
||||
},
|
||||
"ref": "38893cdaccca06e928126468431cc2ff01fa7975"
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,60 @@
|
||||
{
|
||||
"manifests": {
|
||||
"mmucklo/queue-bundle": {
|
||||
"manifest": {
|
||||
"bundles": {
|
||||
"Dtc\\QueueBundle\\DtcQueueBundle": [
|
||||
"all"
|
||||
]
|
||||
},
|
||||
"copy-from-recipe": {
|
||||
"config/": "%CONFIG_DIR%/"
|
||||
},
|
||||
"post-install-output": [
|
||||
"<bg=blue;fg=white> </>",
|
||||
"<bg=blue;fg=white> What's next? </>",
|
||||
"<bg=blue;fg=white> </>",
|
||||
"",
|
||||
"Please update config/packages/dtc_queue.yaml to accurately reflect your needs (odm / orm / beanstalkd / rabbit_mq etc.)",
|
||||
" - For a full list of configuration options, see:",
|
||||
" * https://github.com/mmucklo/DtcQueueBundle/Resources/doc/full-configuration.md",
|
||||
"",
|
||||
"For admin, make sure the twig engine is turned on in framework.yaml",
|
||||
"",
|
||||
" - If not, add the following to config/packages/framework.yaml:",
|
||||
"",
|
||||
"framework:",
|
||||
" # ...",
|
||||
" templating:",
|
||||
" engines: ['twig']"
|
||||
]
|
||||
},
|
||||
"files": {
|
||||
"config/packages/dtc_queue.yaml": {
|
||||
"contents": [
|
||||
"dtc_queue:",
|
||||
" default_manager: odm",
|
||||
" record_timings: false",
|
||||
" document_manager: default",
|
||||
" entity_manager: default",
|
||||
" priority_max: 255",
|
||||
" priority_direction: desc",
|
||||
" admin:",
|
||||
" chartjs: 'https://cdnjs.cloudflare.com/ajax/libs/Chart.js/2.7.1/Chart.bundle.min.js'",
|
||||
""
|
||||
],
|
||||
"executable": false
|
||||
},
|
||||
"config/routes/dtc_queue.yaml": {
|
||||
"contents": [
|
||||
"dtc_queue:",
|
||||
" resource: '@DtcQueueBundle/Resources/config/routing.yml'",
|
||||
""
|
||||
],
|
||||
"executable": false
|
||||
}
|
||||
},
|
||||
"ref": "7793bfe1d59c7a391e3164d3555c56903cc78a19"
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,76 @@
|
||||
{
|
||||
"manifests": {
|
||||
"mmucklo/queue-bundle": {
|
||||
"manifest": {
|
||||
"bundles": {
|
||||
"Dtc\\QueueBundle\\DtcQueueBundle": [
|
||||
"all"
|
||||
]
|
||||
},
|
||||
"copy-from-recipe": {
|
||||
"config/": "%CONFIG_DIR%/"
|
||||
},
|
||||
"post-install-output": [
|
||||
"Please update config/packages/dtc_queue.yaml to accurately reflect your needs.",
|
||||
" (Choose between odm|orm|beanstalkd|rabbit_mq|redis, etc.)",
|
||||
"",
|
||||
" - For a full list of configuration options, see:",
|
||||
" * https://github.com/mmucklo/DtcQueueBundle/blob/master/Resources/doc/full-configuration.md",
|
||||
"",
|
||||
"For admin, make sure the twig is installed and the twig engine is turned on in framework.yaml",
|
||||
"",
|
||||
" - If not, install twig, then add the following to config/packages/framework.yaml:",
|
||||
"",
|
||||
"framework:",
|
||||
" # ...",
|
||||
" templating:",
|
||||
" engines: ['twig']"
|
||||
]
|
||||
},
|
||||
"files": {
|
||||
"config/packages/dtc_queue.yaml": {
|
||||
"contents": [
|
||||
"dtc_queue:",
|
||||
" # For full configuration options see:",
|
||||
" # https://github.com/mmucklo/DtcQueueBundle/blob/master/Resources/doc/full-configuration.md",
|
||||
" manager:",
|
||||
" # This parameter is required and should typically be set to one of:",
|
||||
" # [odm|orm|beanstalkd|rabbit_mq|redis]",
|
||||
" job: odm",
|
||||
" timings:",
|
||||
" # Set this to true to record job timing history in a separate table",
|
||||
" # (note: for beanstalkd|rabbit_mq|redis, job_timing or run needs to",
|
||||
" # be set to one of orm|odm under the manager section)",
|
||||
" record: false",
|
||||
" odm:",
|
||||
" # This is only necessary if still using an \"odm\" manager.",
|
||||
" # It only needs to be modified if you want to use a different",
|
||||
" # document manager than the default one",
|
||||
" # (there is a similar parameter for entity_manager if you're",
|
||||
" # using orm)",
|
||||
" #",
|
||||
" # If you don't use odm at all, this can safely be ignored or deleted",
|
||||
" document_manager: default",
|
||||
" priority:",
|
||||
" max: 255",
|
||||
" direction: desc",
|
||||
" admin:",
|
||||
" # chartjs is used to render the job timings graph in the admin section",
|
||||
" chartjs: 'https://cdnjs.cloudflare.com/ajax/libs/Chart.js/2.7.1/Chart.bundle.min.js'",
|
||||
""
|
||||
],
|
||||
"executable": false
|
||||
},
|
||||
"config/routes/dtc_queue.yaml": {
|
||||
"contents": [
|
||||
"dtc_queue:",
|
||||
" resource: '@DtcQueueBundle/Resources/config/routing.yml'",
|
||||
""
|
||||
],
|
||||
"executable": false
|
||||
}
|
||||
},
|
||||
"ref": "825e1d4c885d12b7b1e528356f3795a13a6e4963"
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,56 @@
|
||||
{
|
||||
"manifests": {
|
||||
"mmucklo/queue-bundle": {
|
||||
"manifest": {
|
||||
"bundles": {
|
||||
"Dtc\\QueueBundle\\DtcQueueBundle": [
|
||||
"all"
|
||||
]
|
||||
},
|
||||
"copy-from-recipe": {
|
||||
"config/": "%CONFIG_DIR%/"
|
||||
},
|
||||
"post-install-output": [
|
||||
"Please update config/packages/dtc_queue.yaml to accurately reflect your needs (odm / orm / beanstalkd / rabbit_mq etc.)",
|
||||
" - For a full list of configuration options, see:",
|
||||
" * https://github.com/mmucklo/DtcQueueBundle/Resources/doc/full-configuration.md",
|
||||
"",
|
||||
"For admin, make sure the twig engine is turned on in framework.yaml",
|
||||
"",
|
||||
" - If not, add the following to config/packages/framework.yaml:",
|
||||
"",
|
||||
"framework:",
|
||||
" # ...",
|
||||
" templating:",
|
||||
" engines: ['twig']"
|
||||
]
|
||||
},
|
||||
"files": {
|
||||
"config/packages/dtc_queue.yaml": {
|
||||
"contents": [
|
||||
"dtc_queue:",
|
||||
" default_manager: odm",
|
||||
" record_timings: false",
|
||||
" document_manager: default",
|
||||
" entity_manager: default",
|
||||
" priority_max: 255",
|
||||
" priority_direction: desc",
|
||||
" admin:",
|
||||
" chartjs: 'https://cdnjs.cloudflare.com/ajax/libs/Chart.js/2.7.1/Chart.bundle.min.js'",
|
||||
""
|
||||
],
|
||||
"executable": false
|
||||
},
|
||||
"config/routes/dtc_queue.yaml": {
|
||||
"contents": [
|
||||
"dtc_queue:",
|
||||
" resource: '@DtcQueueBundle/Resources/config/routing.yml'",
|
||||
""
|
||||
],
|
||||
"executable": false
|
||||
}
|
||||
},
|
||||
"ref": "bbdbf104ef6ddb6f7ffcbe79b95d3345bf7643a5"
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user