mirror of
https://github.com/symfony/recipes.git
synced 2026-09-12 07:36:30 +03:00
Update Flex endpoint
This commit is contained in:
@@ -150,6 +150,7 @@ Additional recipes can be found on the [Contrib Recipes Repository](https://gith
|
||||
| [symfony/unifonic-notifier](https://packagist.org/packages/symfony/unifonic-notifier) | [7.1](symfony/unifonic-notifier/7.1) | `unifonic-notifier`, `unifonicnotifier` |
|
||||
| [symfony/ux-autocomplete](https://packagist.org/packages/symfony/ux-autocomplete) | [2.6](symfony/ux-autocomplete/2.6) | `ux-autocomplete`, `uxautocomplete` |
|
||||
| [symfony/ux-icons](https://packagist.org/packages/symfony/ux-icons) | [2.17](symfony/ux-icons/2.17) | `ux-icons`, `uxicons` |
|
||||
| [symfony/ux-lazy-image](https://packagist.org/packages/symfony/ux-lazy-image) | [2.18](symfony/ux-lazy-image/2.18) | `ux-lazy-image`, `uxlazyimage` |
|
||||
| [symfony/ux-live-component](https://packagist.org/packages/symfony/ux-live-component) | [2.6](symfony/ux-live-component/2.6) | `ux-live-component`, `uxlivecomponent` |
|
||||
| [symfony/ux-react](https://packagist.org/packages/symfony/ux-react) | [2.9](symfony/ux-react/2.9) | `ux-react`, `uxreact` |
|
||||
| [symfony/ux-svelte](https://packagist.org/packages/symfony/ux-svelte) | [2.9](symfony/ux-svelte/2.9) | `ux-svelte`, `uxsvelte` |
|
||||
|
||||
@@ -0,0 +1,36 @@
|
||||
{
|
||||
"manifests": {
|
||||
"symfony/ux-lazy-image": {
|
||||
"manifest": {
|
||||
"bundles": {
|
||||
"Symfony\\UX\\LazyImage\\LazyImageBundle": [
|
||||
"all"
|
||||
]
|
||||
},
|
||||
"copy-from-recipe": {
|
||||
"config/": "%CONFIG_DIR%/"
|
||||
}
|
||||
},
|
||||
"files": {
|
||||
"config/packages/lazy_image.yaml": {
|
||||
"contents": [
|
||||
"# lazy_image:",
|
||||
" # It is recommended to cache the generated BlurHash for performance reasons, to avoid generating it for each request.",
|
||||
" # https://symfony.com/bundles/ux-lazy-image/current/index.html#performance-considerations",
|
||||
" # cache: cache.lazy_image",
|
||||
"",
|
||||
"framework:",
|
||||
" cache:",
|
||||
" # pools:",
|
||||
" # cache.lazy_image: ",
|
||||
" # If possible, prefer to use a cache adapter that is not cleared between deployments, like \"cache.adapter.redis\"",
|
||||
" # adapter: cache.app",
|
||||
""
|
||||
],
|
||||
"executable": false
|
||||
}
|
||||
},
|
||||
"ref": "5605622849aeea46d318684a9e68976837b6dab9"
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,41 @@
|
||||
{
|
||||
"manifests": {
|
||||
"symfony/ux-lazy-image": {
|
||||
"manifest": {
|
||||
"bundles": {
|
||||
"Symfony\\UX\\LazyImage\\LazyImageBundle": [
|
||||
"all"
|
||||
]
|
||||
},
|
||||
"copy-from-recipe": {
|
||||
"config/": "%CONFIG_DIR%/"
|
||||
}
|
||||
},
|
||||
"files": {
|
||||
"config/packages/lazy_image.yaml": {
|
||||
"contents": [
|
||||
"# lazy_image:",
|
||||
" # By default, images are fetched through \"file_get_contents\" function, but you can use your own implementation ",
|
||||
" # with an invokable service or a callable. ",
|
||||
" # https://symfony.com/bundles/ux-lazy-image/current/index.html#customizing-images-fetching",
|
||||
" # fetch_image_content: 'App\\BlurHash\\FetchImageContent'",
|
||||
"",
|
||||
" # It is recommended to cache the generated BlurHash for performance reasons, to avoid generating it for each request.",
|
||||
" # https://symfony.com/bundles/ux-lazy-image/current/index.html#performance-considerations",
|
||||
" # cache: cache.lazy_image",
|
||||
"",
|
||||
"framework:",
|
||||
" cache:",
|
||||
" # pools:",
|
||||
" # cache.lazy_image: ",
|
||||
" # If possible, prefer to use a cache adapter that is not cleared between deployments, like \"cache.adapter.redis\"",
|
||||
" # adapter: cache.app",
|
||||
""
|
||||
],
|
||||
"executable": false
|
||||
}
|
||||
},
|
||||
"ref": "f6554b7efe60280645ac979c80700f66b8432131"
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -435,6 +435,7 @@
|
||||
"ux": "symfony/webpack-encore-bundle",
|
||||
"ux-autocomplete": "symfony/ux-autocomplete",
|
||||
"ux-icons": "symfony/ux-icons",
|
||||
"ux-lazy-image": "symfony/ux-lazy-image",
|
||||
"ux-live-component": "symfony/ux-live-component",
|
||||
"ux-react": "symfony/ux-react",
|
||||
"ux-svelte": "symfony/ux-svelte",
|
||||
@@ -443,6 +444,7 @@
|
||||
"ux-vue": "symfony/ux-vue",
|
||||
"uxautocomplete": "symfony/ux-autocomplete",
|
||||
"uxicons": "symfony/ux-icons",
|
||||
"uxlazyimage": "symfony/ux-lazy-image",
|
||||
"uxlivecomponent": "symfony/ux-live-component",
|
||||
"uxreact": "symfony/ux-react",
|
||||
"uxsvelte": "symfony/ux-svelte",
|
||||
@@ -1018,6 +1020,10 @@
|
||||
"symfony/ux-icons": [
|
||||
"2.17"
|
||||
],
|
||||
"symfony/ux-lazy-image": [
|
||||
"2.17",
|
||||
"2.18"
|
||||
],
|
||||
"symfony/ux-live-component": [
|
||||
"2.0",
|
||||
"2.6"
|
||||
|
||||
@@ -0,0 +1,36 @@
|
||||
{
|
||||
"manifests": {
|
||||
"symfony/ux-lazy-image": {
|
||||
"manifest": {
|
||||
"bundles": {
|
||||
"Symfony\\UX\\LazyImage\\LazyImageBundle": [
|
||||
"all"
|
||||
]
|
||||
},
|
||||
"copy-from-recipe": {
|
||||
"config/": "%CONFIG_DIR%/"
|
||||
}
|
||||
},
|
||||
"files": {
|
||||
"config/packages/lazy_image.yaml": {
|
||||
"contents": [
|
||||
"# lazy_image:",
|
||||
" # It is recommended to cache the generated BlurHash for performance reasons, to avoid generating it for each request.",
|
||||
" # https://symfony.com/bundles/ux-lazy-image/current/index.html#performance-considerations",
|
||||
" # cache: cache.lazy_image",
|
||||
"",
|
||||
"framework:",
|
||||
" cache:",
|
||||
" # pools:",
|
||||
" # cache.lazy_image: ",
|
||||
" # If possible, prefer to use a cache adapter that is not cleared between deployments, like \"cache.adapter.redis\"",
|
||||
" # adapter: cache.app",
|
||||
""
|
||||
],
|
||||
"executable": false
|
||||
}
|
||||
},
|
||||
"ref": "5605622849aeea46d318684a9e68976837b6dab9"
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,41 @@
|
||||
{
|
||||
"manifests": {
|
||||
"symfony/ux-lazy-image": {
|
||||
"manifest": {
|
||||
"bundles": {
|
||||
"Symfony\\UX\\LazyImage\\LazyImageBundle": [
|
||||
"all"
|
||||
]
|
||||
},
|
||||
"copy-from-recipe": {
|
||||
"config/": "%CONFIG_DIR%/"
|
||||
}
|
||||
},
|
||||
"files": {
|
||||
"config/packages/lazy_image.yaml": {
|
||||
"contents": [
|
||||
"# lazy_image:",
|
||||
" # By default, images are fetched through \"file_get_contents\" function, but you can use your own implementation ",
|
||||
" # with an invokable service or a callable. ",
|
||||
" # https://symfony.com/bundles/ux-lazy-image/current/index.html#customizing-images-fetching",
|
||||
" # fetch_image_content: 'App\\BlurHash\\FetchImageContent'",
|
||||
"",
|
||||
" # It is recommended to cache the generated BlurHash for performance reasons, to avoid generating it for each request.",
|
||||
" # https://symfony.com/bundles/ux-lazy-image/current/index.html#performance-considerations",
|
||||
" # cache: cache.lazy_image",
|
||||
"",
|
||||
"framework:",
|
||||
" cache:",
|
||||
" # pools:",
|
||||
" # cache.lazy_image: ",
|
||||
" # If possible, prefer to use a cache adapter that is not cleared between deployments, like \"cache.adapter.redis\"",
|
||||
" # adapter: cache.app",
|
||||
""
|
||||
],
|
||||
"executable": false
|
||||
}
|
||||
},
|
||||
"ref": "f6554b7efe60280645ac979c80700f66b8432131"
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user