mirror of
https://github.com/symfony/recipes-contrib.git
synced 2026-09-15 17:16:29 +03:00
Update Flex endpoint
This commit is contained in:
@@ -516,6 +516,7 @@ Additional recipes can be found on the [Main Recipes Repository](https://github.
|
||||
| [sulu/webpack-encore](https://packagist.org/packages/sulu/webpack-encore) | [1.0](sulu/webpack-encore/1.0) |
|
||||
| [suncat/mobile-detect-bundle](https://packagist.org/packages/suncat/mobile-detect-bundle) | [1.0](suncat/mobile-detect-bundle/1.0) |
|
||||
| [survos/barcode-bundle](https://packagist.org/packages/survos/barcode-bundle) | [1.0](survos/barcode-bundle/1.0) |
|
||||
| [survos/command-bundle](https://packagist.org/packages/survos/command-bundle) | [1.5](survos/command-bundle/1.5) |
|
||||
| [svc/contactform-bundle](https://packagist.org/packages/svc/contactform-bundle) | [1.0](svc/contactform-bundle/1.0) |
|
||||
| [svc/param-bundle](https://packagist.org/packages/svc/param-bundle) | [1.0](svc/param-bundle/1.0) |
|
||||
| [svc/util-bundle](https://packagist.org/packages/svc/util-bundle) | [1.0](svc/util-bundle/1.0) |
|
||||
|
||||
@@ -0,0 +1,54 @@
|
||||
{
|
||||
"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.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</>."
|
||||
]
|
||||
},
|
||||
"files": {
|
||||
"config/packages/survos_command.yaml": {
|
||||
"contents": [
|
||||
"survos_command:",
|
||||
" # expose app:my-command, etc.",
|
||||
" namespaces: [app]",
|
||||
"",
|
||||
""
|
||||
],
|
||||
"executable": false
|
||||
},
|
||||
"config/routes/survos_command.php": {
|
||||
"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",
|
||||
" ;",
|
||||
"};",
|
||||
"",
|
||||
""
|
||||
],
|
||||
"executable": false
|
||||
}
|
||||
},
|
||||
"ref": "31483097a99800fa6b049af3c61ad0ebf5727751"
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -1632,6 +1632,9 @@
|
||||
"survos/barcode-bundle": [
|
||||
"1.0"
|
||||
],
|
||||
"survos/command-bundle": [
|
||||
"1.5"
|
||||
],
|
||||
"svc/contactform-bundle": [
|
||||
"1.0"
|
||||
],
|
||||
|
||||
@@ -0,0 +1,54 @@
|
||||
{
|
||||
"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.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</>."
|
||||
]
|
||||
},
|
||||
"files": {
|
||||
"config/packages/survos_command.yaml": {
|
||||
"contents": [
|
||||
"survos_command:",
|
||||
" # expose app:my-command, etc.",
|
||||
" namespaces: [app]",
|
||||
"",
|
||||
""
|
||||
],
|
||||
"executable": false
|
||||
},
|
||||
"config/routes/survos_command.php": {
|
||||
"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",
|
||||
" ;",
|
||||
"};",
|
||||
"",
|
||||
""
|
||||
],
|
||||
"executable": false
|
||||
}
|
||||
},
|
||||
"ref": "31483097a99800fa6b049af3c61ad0ebf5727751"
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user