mirror of
https://github.com/symfony/recipes-contrib.git
synced 2026-09-12 23:56:29 +03:00
Update Flex endpoint
This commit is contained in:
@@ -0,0 +1,51 @@
|
||||
{
|
||||
"manifests": {
|
||||
"survos/command-bundle": {
|
||||
"manifest": {
|
||||
"bundles": {
|
||||
"Survos\\CommandBundle\\SurvosCommandBundle": [
|
||||
"all"
|
||||
]
|
||||
},
|
||||
"copy-from-recipe": {
|
||||
"config/": "%CONFIG_DIR%/"
|
||||
},
|
||||
"post-install-output": [
|
||||
"<bg=green;fg=white> </>",
|
||||
"<bg=green;fg=white> success </>",
|
||||
"<bg=green;fg=white> </>",
|
||||
"",
|
||||
" * <fg=yellow>Next steps:</>",
|
||||
" 1. Configure /config/packages/survos_command.yaml to expose the namespaces (command prefixes)",
|
||||
" 2. <comment>secure the /admin route, customize the route in config/routes/survos_command.yaml</>;",
|
||||
" 3. Visit <href=/admin/commmands>/admin/commands</>."
|
||||
]
|
||||
},
|
||||
"files": {
|
||||
"config/packages/survos_command.yaml": {
|
||||
"contents": [
|
||||
"survos_command:",
|
||||
" # expose app:my-command, etc.",
|
||||
" namespaces: [app]",
|
||||
"",
|
||||
""
|
||||
],
|
||||
"executable": false
|
||||
},
|
||||
"config/routes/survos_command.yaml": {
|
||||
"contents": [
|
||||
"survos_command:",
|
||||
" prefix: /admin/commands",
|
||||
" type: attribute",
|
||||
" resource:",
|
||||
" path: '@SurvosCommandBundle/src/Controller/'",
|
||||
" namespace: Survos\\CommandBundle\\Controller",
|
||||
""
|
||||
],
|
||||
"executable": false
|
||||
}
|
||||
},
|
||||
"ref": "5cdebe13850442f53dae9a5e33aeada55a22e606"
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -16,9 +16,9 @@
|
||||
"<bg=green;fg=white> </>",
|
||||
"",
|
||||
" * <fg=yellow>Next steps:</>",
|
||||
" 1. Configure /config/packages/survos_command.php to expose the namespaces (command prefixes)",
|
||||
" 2. <comment>secure the /admin route, configure the route in config/routes/survos_command.php</>;",
|
||||
" 3. Visit <comment>/admin/commmands</>."
|
||||
" 1. Configure /config/packages/survos_command.yaml to expose the namespaces (command prefixes)",
|
||||
" 2. <comment>secure the /admin route, customize the route in config/routes/survos_command.yaml</>;",
|
||||
" 3. Visit <href=/admin/commmands>/admin/commands</>."
|
||||
]
|
||||
},
|
||||
"files": {
|
||||
@@ -32,23 +32,20 @@
|
||||
],
|
||||
"executable": false
|
||||
},
|
||||
"config/routes/survos_command.php": {
|
||||
"config/routes/survos_command.yaml": {
|
||||
"contents": [
|
||||
"<?php",
|
||||
"use Symfony\\Component\\Routing\\Loader\\Configurator\\RoutingConfigurator;",
|
||||
"",
|
||||
"return static function (RoutingConfigurator $routes): void {",
|
||||
" $routes->import('@SurvosCommandBundle/config/routes.php')",
|
||||
" ->prefix('/admin') // consider adding this path to the access_control key in security",
|
||||
" ;",
|
||||
"};",
|
||||
"",
|
||||
"survos_command:",
|
||||
" prefix: /admin/commands",
|
||||
" type: attribute",
|
||||
" resource:",
|
||||
" path: '@SurvosCommandBundle/src/Controller/'",
|
||||
" namespace: Survos\\CommandBundle\\Controller",
|
||||
""
|
||||
],
|
||||
"executable": false
|
||||
}
|
||||
},
|
||||
"ref": "31483097a99800fa6b049af3c61ad0ebf5727751"
|
||||
"ref": "5cdebe13850442f53dae9a5e33aeada55a22e606"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user