mirror of
https://github.com/symfony/recipes-contrib.git
synced 2026-09-12 07:36:34 +03:00
Update Flex endpoint
This commit is contained in:
@@ -465,6 +465,7 @@ Additional recipes can be found on the [Main Recipes Repository](https://github.
|
||||
| [nucleos/user-bundle](https://packagist.org/packages/nucleos/user-bundle) | [1.1](../../../tree/main/nucleos/user-bundle/1.1) |
|
||||
| [numberninecms/cms](https://packagist.org/packages/numberninecms/cms) | [0.2](../../../tree/main/numberninecms/cms/0.2) |
|
||||
| [nyholm/sunflower](https://packagist.org/packages/nyholm/sunflower) | [0.2](../../../tree/main/nyholm/sunflower/0.2) |
|
||||
| [nytodev/inertia-bundle](https://packagist.org/packages/nytodev/inertia-bundle) | [2.0](../../../tree/main/nytodev/inertia-bundle/2.0) |
|
||||
| [nzo/url-encryptor-bundle](https://packagist.org/packages/nzo/url-encryptor-bundle) | [6.0](../../../tree/main/nzo/url-encryptor-bundle/6.0) |
|
||||
| [oat-sa/bundle-health-check](https://packagist.org/packages/oat-sa/bundle-health-check) | [1.0](../../../tree/main/oat-sa/bundle-health-check/1.0) |
|
||||
| [oat-sa/bundle-lti1p3](https://packagist.org/packages/oat-sa/bundle-lti1p3) | [3.0](../../../tree/main/oat-sa/bundle-lti1p3/3.0) |
|
||||
|
||||
@@ -0,0 +1,64 @@
|
||||
{
|
||||
"manifests": {
|
||||
"nytodev/inertia-bundle": {
|
||||
"manifest": {
|
||||
"bundles": {
|
||||
"Nytodev\\InertiaBundle\\InertiaBundle": [
|
||||
"all"
|
||||
]
|
||||
},
|
||||
"copy-from-recipe": {
|
||||
"config/": "%CONFIG_DIR%/"
|
||||
},
|
||||
"add-lines": [
|
||||
{
|
||||
"file": "templates/base.html.twig",
|
||||
"content": " {{ inertiaHead(page) }}",
|
||||
"position": "after_target",
|
||||
"target": "{% block javascripts %}",
|
||||
"warn_if_missing": true
|
||||
},
|
||||
{
|
||||
"file": "templates/base.html.twig",
|
||||
"content": " {{ inertia(page) }}",
|
||||
"position": "after_target",
|
||||
"target": "{% block body %}",
|
||||
"warn_if_missing": true
|
||||
}
|
||||
],
|
||||
"post-install-output": [
|
||||
" <bg=blue;fg=white> </>",
|
||||
" <bg=blue;fg=white> Welcome to <options=bold>nytodev/inertia-bundle</> <bg=blue;fg=white> </>",
|
||||
" <bg=blue;fg=white> </>",
|
||||
"",
|
||||
" <fg=blue;options=bold>Next steps:</>",
|
||||
"",
|
||||
" 1. Install your frontend stack (React, Vue or Svelte):",
|
||||
" <comment>npm install @inertiajs/react</> (or vue / svelte)",
|
||||
"",
|
||||
" 2. Adjust <comment>config/packages/inertia.yaml</> to match your setup.",
|
||||
"",
|
||||
" 3. Read the documentation:",
|
||||
" <comment>https://github.com/nytodev/inertia-bundle</>"
|
||||
]
|
||||
},
|
||||
"files": {
|
||||
"config/packages/inertia.yaml": {
|
||||
"contents": [
|
||||
"inertia:",
|
||||
" # The root Twig template used to render the full HTML page on first visit.",
|
||||
" root_view: 'base.html.twig'",
|
||||
"",
|
||||
" # Enable Server-Side Rendering via an external Node.js SSR server.",
|
||||
" # Requires symfony/http-client: composer require symfony/http-client",
|
||||
" ssr_enabled: false",
|
||||
" ssr_url: 'http://127.0.0.1:13714'",
|
||||
""
|
||||
],
|
||||
"executable": false
|
||||
}
|
||||
},
|
||||
"ref": "dd21b7ae89da2606f2d4686057033ddb89f6b237"
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -1478,6 +1478,9 @@
|
||||
"nyholm/sunflower": [
|
||||
"0.2"
|
||||
],
|
||||
"nytodev/inertia-bundle": [
|
||||
"2.0"
|
||||
],
|
||||
"nzo/url-encryptor-bundle": [
|
||||
"6.0"
|
||||
],
|
||||
|
||||
@@ -0,0 +1,64 @@
|
||||
{
|
||||
"manifests": {
|
||||
"nytodev/inertia-bundle": {
|
||||
"manifest": {
|
||||
"bundles": {
|
||||
"Nytodev\\InertiaBundle\\InertiaBundle": [
|
||||
"all"
|
||||
]
|
||||
},
|
||||
"copy-from-recipe": {
|
||||
"config/": "%CONFIG_DIR%/"
|
||||
},
|
||||
"add-lines": [
|
||||
{
|
||||
"file": "templates/base.html.twig",
|
||||
"content": " {{ inertiaHead(page) }}",
|
||||
"position": "after_target",
|
||||
"target": "{% block javascripts %}",
|
||||
"warn_if_missing": true
|
||||
},
|
||||
{
|
||||
"file": "templates/base.html.twig",
|
||||
"content": " {{ inertia(page) }}",
|
||||
"position": "after_target",
|
||||
"target": "{% block body %}",
|
||||
"warn_if_missing": true
|
||||
}
|
||||
],
|
||||
"post-install-output": [
|
||||
" <bg=blue;fg=white> </>",
|
||||
" <bg=blue;fg=white> Welcome to <options=bold>nytodev/inertia-bundle</> <bg=blue;fg=white> </>",
|
||||
" <bg=blue;fg=white> </>",
|
||||
"",
|
||||
" <fg=blue;options=bold>Next steps:</>",
|
||||
"",
|
||||
" 1. Install your frontend stack (React, Vue or Svelte):",
|
||||
" <comment>npm install @inertiajs/react</> (or vue / svelte)",
|
||||
"",
|
||||
" 2. Adjust <comment>config/packages/inertia.yaml</> to match your setup.",
|
||||
"",
|
||||
" 3. Read the documentation:",
|
||||
" <comment>https://github.com/nytodev/inertia-bundle</>"
|
||||
]
|
||||
},
|
||||
"files": {
|
||||
"config/packages/inertia.yaml": {
|
||||
"contents": [
|
||||
"inertia:",
|
||||
" # The root Twig template used to render the full HTML page on first visit.",
|
||||
" root_view: 'base.html.twig'",
|
||||
"",
|
||||
" # Enable Server-Side Rendering via an external Node.js SSR server.",
|
||||
" # Requires symfony/http-client: composer require symfony/http-client",
|
||||
" ssr_enabled: false",
|
||||
" ssr_url: 'http://127.0.0.1:13714'",
|
||||
""
|
||||
],
|
||||
"executable": false
|
||||
}
|
||||
},
|
||||
"ref": "dd21b7ae89da2606f2d4686057033ddb89f6b237"
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user