Update Flex endpoint

This commit is contained in:
github-action[bot]
2022-07-12 09:17:58 +00:00
parent beb79d1ad1
commit fad646760b
6 changed files with 174 additions and 16 deletions
+1 -1
View File
@@ -434,7 +434,7 @@ Additional recipes can be found on the [Main Recipes Repository](https://github.
| [secit-pl/imap-bundle](https://packagist.org/packages/secit-pl/imap-bundle) | [1.0](secit-pl/imap-bundle/1.0) |
| [seferov/aws-bundle](https://packagist.org/packages/seferov/aws-bundle) | [3.0](seferov/aws-bundle/3.0) |
| [sensiolabs/connect-bundle](https://packagist.org/packages/sensiolabs/connect-bundle) | [4.0](sensiolabs/connect-bundle/4.0) |
| [sentry/sentry-symfony](https://packagist.org/packages/sentry/sentry-symfony) | [3.0](sentry/sentry-symfony/3.0) |
| [sentry/sentry-symfony](https://packagist.org/packages/sentry/sentry-symfony) | [4.0](sentry/sentry-symfony/4.0) |
| [sg/datatablesbundle](https://packagist.org/packages/sg/datatablesbundle) | [1.0](sg/datatablesbundle/1.0) |
| [siganushka/generic-bundle](https://packagist.org/packages/siganushka/generic-bundle) | [0.3](siganushka/generic-bundle/0.3) |
| [siganushka/region-bundle](https://packagist.org/packages/siganushka/region-bundle) | [0.1](siganushka/region-bundle/0.1) |
@@ -0,0 +1,51 @@
{
"manifests": {
"sentry/sentry-symfony": {
"manifest": {
"bundles": {
"Sentry\\SentryBundle\\SentryBundle": [
"prod"
]
},
"copy-from-recipe": {
"config/": "%CONFIG_DIR%/"
},
"env": {
"SENTRY_DSN": ""
},
"conflict": {
"symfony/framework-bundle": "<5.4"
}
},
"files": {
"config/packages/sentry.yaml": {
"contents": [
"when@prod:",
" sentry:",
" dsn: '%env(SENTRY_DSN)%'",
"",
"# 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",
"# $bubble: false",
""
],
"executable": false
}
},
"ref": "3d8dc8c0f689e2e94f860d2e36f81fcc26348069"
}
}
}
@@ -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": "fc6a6baeee961a34a70eca0f91e868d03ce7bd9b"
}
}
}
+7 -1
View File
@@ -1357,7 +1357,8 @@
],
"sentry/sentry-symfony": [
"1.0",
"3.0"
"3.0",
"4.0"
],
"sg/datatablesbundle": [
"1.0"
@@ -1723,6 +1724,11 @@
"7.0": {
"symfony/symfony": "<5.0"
}
},
"sentry/sentry-symfony": {
"4.0": {
"symfony/framework-bundle": "<5.4"
}
}
},
"versions": [],
+14 -14
View File
@@ -24,27 +24,27 @@
" - 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",
"# 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",
"# monolog:",
"# handlers:",
"# sentry:",
"# type: service",
"# id: Sentry\\Monolog\\Handler",
"",
" # services:",
" # Sentry\\Monolog\\Handler:",
" # arguments:",
" # $hub: '@Sentry\\State\\HubInterface'",
" # $level: !php/const Monolog\\Logger::ERROR",
"# services:",
"# Sentry\\Monolog\\Handler:",
"# arguments:",
"# $hub: '@Sentry\\State\\HubInterface'",
"# $level: !php/const Monolog\\Logger::ERROR",
""
],
"executable": false
}
},
"ref": "cdf32ecd5481af45f42502e3dee0db160226e8d4"
"ref": "fc6a6baeee961a34a70eca0f91e868d03ce7bd9b"
}
}
}
+51
View File
@@ -0,0 +1,51 @@
{
"manifests": {
"sentry/sentry-symfony": {
"manifest": {
"bundles": {
"Sentry\\SentryBundle\\SentryBundle": [
"prod"
]
},
"copy-from-recipe": {
"config/": "%CONFIG_DIR%/"
},
"env": {
"SENTRY_DSN": ""
},
"conflict": {
"symfony/framework-bundle": "<5.4"
}
},
"files": {
"config/packages/sentry.yaml": {
"contents": [
"when@prod:",
" sentry:",
" dsn: '%env(SENTRY_DSN)%'",
"",
"# 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",
"# $bubble: false",
""
],
"executable": false
}
},
"ref": "3d8dc8c0f689e2e94f860d2e36f81fcc26348069"
}
}
}