Compare commits

..
Author SHA1 Message Date
github-action[bot]andgithub-action[bot] 5db7142cd8 Create Flex endpoint 2026-08-05 12:11:19 +00:00
3 changed files with 56 additions and 76 deletions
+4 -4
View File
@@ -1,8 +1,8 @@
{
"aliases": [],
"recipes": {
"tailsfadmin/tailsfadmin-bundle": [
"1.0"
"sylius/admin-mcp-server-plugin": [
"0.1"
]
},
"recipe-conflicts": [],
@@ -12,9 +12,9 @@
"_links": {
"repository": "github.com/symfony/recipes-contrib",
"origin_template": "{package}:{version}@github.com/symfony/recipes-contrib:main",
"recipe_template": "https://raw.githubusercontent.com/symfony/recipes-contrib/flex/pull-2047/{package_dotted}.{version}.json",
"recipe_template": "https://raw.githubusercontent.com/symfony/recipes-contrib/flex/pull-2016/{package_dotted}.{version}.json",
"recipe_template_relative": "{package_dotted}.{version}.json",
"archived_recipes_template": "https://raw.githubusercontent.com/symfony/recipes-contrib/flex/pull-2047/archived/{package_dotted}/{ref}.json",
"archived_recipes_template": "https://raw.githubusercontent.com/symfony/recipes-contrib/flex/pull-2016/archived/{package_dotted}/{ref}.json",
"archived_recipes_template_relative": "archived/{package_dotted}/{ref}.json"
}
}
+52
View File
@@ -0,0 +1,52 @@
{
"manifests": {
"sylius/admin-mcp-server-plugin": {
"manifest": {
"bundles": {
"League\\Bundle\\OAuth2ServerBundle\\LeagueOAuth2ServerBundle": [
"all"
],
"Symfony\\AI\\McpBundle\\McpBundle": [
"all"
],
"Sylius\\AdminMcpServerPlugin\\SyliusAdminMcpServerPlugin": [
"all"
]
},
"copy-from-recipe": {
"config/": "%CONFIG_DIR%/"
},
"env": {
"SYLIUS_ADMIN_MCP_SERVER_API_URL": "https://your-domain.com/api/v2/admin/",
"SYLIUS_ADMIN_MCP_SERVER_API_EMAIL": "api@example.com",
"SYLIUS_ADMIN_MCP_SERVER_API_PASSWORD": "your-api-password",
"SYLIUS_ADMIN_MCP_SERVER_VERIFY_SSL": "true",
"SYLIUS_ADMIN_MCP_SERVER_OAUTH_PRIVATE_KEY": "%kernel.project_dir%/config/jwt/mcp_private.pem",
"SYLIUS_ADMIN_MCP_SERVER_OAUTH_PUBLIC_KEY": "%kernel.project_dir%/config/jwt/mcp_public.pem",
"SYLIUS_ADMIN_MCP_SERVER_OAUTH_PASSPHRASE": "",
"SYLIUS_ADMIN_MCP_SERVER_OAUTH_ENCRYPTION_KEY": "your-32-byte-hex-key-here"
}
},
"files": {
"config/packages/sylius_admin_mcp_server.yaml": {
"contents": [
"imports:",
" - { resource: \"@SyliusAdminMcpServerPlugin/config/config.yaml\" }",
""
],
"executable": false
},
"config/routes/sylius_admin_mcp_server.yaml": {
"contents": [
"sylius_admin_mcp_server:",
" resource: \"@SyliusAdminMcpServerPlugin/config/routes.yaml\"",
" type: yaml",
""
],
"executable": false
}
},
"ref": "49dd24b24c7bc34dc224ad3086d15497ee144a21"
}
}
}
-72
View File
@@ -1,72 +0,0 @@
{
"manifests": {
"tailsfadmin/tailsfadmin-bundle": {
"manifest": {
"bundles": {
"Tailsfadmin\\TailsfadminBundle": [
"all"
]
},
"copy-from-recipe": {
"config/": "%CONFIG_DIR%/"
},
"post-install-output": [
"<bg=blue;fg=white> tailsfadmin </> admin theme installed.",
"",
" The bundle ships no CDN dependency \u2014 two steps for the assets:",
"",
" 1. Vendor the components' third-party JS libs (ApexCharts, flatpickr, Dropzone, \u2026):",
" <comment>php bin/console tailsfadmin:assets:install</comment>",
"",
" 2. Import the theme into your Tailwind entrypoint (assets/styles/app.css):",
" <comment>@import \"tailwindcss\";</comment>",
" <comment>@import \"../../vendor/tailsfadmin/tailsfadmin-bundle/assets/styles/theme.css\";</comment>",
"",
" Then compile: <comment>php bin/console tailwind:build && php bin/console asset-map:compile</comment>",
"",
" The controllers' AssetMapper path is already set (config/packages/tailsfadmin_assets.yaml).",
" Documentation: <comment>https://github.com/thibmonier/tailsfadmin#readme</comment>"
]
},
"files": {
"config/packages/tailsfadmin.yaml": {
"contents": [
"# Default configuration for the tailsfadmin admin theme (Flex recipe).",
"# Adjust the menu to your application; `label` values are translation keys (i18n)",
"# or raw labels. See the bundle README.",
"tailsfadmin:",
" default_locale: fr",
" locales: ['fr', 'en', 'ar', 'es', 'de']",
" rtl_locales: ['ar']",
" menu:",
" -",
" group: menu.groups.menu",
" items:",
" - { label: menu.dashboard, path: /, icon: dashboard }",
""
],
"executable": false
},
"config/packages/tailsfadmin_assets.yaml": {
"contents": [
"# AssetMapper path for the bundle's Stimulus controllers (Flex recipe).",
"#",
"# The bundle's prepend() does not survive the Flex config merge, so the controllers",
"# path (and the FullCalendar vendor-src shim) is declared here, on the host side.",
"# Kept in a SEPARATE file on purpose: Symfony merges framework.asset_mapper.paths",
"# from every config/packages/ file, so this adds to your asset_mapper.yaml",
"# without overwriting it.",
"framework:",
" asset_mapper:",
" paths:",
" 'vendor/tailsfadmin/tailsfadmin-bundle/assets/controllers': 'bundles/tailsfadmin'",
" 'vendor/tailsfadmin/tailsfadmin-bundle/assets/vendor-src': 'bundles/tailsfadmin-vendor'",
""
],
"executable": false
}
},
"ref": "37aa5c1b2213c3051ea88e7c0c4dc3b970302dd9"
}
}
}