Update Flex endpoint

This commit is contained in:
github-action[bot]
2022-07-08 11:46:49 +00:00
parent d7ff1f1b21
commit beb79d1ad1
10 changed files with 324 additions and 5 deletions
+3 -1
View File
@@ -5,6 +5,7 @@ Additional recipes can be found on the [Main Recipes Repository](https://github.
| Package | Latest Recipe |
| --- | --- |
| [abel/keycloak-bearer-only-adapter-bundle](https://packagist.org/packages/abel/keycloak-bearer-only-adapter-bundle) | [1.0](abel/keycloak-bearer-only-adapter-bundle/1.0) |
| [ablaise/meteion-bundle](https://packagist.org/packages/ablaise/meteion-bundle) | [1.0](ablaise/meteion-bundle/1.0) |
| [ad3n/ratchet-bundle](https://packagist.org/packages/ad3n/ratchet-bundle) | [0.4](ad3n/ratchet-bundle/0.4) |
| [adback/adback-sdk-php-symfony](https://packagist.org/packages/adback/adback-sdk-php-symfony) | [2.4](adback/adback-sdk-php-symfony/2.4) |
| [adlarge/fixtures-documentation-bundle](https://packagist.org/packages/adlarge/fixtures-documentation-bundle) | [1.1](adlarge/fixtures-documentation-bundle/1.1) |
@@ -111,7 +112,7 @@ Additional recipes can be found on the [Main Recipes Repository](https://github.
| [disjfa/translation-bundle](https://packagist.org/packages/disjfa/translation-bundle) | [0.1](disjfa/translation-bundle/0.1) |
| [dobryprogramator/smartform-bundle](https://packagist.org/packages/dobryprogramator/smartform-bundle) | [1.0](dobryprogramator/smartform-bundle/1.0) |
| [dockfony/dockfony](https://packagist.org/packages/dockfony/dockfony) | [5.0](dockfony/dockfony/5.0) |
| [doctrine/mongodb-odm-bundle](https://packagist.org/packages/doctrine/mongodb-odm-bundle) | [4.1](doctrine/mongodb-odm-bundle/4.1) |
| [doctrine/mongodb-odm-bundle](https://packagist.org/packages/doctrine/mongodb-odm-bundle) | [4.4](doctrine/mongodb-odm-bundle/4.4) |
| [doctrine/phpcr-bundle](https://packagist.org/packages/doctrine/phpcr-bundle) | [2.0](doctrine/phpcr-bundle/2.0) |
| [doctrine/phpcr-dbal-symfony-pack](https://packagist.org/packages/doctrine/phpcr-dbal-symfony-pack) | [1.0](doctrine/phpcr-dbal-symfony-pack/1.0) |
| [drenso/symfony-oidc-bundle](https://packagist.org/packages/drenso/symfony-oidc-bundle) | [2.0](drenso/symfony-oidc-bundle/2.0) |
@@ -420,6 +421,7 @@ Additional recipes can be found on the [Main Recipes Repository](https://github.
| [redirectionio/proxy-symfony](https://packagist.org/packages/redirectionio/proxy-symfony) | [0.2](redirectionio/proxy-symfony/0.2) |
| [redjanym/fcm-bundle](https://packagist.org/packages/redjanym/fcm-bundle) | [1.1](redjanym/fcm-bundle/1.1) |
| [redrat/api-helper-bundle](https://packagist.org/packages/redrat/api-helper-bundle) | [0.1](redrat/api-helper-bundle/0.1) |
| [request-tracing/request-tracing-bundle](https://packagist.org/packages/request-tracing/request-tracing-bundle) | [0.1](request-tracing/request-tracing-bundle/0.1) |
| [rikudou/psr6-dynamo-db-bundle](https://packagist.org/packages/rikudou/psr6-dynamo-db-bundle) | [2.0](rikudou/psr6-dynamo-db-bundle/2.0) |
| [ro0nl/http-responder](https://packagist.org/packages/ro0nl/http-responder) | [0.1](ro0nl/http-responder/0.1) |
| [rokka/client-bundle](https://packagist.org/packages/rokka/client-bundle) | [1.0](rokka/client-bundle/1.0) |
+31
View File
@@ -0,0 +1,31 @@
{
"manifests": {
"ablaise/meteion-bundle": {
"manifest": {
"bundles": {
"MeteionBundle\\MeteionBundle": [
"all"
]
},
"copy-from-recipe": {
"config/": "%CONFIG_DIR%/"
},
"env": {
"METEION_RAWEXD_PATH": "/path/to/rawexd"
}
},
"files": {
"config/packages/meteion.yaml": {
"contents": [
"meteion:",
" dbal_connection: 'default'",
" rawexd_path: '%env(METEION_RAWEXD_PATH)%'",
""
],
"executable": false
}
},
"ref": "ac447e5420ce872d2bf5b49801c9956fb5688b5a"
}
}
}
@@ -0,0 +1,31 @@
{
"manifests": {
"ablaise/meteion-bundle": {
"manifest": {
"bundles": {
"MeteionBundle\\MeteionBundle": [
"all"
]
},
"copy-from-recipe": {
"config/": "%CONFIG_DIR%/"
},
"env": {
"METEION_RAWEXD_PATH": "/path/to/rawexd"
}
},
"files": {
"config/packages/meteion.yaml": {
"contents": [
"meteion:",
" dbal_connection: 'default'",
" rawexd_path: '%env(METEION_RAWEXD_PATH)%'",
""
],
"executable": false
}
},
"ref": "ac447e5420ce872d2bf5b49801c9956fb5688b5a"
}
}
}
@@ -0,0 +1,74 @@
{
"manifests": {
"doctrine/mongodb-odm-bundle": {
"manifest": {
"bundles": {
"Doctrine\\Bundle\\MongoDBBundle\\DoctrineMongoDBBundle": [
"all"
]
},
"copy-from-recipe": {
"config/": "%CONFIG_DIR%/",
"src/": "%SRC_DIR%/"
},
"container": {
"env(MONGODB_URL)": "",
"env(MONGODB_DB)": ""
},
"env": {
"MONGODB_URL": "mongodb://localhost:27017",
"MONGODB_DB": "symfony"
}
},
"files": {
"config/packages/doctrine_mongodb.yaml": {
"contents": [
"doctrine_mongodb:",
" auto_generate_proxy_classes: true",
" auto_generate_hydrator_classes: true",
" connections:",
" default:",
" server: '%env(resolve:MONGODB_URL)%'",
" options: {}",
" default_database: '%env(resolve:MONGODB_DB)%'",
" document_managers:",
" default:",
" auto_mapping: true",
" mappings:",
" App:",
" is_bundle: false",
" type: annotation",
" dir: '%kernel.project_dir%/src/Document'",
" prefix: 'App\\Document'",
" alias: App",
"",
"when@prod:",
" doctrine_mongodb:",
" auto_generate_proxy_classes: false",
" auto_generate_hydrator_classes: false",
" document_managers:",
" default:",
" metadata_cache_driver:",
" type: service",
" id: doctrine_mongodb.system_cache_pool",
"",
" framework:",
" cache:",
" pools:",
" doctrine_mongodb.system_cache_pool:",
" adapter: cache.system",
""
],
"executable": false
},
"src/Document/.gitignore": {
"contents": [
""
],
"executable": false
}
},
"ref": "838e2cfe094621c1c40ec2dd2166f1a48b895180"
}
}
}
@@ -0,0 +1,15 @@
{
"manifests": {
"request-tracing/request-tracing-bundle": {
"manifest": {
"bundles": {
"RequestTracing\\RequestTracingBundle\\RequestTracingBundle": [
"all"
]
}
},
"files": [],
"ref": "c8b556e28e9598d83e00b9b5e9f652f1bafdf439"
}
}
}
@@ -0,0 +1,50 @@
{
"manifests": {
"sentry/sentry-symfony": {
"manifest": {
"bundles": {
"Sentry\\SentryBundle\\SentryBundle": [
"prod"
]
},
"copy-from-recipe": {
"config/": "%CONFIG_DIR%/"
},
"env": {
"SENTRY_DSN": ""
}
},
"files": {
"config/packages/prod/sentry.yaml": {
"contents": [
"sentry:",
" dsn: '%env(SENTRY_DSN)%'",
" options:",
" excluded_exceptions:",
" - Symfony\\Component\\HttpKernel\\Exception\\NotFoundHttpException",
" - Symfony\\Component\\Security\\Core\\Exception\\AccessDeniedException",
"",
" # If you are using Monolog, you also need these additional configuration and services to log the errors correctly:",
" # https://docs.sentry.io/platforms/php/guides/symfony/#monolog-integration",
" # register_error_listener: false",
"",
" # monolog:",
" # handlers:",
" # sentry:",
" # type: service",
" # id: Sentry\\Monolog\\Handler",
"",
" # services:",
" # Sentry\\Monolog\\Handler:",
" # arguments:",
" # $hub: '@Sentry\\State\\HubInterface'",
" # $level: !php/const Monolog\\Logger::ERROR",
""
],
"executable": false
}
},
"ref": "cdf32ecd5481af45f42502e3dee0db160226e8d4"
}
}
}
+74
View File
@@ -0,0 +1,74 @@
{
"manifests": {
"doctrine/mongodb-odm-bundle": {
"manifest": {
"bundles": {
"Doctrine\\Bundle\\MongoDBBundle\\DoctrineMongoDBBundle": [
"all"
]
},
"copy-from-recipe": {
"config/": "%CONFIG_DIR%/",
"src/": "%SRC_DIR%/"
},
"container": {
"env(MONGODB_URL)": "",
"env(MONGODB_DB)": ""
},
"env": {
"MONGODB_URL": "mongodb://localhost:27017",
"MONGODB_DB": "symfony"
}
},
"files": {
"config/packages/doctrine_mongodb.yaml": {
"contents": [
"doctrine_mongodb:",
" auto_generate_proxy_classes: true",
" auto_generate_hydrator_classes: true",
" connections:",
" default:",
" server: '%env(resolve:MONGODB_URL)%'",
" options: {}",
" default_database: '%env(resolve:MONGODB_DB)%'",
" document_managers:",
" default:",
" auto_mapping: true",
" mappings:",
" App:",
" is_bundle: false",
" type: annotation",
" dir: '%kernel.project_dir%/src/Document'",
" prefix: 'App\\Document'",
" alias: App",
"",
"when@prod:",
" doctrine_mongodb:",
" auto_generate_proxy_classes: false",
" auto_generate_hydrator_classes: false",
" document_managers:",
" default:",
" metadata_cache_driver:",
" type: service",
" id: doctrine_mongodb.system_cache_pool",
"",
" framework:",
" cache:",
" pools:",
" doctrine_mongodb.system_cache_pool:",
" adapter: cache.system",
""
],
"executable": false
},
"src/Document/.gitignore": {
"contents": [
""
],
"executable": false
}
},
"ref": "838e2cfe094621c1c40ec2dd2166f1a48b895180"
}
}
}
+8 -1
View File
@@ -4,6 +4,9 @@
"abel/keycloak-bearer-only-adapter-bundle": [
"1.0"
],
"ablaise/meteion-bundle": [
"1.0"
],
"ad3n/ratchet-bundle": [
"0.4"
],
@@ -334,7 +337,8 @@
],
"doctrine/mongodb-odm-bundle": [
"3.3",
"4.1"
"4.1",
"4.4"
],
"doctrine/phpcr-bundle": [
"2.0"
@@ -1310,6 +1314,9 @@
"redrat/api-helper-bundle": [
"0.1"
],
"request-tracing/request-tracing-bundle": [
"0.1"
],
"rikudou/psr6-dynamo-db-bundle": [
"2.0"
],
@@ -0,0 +1,15 @@
{
"manifests": {
"request-tracing/request-tracing-bundle": {
"manifest": {
"bundles": {
"RequestTracing\\RequestTracingBundle\\RequestTracingBundle": [
"all"
]
}
},
"files": [],
"ref": "c8b556e28e9598d83e00b9b5e9f652f1bafdf439"
}
}
}
+23 -3
View File
@@ -4,7 +4,7 @@
"manifest": {
"bundles": {
"Sentry\\SentryBundle\\SentryBundle": [
"all"
"prod"
]
},
"copy-from-recipe": {
@@ -15,16 +15,36 @@
}
},
"files": {
"config/packages/sentry.yaml": {
"config/packages/prod/sentry.yaml": {
"contents": [
"sentry:",
" dsn: '%env(SENTRY_DSN)%'",
" options:",
" excluded_exceptions:",
" - Symfony\\Component\\HttpKernel\\Exception\\NotFoundHttpException",
" - Symfony\\Component\\Security\\Core\\Exception\\AccessDeniedException",
"",
" # If you are using Monolog, you also need these additional configuration and services to log the errors correctly:",
" # https://docs.sentry.io/platforms/php/guides/symfony/#monolog-integration",
" # register_error_listener: false",
"",
" # monolog:",
" # handlers:",
" # sentry:",
" # type: service",
" # id: Sentry\\Monolog\\Handler",
"",
" # services:",
" # Sentry\\Monolog\\Handler:",
" # arguments:",
" # $hub: '@Sentry\\State\\HubInterface'",
" # $level: !php/const Monolog\\Logger::ERROR",
""
],
"executable": false
}
},
"ref": "9746f0823302d7980e5273ef7a69ef3f5ac80914"
"ref": "cdf32ecd5481af45f42502e3dee0db160226e8d4"
}
}
}