mirror of
https://github.com/symfony/recipes-contrib.git
synced 2026-09-12 23:56:29 +03:00
Compare commits
1
Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
1e26fffdab |
@@ -1,67 +0,0 @@
|
|||||||
{
|
|
||||||
"manifests": {
|
|
||||||
"gplanchat/durable-bundle": {
|
|
||||||
"manifest": {
|
|
||||||
"bundles": {
|
|
||||||
"Gplanchat\\Durable\\Bundle\\DurableBundle": [
|
|
||||||
"all"
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"copy-from-recipe": {
|
|
||||||
"config/": "%CONFIG_DIR%/"
|
|
||||||
},
|
|
||||||
"env": {
|
|
||||||
"#1": "Where workflow resumes and activity runs are queued.",
|
|
||||||
"#2": "sync:// handles them in the same process, which matches the in_memory",
|
|
||||||
"#3": "backend the config starts from. Point them at a real transport",
|
|
||||||
"#4": "(doctrine://, amqp://, redis://) when you move the journal off memory.",
|
|
||||||
"MESSENGER_DURABLE_WORKFLOW_DSN": "sync://",
|
|
||||||
"MESSENGER_DURABLE_ACTIVITY_DSN": "sync://"
|
|
||||||
},
|
|
||||||
"post-install-output": [
|
|
||||||
" * Durable starts on the <comment>in_memory</comment> backend: workflows run, and are lost with the process.",
|
|
||||||
" Set <comment>event_store.type</comment> and <comment>workflow_metadata.type</comment> to <comment>dbal</comment> in",
|
|
||||||
" <comment>config/packages/durable.yaml</comment> to keep the journal in your database, and point the two",
|
|
||||||
" <comment>MESSENGER_DURABLE_*_DSN</comment> variables at a real transport.",
|
|
||||||
"",
|
|
||||||
" * Then run the workers:",
|
|
||||||
" <comment>php bin/console messenger:consume durable_workflows durable_activities</comment>",
|
|
||||||
"",
|
|
||||||
" * Documentation: <comment>https://durable.rocks/docs/getting-started/</comment>"
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"files": {
|
|
||||||
"config/packages/durable.yaml": {
|
|
||||||
"contents": [
|
|
||||||
"durable:",
|
|
||||||
" # in_memory keeps the journal in the PHP process: right for tests, lost on restart.",
|
|
||||||
" # Use dbal to keep it in your database, or set temporal.dsn to reach a Temporal cluster.",
|
|
||||||
" event_store:",
|
|
||||||
" type: in_memory",
|
|
||||||
" workflow_metadata:",
|
|
||||||
" type: in_memory",
|
|
||||||
" activity_transport:",
|
|
||||||
" type: messenger",
|
|
||||||
" transport_name: durable_activities",
|
|
||||||
"",
|
|
||||||
"framework:",
|
|
||||||
" messenger:",
|
|
||||||
" transports:",
|
|
||||||
" durable_workflows: '%env(MESSENGER_DURABLE_WORKFLOW_DSN)%'",
|
|
||||||
" durable_activities: '%env(MESSENGER_DURABLE_ACTIVITY_DSN)%'",
|
|
||||||
"",
|
|
||||||
" routing:",
|
|
||||||
" Gplanchat\\Durable\\Transport\\ResumeWorkflowMessage: durable_workflows",
|
|
||||||
" Gplanchat\\Durable\\Transport\\ActivityMessage: durable_activities",
|
|
||||||
" Gplanchat\\Durable\\Transport\\FireWorkflowTimersMessage: sync",
|
|
||||||
" Gplanchat\\Durable\\Transport\\DeliverWorkflowSignalMessage: sync",
|
|
||||||
" Gplanchat\\Durable\\Transport\\DeliverWorkflowUpdateMessage: sync",
|
|
||||||
""
|
|
||||||
],
|
|
||||||
"executable": false
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"ref": "e438ab8d3b5aa6199ad13f3598acead044a4374b"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
+5
-4
@@ -1,8 +1,9 @@
|
|||||||
{
|
{
|
||||||
"aliases": [],
|
"aliases": [],
|
||||||
"recipes": {
|
"recipes": {
|
||||||
"gplanchat/durable-bundle": [
|
"inspector-apm/inspector-symfony": [
|
||||||
"0.1"
|
"1.0",
|
||||||
|
"1.3"
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
"recipe-conflicts": [],
|
"recipe-conflicts": [],
|
||||||
@@ -12,9 +13,9 @@
|
|||||||
"_links": {
|
"_links": {
|
||||||
"repository": "github.com/symfony/recipes-contrib",
|
"repository": "github.com/symfony/recipes-contrib",
|
||||||
"origin_template": "{package}:{version}@github.com/symfony/recipes-contrib:main",
|
"origin_template": "{package}:{version}@github.com/symfony/recipes-contrib:main",
|
||||||
"recipe_template": "https://raw.githubusercontent.com/symfony/recipes-contrib/flex/pull-2041/{package_dotted}.{version}.json",
|
"recipe_template": "https://raw.githubusercontent.com/symfony/recipes-contrib/flex/pull-1725/{package_dotted}.{version}.json",
|
||||||
"recipe_template_relative": "{package_dotted}.{version}.json",
|
"recipe_template_relative": "{package_dotted}.{version}.json",
|
||||||
"archived_recipes_template": "https://raw.githubusercontent.com/symfony/recipes-contrib/flex/pull-2041/archived/{package_dotted}/{ref}.json",
|
"archived_recipes_template": "https://raw.githubusercontent.com/symfony/recipes-contrib/flex/pull-1725/archived/{package_dotted}/{ref}.json",
|
||||||
"archived_recipes_template_relative": "archived/{package_dotted}/{ref}.json"
|
"archived_recipes_template_relative": "archived/{package_dotted}/{ref}.json"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -0,0 +1,79 @@
|
|||||||
|
{
|
||||||
|
"manifests": {
|
||||||
|
"inspector-apm/inspector-symfony": {
|
||||||
|
"manifest": {
|
||||||
|
"bundles": {
|
||||||
|
"Inspector\\Symfony\\Bundle\\InspectorBundle": [
|
||||||
|
"all"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"copy-from-recipe": {
|
||||||
|
"config/": "%CONFIG_DIR%/"
|
||||||
|
},
|
||||||
|
"env": {
|
||||||
|
"INSPECTOR_INGESTION_KEY": ""
|
||||||
|
},
|
||||||
|
"post-install-output": [
|
||||||
|
" * <fg=blue>Read</> the full documentation to properly configure your",
|
||||||
|
" Symfony application at <comment>https://docs.inspector.dev/</>"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"files": {
|
||||||
|
"config/packages/inspector.yaml": {
|
||||||
|
"contents": [
|
||||||
|
"inspector:",
|
||||||
|
" ingestion_key: '%env(INSPECTOR_INGESTION_KEY)%'",
|
||||||
|
" ignore_routes:",
|
||||||
|
" - '_wdt'",
|
||||||
|
" - '_profiler'",
|
||||||
|
" - '_profiler_home'",
|
||||||
|
" - '_profiler_search'",
|
||||||
|
" - '_profiler_search_bar'",
|
||||||
|
" - '_profiler_phpinfo'",
|
||||||
|
" - '_profiler_search_results'",
|
||||||
|
" - '_profiler_open_file'",
|
||||||
|
" - '_profiler_router'",
|
||||||
|
" - '_profiler_exception'",
|
||||||
|
" - '_profiler_exception_css'",
|
||||||
|
" ignore_commands:",
|
||||||
|
" - 'debug:autowiring'",
|
||||||
|
" - 'debug:config'",
|
||||||
|
" - 'debug:container'",
|
||||||
|
" - 'debug:event-dispatcher'",
|
||||||
|
" - 'debug:form'",
|
||||||
|
" - 'debug:router'",
|
||||||
|
" - 'debug:translation'",
|
||||||
|
" - 'debug:twig'",
|
||||||
|
" - 'debug:validator'",
|
||||||
|
" - 'make:auth'",
|
||||||
|
" - 'make:command'",
|
||||||
|
" - 'make:controller'",
|
||||||
|
" - 'make:crud'",
|
||||||
|
" - 'make:docker:database'",
|
||||||
|
" - 'make:entity'",
|
||||||
|
" - 'make:fixtures'",
|
||||||
|
" - 'make:form'",
|
||||||
|
" - 'make:functional-test'",
|
||||||
|
" - 'make:message'",
|
||||||
|
" - 'make:messenger-middleware'",
|
||||||
|
" - 'make:migration'",
|
||||||
|
" - 'make:registration-form'",
|
||||||
|
" - 'make:reset-password'",
|
||||||
|
" - 'make:serializer:encoder'",
|
||||||
|
" - 'make:serializer:normalizer'",
|
||||||
|
" - 'make:subscriber'",
|
||||||
|
" - 'make:test'",
|
||||||
|
" - 'make:twig-extension'",
|
||||||
|
" - 'make:unit-test'",
|
||||||
|
" - 'make:user'",
|
||||||
|
" - 'make:validator'",
|
||||||
|
" - 'make:voter'",
|
||||||
|
""
|
||||||
|
],
|
||||||
|
"executable": false
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"ref": "fefb11e1366fc61c05f82296d98d4fb3210aa06d"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,79 @@
|
|||||||
|
{
|
||||||
|
"manifests": {
|
||||||
|
"inspector-apm/inspector-symfony": {
|
||||||
|
"manifest": {
|
||||||
|
"bundles": {
|
||||||
|
"Inspector\\Symfony\\Bundle\\InspectorBundle": [
|
||||||
|
"all"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"copy-from-recipe": {
|
||||||
|
"config/": "%CONFIG_DIR%/"
|
||||||
|
},
|
||||||
|
"env": {
|
||||||
|
"INSPECTOR_INGESTION_KEY": ""
|
||||||
|
},
|
||||||
|
"post-install-output": [
|
||||||
|
" * <fg=blue>Read</> the full documentation to properly configure your",
|
||||||
|
" Symfony application at <comment>https://docs.inspector.dev/</>"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"files": {
|
||||||
|
"config/packages/inspector.yaml": {
|
||||||
|
"contents": [
|
||||||
|
"inspector:",
|
||||||
|
" ingestion_key: '%env(INSPECTOR_INGESTION_KEY)%'",
|
||||||
|
" enabled: true",
|
||||||
|
" transport: async",
|
||||||
|
" ignore_routes:",
|
||||||
|
" - '/_wdt*'",
|
||||||
|
" - '/_profiler*'",
|
||||||
|
" ignore_commands:",
|
||||||
|
" - 'messenger:consume'",
|
||||||
|
" - 'assets:install'",
|
||||||
|
" - 'cache:clear'",
|
||||||
|
" - 'doctrine:migrations:migrate'",
|
||||||
|
" - 'schedule:run'",
|
||||||
|
"",
|
||||||
|
" # Development commands section",
|
||||||
|
" - 'debug:autowiring'",
|
||||||
|
" - 'debug:config'",
|
||||||
|
" - 'debug:container'",
|
||||||
|
" - 'debug:event-dispatcher'",
|
||||||
|
" - 'debug:form'",
|
||||||
|
" - 'debug:router'",
|
||||||
|
" - 'debug:translation'",
|
||||||
|
" - 'debug:twig'",
|
||||||
|
" - 'debug:validator'",
|
||||||
|
" - 'make:auth'",
|
||||||
|
" - 'make:command'",
|
||||||
|
" - 'make:controller'",
|
||||||
|
" - 'make:crud'",
|
||||||
|
" - 'make:docker:database'",
|
||||||
|
" - 'make:entity'",
|
||||||
|
" - 'make:fixtures'",
|
||||||
|
" - 'make:form'",
|
||||||
|
" - 'make:functional-test'",
|
||||||
|
" - 'make:message'",
|
||||||
|
" - 'make:messenger-middleware'",
|
||||||
|
" - 'make:migration'",
|
||||||
|
" - 'make:registration-form'",
|
||||||
|
" - 'make:reset-password'",
|
||||||
|
" - 'make:serializer:encoder'",
|
||||||
|
" - 'make:serializer:normalizer'",
|
||||||
|
" - 'make:subscriber'",
|
||||||
|
" - 'make:test'",
|
||||||
|
" - 'make:twig-extension'",
|
||||||
|
" - 'make:unit-test'",
|
||||||
|
" - 'make:user'",
|
||||||
|
" - 'make:validator'",
|
||||||
|
" - 'make:voter'",
|
||||||
|
""
|
||||||
|
],
|
||||||
|
"executable": false
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"ref": "4cf3861cbf9657d2ff27f772e7cd61a520d4110d"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user