Update Flex endpoint

This commit is contained in:
github-action[bot]
2024-01-20 08:52:50 +00:00
parent 50a482fd6b
commit 05483b773d
4 changed files with 184 additions and 0 deletions
+1
View File
@@ -19,6 +19,7 @@ Additional recipes can be found on the [Main Recipes Repository](https://github.
| [alexgeno/phone-verification-bundle](https://packagist.org/packages/alexgeno/phone-verification-bundle) | [1.0](alexgeno/phone-verification-bundle/1.0) |
| [algolia/algolia-search-bundle](https://packagist.org/packages/algolia/algolia-search-bundle) | [2.2](algolia/algolia-search-bundle/2.2) |
| [algolia/search-bundle](https://packagist.org/packages/algolia/search-bundle) | [3.0](algolia/search-bundle/3.0) |
| [alms/cycle-bundle](https://packagist.org/packages/alms/cycle-bundle) | [0.1](alms/cycle-bundle/0.1) |
| [ambient-link/ability-sdk](https://packagist.org/packages/ambient-link/ability-sdk) | [1.0](ambient-link/ability-sdk/1.0) |
| [andchir/omnipay-bundle](https://packagist.org/packages/andchir/omnipay-bundle) | [1.0](andchir/omnipay-bundle/1.0) |
| [andchir/shopkeeper4-comments](https://packagist.org/packages/andchir/shopkeeper4-comments) | [1.0](andchir/shopkeeper4-comments/1.0) |
+90
View File
@@ -0,0 +1,90 @@
{
"manifests": {
"alms/cycle-bundle": {
"manifest": {
"bundles": {
"Alms\\Bundle\\CycleBundle\\CycleBundle": [
"all"
]
},
"copy-from-recipe": {
"config/": "%CONFIG_DIR%/",
"src/": "%SRC_DIR%/",
"migrations/": "migrations/"
},
"env": {
"DB_DRIVER": "mysql",
"DB_HOST": "localhost",
"DB_PORT": "3306",
"DB_NAME": "app",
"DB_USER": "root",
"DB_PASSWORD": "secret"
},
"post-install-output": [
" * Modify your database config in <fg=green>.env</>"
]
},
"files": {
"config/packages/cycle.yaml": {
"contents": [
"cycle:",
" dbal:",
" databases:",
" default:",
" connection: default_connection",
"",
" connections:",
" default_connection:",
" driver: mysql",
" host: '%env(resolve:DB_HOST)%'",
" port: '%env(int:DB_PORT)%'",
" dbname: '%env(resolve:DB_NAME)%'",
" user: '%env(resolve:DB_USER)%'",
" password: '%env(resolve:DB_PASSWORD)%'",
" charset: utf8",
"",
" orm:",
" schema:",
" type: attribute",
" dir: \"%kernel.project_dir%/src/Entity\"",
" cache_dir: \"%kernel.cache_dir%/cycle\"",
" relation:",
" fk_create: false",
" index_create: false",
"",
" migration:",
" directory: \"%kernel.project_dir%/migrations\"",
"",
"when@test:",
" cycle:",
" dbal:",
" connections:",
" default_connection:",
" dbname: 'test_%env(resolve:DB_NAME)%'",
""
],
"executable": false
},
"migrations/.gitignore": {
"contents": [
""
],
"executable": false
},
"src/Entity/.gitignore": {
"contents": [
""
],
"executable": false
},
"src/Repository/.gitignore": {
"contents": [
""
],
"executable": false
}
},
"ref": "db04f405d0e0c052eceaab87a1878d0c2ab2b955"
}
}
}
@@ -0,0 +1,90 @@
{
"manifests": {
"alms/cycle-bundle": {
"manifest": {
"bundles": {
"Alms\\Bundle\\CycleBundle\\CycleBundle": [
"all"
]
},
"copy-from-recipe": {
"config/": "%CONFIG_DIR%/",
"src/": "%SRC_DIR%/",
"migrations/": "migrations/"
},
"env": {
"DB_DRIVER": "mysql",
"DB_HOST": "localhost",
"DB_PORT": "3306",
"DB_NAME": "app",
"DB_USER": "root",
"DB_PASSWORD": "secret"
},
"post-install-output": [
" * Modify your database config in <fg=green>.env</>"
]
},
"files": {
"config/packages/cycle.yaml": {
"contents": [
"cycle:",
" dbal:",
" databases:",
" default:",
" connection: default_connection",
"",
" connections:",
" default_connection:",
" driver: mysql",
" host: '%env(resolve:DB_HOST)%'",
" port: '%env(int:DB_PORT)%'",
" dbname: '%env(resolve:DB_NAME)%'",
" user: '%env(resolve:DB_USER)%'",
" password: '%env(resolve:DB_PASSWORD)%'",
" charset: utf8",
"",
" orm:",
" schema:",
" type: attribute",
" dir: \"%kernel.project_dir%/src/Entity\"",
" cache_dir: \"%kernel.cache_dir%/cycle\"",
" relation:",
" fk_create: false",
" index_create: false",
"",
" migration:",
" directory: \"%kernel.project_dir%/migrations\"",
"",
"when@test:",
" cycle:",
" dbal:",
" connections:",
" default_connection:",
" dbname: 'test_%env(resolve:DB_NAME)%'",
""
],
"executable": false
},
"migrations/.gitignore": {
"contents": [
""
],
"executable": false
},
"src/Entity/.gitignore": {
"contents": [
""
],
"executable": false
},
"src/Repository/.gitignore": {
"contents": [
""
],
"executable": false
}
},
"ref": "db04f405d0e0c052eceaab87a1878d0c2ab2b955"
}
}
}
+3
View File
@@ -46,6 +46,9 @@
"algolia/search-bundle": [
"3.0"
],
"alms/cycle-bundle": [
"0.1"
],
"ambient-link/ability-sdk": [
"1.0"
],