mirror of
https://github.com/Part-DB/Part-DB-server.git
synced 2026-05-24 12:21:31 +00:00
Updated composer dependencies and use upstream version for micrometa packag
This commit is contained in:
parent
4cbb167e5c
commit
e576ded86b
3 changed files with 1829 additions and 1808 deletions
|
|
@ -33,7 +33,7 @@
|
|||
"jbtronics/dompdf-font-loader-bundle": "^1.0.0",
|
||||
"jbtronics/settings-bundle": "^3.0.0",
|
||||
"jfcherng/php-diff": "^6.14",
|
||||
"jkphl/micrometa": "dev-master",
|
||||
"jkphl/micrometa": "^v3.4.0",
|
||||
"knpuniversity/oauth2-client-bundle": "^2.15",
|
||||
"league/commonmark": "^2.7",
|
||||
"league/csv": "^9.8.0",
|
||||
|
|
@ -160,12 +160,6 @@
|
|||
"App\\Tests\\": "tests/"
|
||||
}
|
||||
},
|
||||
"repositories": [
|
||||
{
|
||||
"type": "vcs",
|
||||
"url": "https://github.com/jbtronics/micrometa"
|
||||
}
|
||||
],
|
||||
"scripts": {
|
||||
"auto-scripts": {
|
||||
"cache:clear": "symfony-cmd",
|
||||
|
|
|
|||
685
composer.lock
generated
685
composer.lock
generated
File diff suppressed because it is too large
Load diff
|
|
@ -128,7 +128,7 @@ use Symfony\Component\Config\Loader\ParamConfigurator as Param;
|
|||
* @psalm-type FrameworkConfig = array{
|
||||
* secret?: scalar|Param|null,
|
||||
* http_method_override?: bool|Param, // Set true to enable support for the '_method' request parameter to determine the intended HTTP method on POST requests. // Default: false
|
||||
* allowed_http_method_override?: list<string|Param>|null,
|
||||
* allowed_http_method_override?: null|list<string|Param>,
|
||||
* trust_x_sendfile_type_header?: scalar|Param|null, // Set true to enable support for xsendfile in binary file responses. // Default: "%env(bool:default::SYMFONY_TRUST_X_SENDFILE_TYPE_HEADER)%"
|
||||
* ide?: scalar|Param|null, // Default: "%env(default::SYMFONY_IDE)%"
|
||||
* test?: bool|Param,
|
||||
|
|
@ -136,9 +136,9 @@ use Symfony\Component\Config\Loader\ParamConfigurator as Param;
|
|||
* set_locale_from_accept_language?: bool|Param, // Whether to use the Accept-Language HTTP header to set the Request locale (only when the "_locale" request attribute is not passed). // Default: false
|
||||
* set_content_language_from_locale?: bool|Param, // Whether to set the Content-Language HTTP header on the Response using the Request locale. // Default: false
|
||||
* enabled_locales?: list<scalar|Param|null>,
|
||||
* trusted_hosts?: list<scalar|Param|null>,
|
||||
* trusted_hosts?: string|list<scalar|Param|null>,
|
||||
* trusted_proxies?: mixed, // Default: ["%env(default::SYMFONY_TRUSTED_PROXIES)%"]
|
||||
* trusted_headers?: list<scalar|Param|null>,
|
||||
* trusted_headers?: string|list<scalar|Param|null>,
|
||||
* error_controller?: scalar|Param|null, // Default: "error_controller"
|
||||
* handle_all_throwables?: bool|Param, // HttpKernel will handle all kinds of \Throwable. // Default: true
|
||||
* csrf_protection?: bool|array{
|
||||
|
|
@ -202,23 +202,23 @@ use Symfony\Component\Config\Loader\ParamConfigurator as Param;
|
|||
* property?: scalar|Param|null,
|
||||
* service?: scalar|Param|null,
|
||||
* },
|
||||
* supports?: list<scalar|Param|null>,
|
||||
* supports?: string|list<scalar|Param|null>,
|
||||
* definition_validators?: list<scalar|Param|null>,
|
||||
* support_strategy?: scalar|Param|null,
|
||||
* initial_marking?: list<scalar|Param|null>,
|
||||
* events_to_dispatch?: list<string|Param>|null,
|
||||
* places?: list<array{ // Default: []
|
||||
* initial_marking?: backed-enum|string|list<scalar|Param|null>,
|
||||
* events_to_dispatch?: null|list<string|Param>,
|
||||
* places?: string|list<array{ // Default: []
|
||||
* name?: scalar|Param|null,
|
||||
* metadata?: array<string, mixed>,
|
||||
* }>,
|
||||
* transitions?: list<array{ // Default: []
|
||||
* name?: string|Param,
|
||||
* guard?: string|Param, // An expression to block the transition.
|
||||
* from?: list<array{ // Default: []
|
||||
* from?: backed-enum|string|list<array{ // Default: []
|
||||
* place?: string|Param,
|
||||
* weight?: int|Param, // Default: 1
|
||||
* }>,
|
||||
* to?: list<array{ // Default: []
|
||||
* to?: backed-enum|string|list<array{ // Default: []
|
||||
* place?: string|Param,
|
||||
* weight?: int|Param, // Default: 1
|
||||
* }>,
|
||||
|
|
@ -271,7 +271,7 @@ use Symfony\Component\Config\Loader\ParamConfigurator as Param;
|
|||
* version_format?: scalar|Param|null, // Default: "%%s?%%s"
|
||||
* json_manifest_path?: scalar|Param|null, // Default: null
|
||||
* base_path?: scalar|Param|null, // Default: ""
|
||||
* base_urls?: list<scalar|Param|null>,
|
||||
* base_urls?: string|list<scalar|Param|null>,
|
||||
* packages?: array<string, array{ // Default: []
|
||||
* strict_mode?: bool|Param, // Throw an exception if an entry is missing from the manifest.json. // Default: false
|
||||
* version_strategy?: scalar|Param|null, // Default: null
|
||||
|
|
@ -279,12 +279,12 @@ use Symfony\Component\Config\Loader\ParamConfigurator as Param;
|
|||
* version_format?: scalar|Param|null, // Default: null
|
||||
* json_manifest_path?: scalar|Param|null, // Default: null
|
||||
* base_path?: scalar|Param|null, // Default: ""
|
||||
* base_urls?: list<scalar|Param|null>,
|
||||
* base_urls?: string|list<scalar|Param|null>,
|
||||
* }>,
|
||||
* },
|
||||
* asset_mapper?: bool|array{ // Asset Mapper configuration
|
||||
* enabled?: bool|Param, // Default: false
|
||||
* paths?: array<string, scalar|Param|null>,
|
||||
* paths?: string|array<string, scalar|Param|null>,
|
||||
* excluded_patterns?: list<scalar|Param|null>,
|
||||
* exclude_dotfiles?: bool|Param, // If true, any files starting with "." will be excluded from the asset mapper. // Default: true
|
||||
* server?: bool|Param, // If true, a "dev server" will return the assets from the public directory (true in "debug" mode only by default). // Default: true
|
||||
|
|
@ -303,7 +303,7 @@ use Symfony\Component\Config\Loader\ParamConfigurator as Param;
|
|||
* },
|
||||
* translator?: bool|array{ // Translator configuration
|
||||
* enabled?: bool|Param, // Default: true
|
||||
* fallbacks?: list<scalar|Param|null>,
|
||||
* fallbacks?: string|list<scalar|Param|null>,
|
||||
* logging?: bool|Param, // Default: false
|
||||
* formatter?: scalar|Param|null, // Default: "translator.formatter.default"
|
||||
* cache_dir?: scalar|Param|null, // Default: "%kernel.cache_dir%/translations"
|
||||
|
|
@ -333,7 +333,7 @@ use Symfony\Component\Config\Loader\ParamConfigurator as Param;
|
|||
* enabled?: bool|Param, // Default: true
|
||||
* cache?: scalar|Param|null, // Deprecated: Setting the "framework.validation.cache.cache" configuration option is deprecated. It will be removed in version 8.0.
|
||||
* enable_attributes?: bool|Param, // Default: true
|
||||
* static_method?: list<scalar|Param|null>,
|
||||
* static_method?: string|list<scalar|Param|null>,
|
||||
* translation_domain?: scalar|Param|null, // Default: "validators"
|
||||
* email_validation_mode?: "html5"|"html5-allow-no-tld"|"strict"|"loose"|Param, // Default: "html5"
|
||||
* mapping?: array{
|
||||
|
|
@ -396,7 +396,7 @@ use Symfony\Component\Config\Loader\ParamConfigurator as Param;
|
|||
* default_doctrine_dbal_provider?: scalar|Param|null, // Default: "database_connection"
|
||||
* default_pdo_provider?: scalar|Param|null, // Default: null
|
||||
* pools?: array<string, array{ // Default: []
|
||||
* adapters?: list<scalar|Param|null>,
|
||||
* adapters?: string|list<scalar|Param|null>,
|
||||
* tags?: scalar|Param|null, // Default: null
|
||||
* public?: bool|Param, // Default: false
|
||||
* default_lifetime?: scalar|Param|null, // Default lifetime of the pool.
|
||||
|
|
@ -419,11 +419,11 @@ use Symfony\Component\Config\Loader\ParamConfigurator as Param;
|
|||
* },
|
||||
* lock?: bool|string|array{ // Lock configuration
|
||||
* enabled?: bool|Param, // Default: false
|
||||
* resources?: array<string, string|list<scalar|Param|null>>,
|
||||
* resources?: string|array<string, string|list<scalar|Param|null>>,
|
||||
* },
|
||||
* semaphore?: bool|string|array{ // Semaphore configuration
|
||||
* enabled?: bool|Param, // Default: false
|
||||
* resources?: array<string, scalar|Param|null>,
|
||||
* resources?: string|array<string, scalar|Param|null>,
|
||||
* },
|
||||
* messenger?: bool|array{ // Messenger configuration
|
||||
* enabled?: bool|Param, // Default: false
|
||||
|
|
@ -453,7 +453,7 @@ use Symfony\Component\Config\Loader\ParamConfigurator as Param;
|
|||
* rate_limiter?: scalar|Param|null, // Rate limiter name to use when processing messages. // Default: null
|
||||
* }>,
|
||||
* failure_transport?: scalar|Param|null, // Transport name to send failed messages to (after all retries have failed). // Default: null
|
||||
* stop_worker_on_signals?: list<scalar|Param|null>,
|
||||
* stop_worker_on_signals?: int|string|list<scalar|Param|null>,
|
||||
* default_bus?: scalar|Param|null, // Default: null
|
||||
* buses?: array<string, array{ // Default: {"messenger.bus.default":{"default_middleware":{"enabled":true,"allow_no_handlers":false,"allow_no_senders":true},"middleware":[]}}
|
||||
* default_middleware?: bool|string|array{
|
||||
|
|
@ -461,7 +461,7 @@ use Symfony\Component\Config\Loader\ParamConfigurator as Param;
|
|||
* allow_no_handlers?: bool|Param, // Default: false
|
||||
* allow_no_senders?: bool|Param, // Default: true
|
||||
* },
|
||||
* middleware?: list<string|array{ // Default: []
|
||||
* middleware?: string|list<string|array{ // Default: []
|
||||
* id?: scalar|Param|null,
|
||||
* arguments?: list<mixed>,
|
||||
* }>,
|
||||
|
|
@ -510,9 +510,9 @@ use Symfony\Component\Config\Loader\ParamConfigurator as Param;
|
|||
* retry_failed?: bool|array{
|
||||
* enabled?: bool|Param, // Default: false
|
||||
* retry_strategy?: scalar|Param|null, // service id to override the retry strategy. // Default: null
|
||||
* http_codes?: array<string, array{ // Default: []
|
||||
* http_codes?: int|string|array<string, array{ // Default: []
|
||||
* code?: int|Param,
|
||||
* methods?: list<string|Param>,
|
||||
* methods?: string|list<string|Param>,
|
||||
* }>,
|
||||
* max_retries?: int|Param, // Default: 3
|
||||
* delay?: int|Param, // Time in ms to delay (or the initial value when multiplier is used). // Default: 1000
|
||||
|
|
@ -563,9 +563,9 @@ use Symfony\Component\Config\Loader\ParamConfigurator as Param;
|
|||
* retry_failed?: bool|array{
|
||||
* enabled?: bool|Param, // Default: false
|
||||
* retry_strategy?: scalar|Param|null, // service id to override the retry strategy. // Default: null
|
||||
* http_codes?: array<string, array{ // Default: []
|
||||
* http_codes?: int|string|array<string, array{ // Default: []
|
||||
* code?: int|Param,
|
||||
* methods?: list<string|Param>,
|
||||
* methods?: string|list<string|Param>,
|
||||
* }>,
|
||||
* max_retries?: int|Param, // Default: 3
|
||||
* delay?: int|Param, // Time in ms to delay (or the initial value when multiplier is used). // Default: 1000
|
||||
|
|
@ -582,8 +582,8 @@ use Symfony\Component\Config\Loader\ParamConfigurator as Param;
|
|||
* transports?: array<string, scalar|Param|null>,
|
||||
* envelope?: array{ // Mailer Envelope configuration
|
||||
* sender?: scalar|Param|null,
|
||||
* recipients?: list<scalar|Param|null>,
|
||||
* allowed_recipients?: list<scalar|Param|null>,
|
||||
* recipients?: string|list<scalar|Param|null>,
|
||||
* allowed_recipients?: string|list<scalar|Param|null>,
|
||||
* },
|
||||
* headers?: array<string, string|array{ // Default: []
|
||||
* value?: mixed,
|
||||
|
|
@ -635,7 +635,7 @@ use Symfony\Component\Config\Loader\ParamConfigurator as Param;
|
|||
* cache_pool?: scalar|Param|null, // The cache pool to use for storing the current limiter state. // Default: "cache.rate_limiter"
|
||||
* storage_service?: scalar|Param|null, // The service ID of a custom storage implementation, this precedes any configured "cache_pool". // Default: null
|
||||
* policy?: "fixed_window"|"token_bucket"|"sliding_window"|"compound"|"no_limit"|Param, // The algorithm to be used by this limiter.
|
||||
* limiters?: list<scalar|Param|null>,
|
||||
* limiters?: string|list<scalar|Param|null>,
|
||||
* limit?: int|Param, // The maximum allowed hits in a fixed interval or burst.
|
||||
* interval?: scalar|Param|null, // Configures the fixed interval if "policy" is set to "fixed_window" or "sliding_window". The value must be a number followed by "second", "minute", "hour", "day", "week" or "month" (or their plural equivalent).
|
||||
* rate?: array{ // Configures the fill rate if "policy" is set to "token_bucket".
|
||||
|
|
@ -658,20 +658,20 @@ use Symfony\Component\Config\Loader\ParamConfigurator as Param;
|
|||
* allow_safe_elements?: bool|Param, // Allows "safe" elements and attributes. // Default: false
|
||||
* allow_static_elements?: bool|Param, // Allows all static elements and attributes from the W3C Sanitizer API standard. // Default: false
|
||||
* allow_elements?: array<string, mixed>,
|
||||
* block_elements?: list<string|Param>,
|
||||
* drop_elements?: list<string|Param>,
|
||||
* block_elements?: string|list<string|Param>,
|
||||
* drop_elements?: string|list<string|Param>,
|
||||
* allow_attributes?: array<string, mixed>,
|
||||
* drop_attributes?: array<string, mixed>,
|
||||
* force_attributes?: array<string, array<string, string|Param>>,
|
||||
* force_https_urls?: bool|Param, // Transforms URLs using the HTTP scheme to use the HTTPS scheme instead. // Default: false
|
||||
* allowed_link_schemes?: list<string|Param>,
|
||||
* allowed_link_hosts?: list<string|Param>|null,
|
||||
* allowed_link_schemes?: string|list<string|Param>,
|
||||
* allowed_link_hosts?: null|string|list<string|Param>,
|
||||
* allow_relative_links?: bool|Param, // Allows relative URLs to be used in links href attributes. // Default: false
|
||||
* allowed_media_schemes?: list<string|Param>,
|
||||
* allowed_media_hosts?: list<string|Param>|null,
|
||||
* allowed_media_schemes?: string|list<string|Param>,
|
||||
* allowed_media_hosts?: null|string|list<string|Param>,
|
||||
* allow_relative_medias?: bool|Param, // Allows relative URLs to be used in media source attributes (img, audio, video, ...). // Default: false
|
||||
* with_attribute_sanitizers?: list<string|Param>,
|
||||
* without_attribute_sanitizers?: list<string|Param>,
|
||||
* with_attribute_sanitizers?: string|list<string|Param>,
|
||||
* without_attribute_sanitizers?: string|list<string|Param>,
|
||||
* max_input_length?: int|Param, // The maximum length allowed for the sanitized input. // Default: 0
|
||||
* }>,
|
||||
* },
|
||||
|
|
@ -958,7 +958,7 @@ use Symfony\Component\Config\Loader\ParamConfigurator as Param;
|
|||
* },
|
||||
* password_hashers?: array<string, string|array{ // Default: []
|
||||
* algorithm?: scalar|Param|null,
|
||||
* migrate_from?: list<scalar|Param|null>,
|
||||
* migrate_from?: string|list<scalar|Param|null>,
|
||||
* hash_algorithm?: scalar|Param|null, // Name of hashing algorithm for PBKDF2 (i.e. sha256, sha512, etc..) See hash_algos() for a list of supported algorithms. // Default: "sha512"
|
||||
* key_length?: scalar|Param|null, // Default: 40
|
||||
* ignore_case?: bool|Param, // Default: false
|
||||
|
|
@ -972,7 +972,7 @@ use Symfony\Component\Config\Loader\ParamConfigurator as Param;
|
|||
* providers?: array<string, array{ // Default: []
|
||||
* id?: scalar|Param|null,
|
||||
* chain?: array{
|
||||
* providers?: list<scalar|Param|null>,
|
||||
* providers?: string|list<scalar|Param|null>,
|
||||
* },
|
||||
* entity?: array{
|
||||
* class?: scalar|Param|null, // The full entity class name of your user class.
|
||||
|
|
@ -982,7 +982,7 @@ use Symfony\Component\Config\Loader\ParamConfigurator as Param;
|
|||
* memory?: array{
|
||||
* users?: array<string, array{ // Default: []
|
||||
* password?: scalar|Param|null, // Default: null
|
||||
* roles?: list<scalar|Param|null>,
|
||||
* roles?: string|list<scalar|Param|null>,
|
||||
* }>,
|
||||
* },
|
||||
* ldap?: array{
|
||||
|
|
@ -991,7 +991,7 @@ use Symfony\Component\Config\Loader\ParamConfigurator as Param;
|
|||
* search_dn?: scalar|Param|null, // Default: null
|
||||
* search_password?: scalar|Param|null, // Default: null
|
||||
* extra_fields?: list<scalar|Param|null>,
|
||||
* default_roles?: list<scalar|Param|null>,
|
||||
* default_roles?: string|list<scalar|Param|null>,
|
||||
* role_fetcher?: scalar|Param|null, // Default: null
|
||||
* uid_key?: scalar|Param|null, // Default: "sAMAccountName"
|
||||
* filter?: scalar|Param|null, // Default: "({uid_key}={user_identifier})"
|
||||
|
|
@ -1005,7 +1005,7 @@ use Symfony\Component\Config\Loader\ParamConfigurator as Param;
|
|||
* firewalls?: array<string, array{ // Default: []
|
||||
* pattern?: scalar|Param|null,
|
||||
* host?: scalar|Param|null,
|
||||
* methods?: list<scalar|Param|null>,
|
||||
* methods?: string|list<scalar|Param|null>,
|
||||
* security?: bool|Param, // Default: true
|
||||
* user_checker?: scalar|Param|null, // The UserChecker to use when authenticating users in this firewall. // Default: "security.user_checker"
|
||||
* request_matcher?: scalar|Param|null,
|
||||
|
|
@ -1024,8 +1024,8 @@ use Symfony\Component\Config\Loader\ParamConfigurator as Param;
|
|||
* path?: scalar|Param|null, // Default: "/logout"
|
||||
* target?: scalar|Param|null, // Default: "/"
|
||||
* invalidate_session?: bool|Param, // Default: true
|
||||
* clear_site_data?: list<"*"|"cache"|"cookies"|"storage"|"executionContexts"|Param>,
|
||||
* delete_cookies?: array<string, array{ // Default: []
|
||||
* clear_site_data?: string|list<"*"|"cache"|"cookies"|"storage"|"executionContexts"|Param>,
|
||||
* delete_cookies?: string|array<string, array{ // Default: []
|
||||
* path?: scalar|Param|null, // Default: null
|
||||
* domain?: scalar|Param|null, // Default: null
|
||||
* secure?: scalar|Param|null, // Default: false
|
||||
|
|
@ -1092,6 +1092,7 @@ use Symfony\Component\Config\Loader\ParamConfigurator as Param;
|
|||
* },
|
||||
* registration?: bool|array{
|
||||
* enabled?: bool|Param, // Default: false
|
||||
* hide_existing_credentials?: bool|Param, // Default: true
|
||||
* profile?: scalar|Param|null, // Default: "default"
|
||||
* options_builder?: scalar|Param|null, // Default: null
|
||||
* routes?: array{
|
||||
|
|
@ -1239,7 +1240,7 @@ use Symfony\Component\Config\Loader\ParamConfigurator as Param;
|
|||
* success_handler?: scalar|Param|null,
|
||||
* failure_handler?: scalar|Param|null,
|
||||
* realm?: scalar|Param|null, // Default: null
|
||||
* token_extractors?: list<scalar|Param|null>,
|
||||
* token_extractors?: string|list<scalar|Param|null>,
|
||||
* token_handler?: string|array{
|
||||
* id?: scalar|Param|null,
|
||||
* oidc_user_info?: string|array{
|
||||
|
|
@ -1254,7 +1255,7 @@ use Symfony\Component\Config\Loader\ParamConfigurator as Param;
|
|||
* },
|
||||
* oidc?: array{
|
||||
* discovery?: array{ // Enable the OIDC discovery.
|
||||
* base_uri?: list<scalar|Param|null>,
|
||||
* base_uri?: string|list<scalar|Param|null>,
|
||||
* cache?: array{
|
||||
* id?: scalar|Param|null, // Cache service id to use to cache the OIDC discovery configuration.
|
||||
* },
|
||||
|
|
@ -1297,7 +1298,7 @@ use Symfony\Component\Config\Loader\ParamConfigurator as Param;
|
|||
* remember_me?: array{
|
||||
* secret?: scalar|Param|null, // Default: "%kernel.secret%"
|
||||
* service?: scalar|Param|null,
|
||||
* user_providers?: list<scalar|Param|null>,
|
||||
* user_providers?: string|list<scalar|Param|null>,
|
||||
* catch_exceptions?: bool|Param, // Default: true
|
||||
* signature_properties?: list<scalar|Param|null>,
|
||||
* token_provider?: string|array{
|
||||
|
|
@ -1325,12 +1326,12 @@ use Symfony\Component\Config\Loader\ParamConfigurator as Param;
|
|||
* path?: scalar|Param|null, // Use the urldecoded format. // Default: null
|
||||
* host?: scalar|Param|null, // Default: null
|
||||
* port?: int|Param, // Default: null
|
||||
* ips?: list<scalar|Param|null>,
|
||||
* ips?: string|list<scalar|Param|null>,
|
||||
* attributes?: array<string, scalar|Param|null>,
|
||||
* route?: scalar|Param|null, // Default: null
|
||||
* methods?: list<scalar|Param|null>,
|
||||
* methods?: string|list<scalar|Param|null>,
|
||||
* allow_if?: scalar|Param|null, // Default: null
|
||||
* roles?: list<scalar|Param|null>,
|
||||
* roles?: string|list<scalar|Param|null>,
|
||||
* }>,
|
||||
* role_hierarchy?: array<string, string|list<scalar|Param|null>>,
|
||||
* }
|
||||
|
|
@ -1351,7 +1352,7 @@ use Symfony\Component\Config\Loader\ParamConfigurator as Param;
|
|||
* auto_reload?: scalar|Param|null,
|
||||
* optimizations?: int|Param,
|
||||
* default_path?: scalar|Param|null, // The default path used to load templates. // Default: "%kernel.project_dir%/templates"
|
||||
* file_name_pattern?: list<scalar|Param|null>,
|
||||
* file_name_pattern?: string|list<scalar|Param|null>,
|
||||
* paths?: array<string, mixed>,
|
||||
* date?: array{ // The default format options used by the date filter.
|
||||
* format?: scalar|Param|null, // Default: "F j, Y H:i"
|
||||
|
|
@ -1452,7 +1453,7 @@ use Symfony\Component\Config\Loader\ParamConfigurator as Param;
|
|||
* delay_between_messages?: bool|Param, // Default: false
|
||||
* topic?: int|Param, // Default: null
|
||||
* factor?: int|Param, // Default: 1
|
||||
* tags?: list<scalar|Param|null>,
|
||||
* tags?: string|list<scalar|Param|null>,
|
||||
* console_formatter_options?: mixed, // Default: []
|
||||
* formatter?: scalar|Param|null,
|
||||
* nested?: bool|Param, // Default: false
|
||||
|
|
@ -1496,7 +1497,7 @@ use Symfony\Component\Config\Loader\ParamConfigurator as Param;
|
|||
* host?: scalar|Param|null,
|
||||
* },
|
||||
* from_email?: scalar|Param|null,
|
||||
* to_email?: list<scalar|Param|null>,
|
||||
* to_email?: string|list<scalar|Param|null>,
|
||||
* subject?: scalar|Param|null,
|
||||
* content_type?: scalar|Param|null, // Default: null
|
||||
* headers?: list<scalar|Param|null>,
|
||||
|
|
@ -1586,7 +1587,7 @@ use Symfony\Component\Config\Loader\ParamConfigurator as Param;
|
|||
* },
|
||||
* filesystem?: array{
|
||||
* locator?: "filesystem"|"filesystem_insecure"|Param, // Using the "filesystem_insecure" locator is not recommended due to a less secure resolver mechanism, but is provided for those using heavily symlinked projects. // Default: "filesystem"
|
||||
* data_root?: list<scalar|Param|null>,
|
||||
* data_root?: string|list<scalar|Param|null>,
|
||||
* allow_unresolvable_data_roots?: bool|Param, // Default: false
|
||||
* bundle_resources?: array{
|
||||
* enabled?: bool|Param, // Default: false
|
||||
|
|
@ -1930,7 +1931,7 @@ use Symfony\Component\Config\Loader\ParamConfigurator as Param;
|
|||
* script-src?: list<scalar|Param|null>,
|
||||
* style-src?: list<scalar|Param|null>,
|
||||
* upgrade-insecure-requests?: bool|Param, // Default: false
|
||||
* report-uri?: list<scalar|Param|null>,
|
||||
* report-uri?: string|list<scalar|Param|null>,
|
||||
* worker-src?: list<scalar|Param|null>,
|
||||
* prefetch-src?: list<scalar|Param|null>,
|
||||
* report-to?: scalar|Param|null,
|
||||
|
|
@ -1958,7 +1959,7 @@ use Symfony\Component\Config\Loader\ParamConfigurator as Param;
|
|||
* script-src?: list<scalar|Param|null>,
|
||||
* style-src?: list<scalar|Param|null>,
|
||||
* upgrade-insecure-requests?: bool|Param, // Default: false
|
||||
* report-uri?: list<scalar|Param|null>,
|
||||
* report-uri?: string|list<scalar|Param|null>,
|
||||
* worker-src?: list<scalar|Param|null>,
|
||||
* prefetch-src?: list<scalar|Param|null>,
|
||||
* report-to?: scalar|Param|null,
|
||||
|
|
@ -1966,7 +1967,7 @@ use Symfony\Component\Config\Loader\ParamConfigurator as Param;
|
|||
* },
|
||||
* referrer_policy?: bool|array{
|
||||
* enabled?: bool|Param, // Default: false
|
||||
* policies?: list<scalar|Param|null>,
|
||||
* policies?: string|list<scalar|Param|null>,
|
||||
* },
|
||||
* permissions_policy?: bool|array{
|
||||
* enabled?: bool|Param, // Default: false
|
||||
|
|
@ -2097,10 +2098,10 @@ use Symfony\Component\Config\Loader\ParamConfigurator as Param;
|
|||
* secured_rp_ids?: array<string, scalar|Param|null>,
|
||||
* counter_checker?: scalar|Param|null, // This service will check if the counter is valid. By default it throws an exception (recommended). // Default: "Webauthn\\Counter\\ThrowExceptionIfInvalid"
|
||||
* top_origin_validator?: scalar|Param|null, // For cross origin (e.g. iframe), this service will be in charge of verifying the top origin. // Default: null
|
||||
* creation_profiles?: array<string, array{ // Default: []
|
||||
* creation_profiles?: bool|array<string, array{ // Default: []
|
||||
* rp?: array{
|
||||
* id?: scalar|Param|null, // Default: null
|
||||
* name?: scalar|Param|null,
|
||||
* name?: scalar|Param|null, // Deprecated: The child node "name" at path "webauthn.creation_profiles..rp.name" is deprecated and will be removed in the next major release. // Default: ""
|
||||
* icon?: scalar|Param|null, // Deprecated: The child node "icon" at path "webauthn.creation_profiles..rp.icon" is deprecated and has no effect. // Default: null
|
||||
* },
|
||||
* challenge_length?: int|Param, // Default: 32
|
||||
|
|
@ -2114,14 +2115,40 @@ use Symfony\Component\Config\Loader\ParamConfigurator as Param;
|
|||
* extensions?: array<string, scalar|Param|null>,
|
||||
* public_key_credential_parameters?: list<int|Param>,
|
||||
* attestation_conveyance?: scalar|Param|null, // Default: "none"
|
||||
* conditional_create?: bool|Param, // Enable Conditional Create (auto-register) for this profile. When true, user presence can be false after password authentication. See https://github.com/w3c/webauthn/wiki/Explainer:-Conditional-Create // Default: false
|
||||
* }>,
|
||||
* request_profiles?: array<string, array{ // Default: []
|
||||
* request_profiles?: bool|array<string, array{ // Default: []
|
||||
* rp_id?: scalar|Param|null, // Default: null
|
||||
* challenge_length?: int|Param, // Default: 32
|
||||
* timeout?: int|Param, // Default: null
|
||||
* user_verification?: scalar|Param|null, // Default: "preferred"
|
||||
* extensions?: array<string, scalar|Param|null>,
|
||||
* }>,
|
||||
* client_override_policy?: array{ // Configuration for allowing client request values to override profile configuration
|
||||
* user_verification?: array{
|
||||
* enabled?: bool|Param, // Whether to allow client requests to override the user verification requirement // Default: false
|
||||
* allowed_values?: list<scalar|Param|null>,
|
||||
* },
|
||||
* authenticator_attachment?: array{
|
||||
* enabled?: bool|Param, // Whether to allow client requests to override the authenticator attachment // Default: true
|
||||
* allowed_values?: list<scalar|Param|null>,
|
||||
* },
|
||||
* resident_key?: array{
|
||||
* enabled?: bool|Param, // Whether to allow client requests to override the resident key requirement // Default: true
|
||||
* allowed_values?: list<scalar|Param|null>,
|
||||
* },
|
||||
* attestation_conveyance?: array{
|
||||
* enabled?: bool|Param, // Whether to allow client requests to override the attestation conveyance preference // Default: true
|
||||
* allowed_values?: list<scalar|Param|null>,
|
||||
* },
|
||||
* extensions?: array{
|
||||
* enabled?: bool|Param, // Whether to allow client requests to override extensions // Default: true
|
||||
* },
|
||||
* mediation?: array{
|
||||
* enabled?: bool|Param, // Whether to allow client requests to request the conditional mediation flow (auto-register). // Default: false
|
||||
* allowed_values?: list<scalar|Param|null>,
|
||||
* },
|
||||
* },
|
||||
* metadata?: bool|array{ // Enable the support of the Metadata Statements. Please read the documentation for this feature.
|
||||
* enabled?: bool|Param, // Default: false
|
||||
* mds_repository?: scalar|Param|null, // The Metadata Statement repository.
|
||||
|
|
@ -2165,6 +2192,21 @@ use Symfony\Component\Config\Loader\ParamConfigurator as Param;
|
|||
* secured_rp_ids?: array<string, scalar|Param|null>,
|
||||
* }>,
|
||||
* },
|
||||
* passkey_endpoints?: bool|array{ // Enable the .well-known/passkey-endpoints discovery endpoint as defined in the W3C Passkey Endpoints specification.
|
||||
* enabled?: bool|Param, // Default: false
|
||||
* enroll?: string|array{ // URL to the passkey enrollment/creation interface.
|
||||
* path?: scalar|Param|null, // The absolute HTTPS URL or Symfony route name.
|
||||
* params?: list<mixed>,
|
||||
* },
|
||||
* manage?: string|array{ // URL to the passkey management interface.
|
||||
* path?: scalar|Param|null, // The absolute HTTPS URL or Symfony route name.
|
||||
* params?: list<mixed>,
|
||||
* },
|
||||
* prf_usage_details?: string|array{ // URL to informational page about PRF (Pseudo-Random Function) extension usage.
|
||||
* path?: scalar|Param|null, // The absolute HTTPS URL or Symfony route name.
|
||||
* params?: list<mixed>,
|
||||
* },
|
||||
* },
|
||||
* }
|
||||
* @psalm-type NbgrpOneloginSamlConfig = array{ // nb:group OneLogin PHP Symfony Bundle configuration
|
||||
* onelogin_settings?: array<string, array{ // Default: []
|
||||
|
|
@ -2293,7 +2335,7 @@ use Symfony\Component\Config\Loader\ParamConfigurator as Param;
|
|||
* type?: scalar|Param|null,
|
||||
* elements?: list<scalar|Param|null>,
|
||||
* },
|
||||
* keys_patterns?: list<scalar|Param|null>,
|
||||
* keys_patterns?: string|list<scalar|Param|null>,
|
||||
* }
|
||||
* @psalm-type DompdfFontLoaderConfig = array{
|
||||
* autodiscovery?: bool|array{
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue