├── .alexrc ├── .doctor-rst.yaml ├── .editorconfig ├── .github ├── CODEOWNERS ├── CONTRIBUTING.md ├── PULL_REQUEST_TEMPLATE.md └── workflows │ └── ci.yaml ├── .gitignore ├── LICENSE.md ├── README.md ├── _build ├── build.php ├── composer.json ├── composer.lock ├── maintainer_guide.rst └── redirection_map ├── _images ├── components │ ├── console │ │ ├── completion.gif │ │ ├── cursor.gif │ │ ├── debug_formatter.png │ │ ├── process-helper-debug.png │ │ ├── process-helper-error-debug.png │ │ ├── process-helper-verbose.png │ │ └── progressbar.gif │ ├── http_kernel │ │ ├── http-workflow-exception.svg │ │ ├── http-workflow-subrequest.svg │ │ └── http-workflow.svg │ ├── messenger │ │ ├── basic_cycle.png │ │ └── overview.svg │ ├── scheduler │ │ ├── generate_consume.png │ │ └── scheduler_cycle.png │ ├── string │ │ └── bytes-points-graphemes.png │ ├── var_dumper │ │ ├── 01-simple.png │ │ ├── 02-multi-line-str.png │ │ ├── 03-object.png │ │ ├── 04-dynamic-property.png │ │ ├── 05-soft-ref.png │ │ ├── 06-constants.png │ │ ├── 07-hard-ref.png │ │ ├── 08-virtual-property.png │ │ ├── 09-cut.png │ │ └── 10-uninitialized.png │ └── workflow │ │ ├── blogpost.png │ │ ├── blogpost_mermaid.png │ │ ├── blogpost_metadata.png │ │ ├── blogpost_puml.png │ │ ├── job_application.png │ │ ├── pull_request.png │ │ ├── pull_request_puml_styled.png │ │ ├── simple.png │ │ └── states_transitions.png ├── contributing │ ├── code │ │ └── stack-trace.gif │ ├── docs-github-create-pr.png │ ├── docs-github-edit-page.png │ └── docs-pull-request-change-base.png ├── controller │ └── error_pages │ │ ├── errors-in-prod-environment.png │ │ └── exceptions-in-dev-environment.png ├── deployment │ └── azure-website │ │ ├── step-01.png │ │ ├── step-02.png │ │ ├── step-03.png │ │ ├── step-04.png │ │ ├── step-05.png │ │ ├── step-06.png │ │ ├── step-07.png │ │ ├── step-08.png │ │ ├── step-09.png │ │ ├── step-10.png │ │ ├── step-11.png │ │ ├── step-12.png │ │ ├── step-13.png │ │ ├── step-14.png │ │ ├── step-15.png │ │ └── step-16.png ├── doctrine │ ├── doctrine_web_debug_toolbar.png │ ├── mapping_relations.svg │ ├── mapping_relations_proxy.svg │ └── mapping_single_entity.svg ├── form │ ├── data-transformer-types.svg │ ├── form-custom-type-postal-address-fragment-names.svg │ ├── form-custom-type-postal-address.svg │ ├── form-field-parts.svg │ ├── form_prepopulation_workflow.svg │ ├── form_submission_workflow.svg │ ├── form_workflow.svg │ ├── simple-form-2.png │ ├── simple-form.png │ └── tailwindcss-form.png ├── http │ ├── request-flow.svg │ ├── xkcd-full.svg │ └── xkcd-request.svg ├── install │ └── deprecations-in-profiler.png ├── mercure │ ├── chrome.png │ ├── discovery.svg │ ├── hub.svg │ └── panel.png ├── notifier │ ├── microsoft_teams │ │ ├── message-card.png │ │ └── message.png │ └── slack │ │ ├── field-method.png │ │ ├── message-reply.png │ │ ├── slack-footer.png │ │ └── slack-header.png ├── profiler │ └── web-interface.png ├── quick_tour │ └── no_routes_page.png ├── rate_limiter │ ├── fixed_window.svg │ ├── sliding_window.svg │ └── token_bucket.svg ├── reference │ └── form │ │ ├── choice-example1.png │ │ ├── choice-example2.png │ │ ├── choice-example3.png │ │ ├── choice-example4.png │ │ └── choice-example5.png ├── security │ ├── anonymous_wdt.png │ ├── authentication-guard-methods.svg │ ├── login_link_email.png │ ├── profiler-badges.png │ ├── security_events.svg │ └── symfony_loggedin_wdt.png ├── serializer │ └── serializer_workflow.svg ├── sources │ ├── README.md │ ├── ascii-render.sh │ ├── components │ │ ├── console │ │ │ ├── completion.cast │ │ │ ├── cursor.cast │ │ │ └── progress.cast │ │ └── messenger │ │ │ └── overview.dia │ ├── doctrine │ │ ├── mapping_relations.dia │ │ ├── mapping_relations_proxy.dia │ │ └── mapping_single_entity.dia │ ├── form │ │ ├── data-transformer-types.dia │ │ ├── form-custom-type-postal-address-fragment-names.dia │ │ ├── form-custom-type-postal-address.dia │ │ ├── form-field-parts.dia │ │ ├── form_events.dia │ │ ├── form_prepopulation_workflow.dia │ │ ├── form_submission_workflow.dia │ │ └── form_workflow.dia │ ├── http │ │ ├── request-flow.dia │ │ ├── xkcd-full.dia │ │ └── xkcd-request.dia │ ├── http_kernel │ │ └── http-workflow.dia │ ├── mercure │ │ ├── discovery.dia │ │ └── hub.dia │ ├── rate_limiter │ │ ├── fixed_window.dia │ │ ├── sliding_window.dia │ │ └── token_bucket.dia │ ├── security │ │ ├── authentication-guard-methods.dia │ │ └── security_events.dia │ └── serializer │ │ └── serializer_workflow.dia └── translation │ ├── pseudolocalization-interface-original.png │ ├── pseudolocalization-interface-translated.png │ ├── pseudolocalization-symfony-demo-disabled.png │ └── pseudolocalization-symfony-demo-enabled.png ├── _includes └── _rewrite_rule_tip.rst.inc ├── best_practices.rst ├── bundles.rst ├── bundles ├── best_practices.rst ├── configuration.rst ├── extension.rst ├── index.rst ├── override.rst └── prepend_extension.rst ├── cache.rst ├── components ├── asset.rst ├── browser_kit.rst ├── cache.rst ├── cache │ ├── adapters │ │ ├── apcu_adapter.rst │ │ ├── array_cache_adapter.rst │ │ ├── chain_adapter.rst │ │ ├── couchbasebucket_adapter.rst │ │ ├── couchbasecollection_adapter.rst │ │ ├── doctrine_dbal_adapter.rst │ │ ├── filesystem_adapter.rst │ │ ├── memcached_adapter.rst │ │ ├── pdo_adapter.rst │ │ ├── php_array_cache_adapter.rst │ │ ├── php_files_adapter.rst │ │ ├── proxy_adapter.rst │ │ └── redis_adapter.rst │ ├── cache_invalidation.rst │ ├── cache_items.rst │ ├── cache_pools.rst │ └── psr6_psr16_adapters.rst ├── clock.rst ├── config.rst ├── config │ ├── caching.rst │ ├── definition.rst │ └── resources.rst ├── console.rst ├── console │ ├── changing_default_command.rst │ ├── console_arguments.rst │ ├── events.rst │ ├── helpers │ │ ├── cursor.rst │ │ ├── debug_formatter.rst │ │ ├── formatterhelper.rst │ │ ├── index.rst │ │ ├── map.rst.inc │ │ ├── processhelper.rst │ │ ├── progressbar.rst │ │ ├── progressindicator.rst │ │ ├── questionhelper.rst │ │ ├── table.rst │ │ └── tree.rst │ ├── logger.rst │ ├── single_command_tool.rst │ └── usage.rst ├── contracts.rst ├── css_selector.rst ├── dependency_injection.rst ├── dependency_injection │ ├── _imports-parameters-note.rst.inc │ ├── compilation.rst │ └── workflow.rst ├── dom_crawler.rst ├── event_dispatcher.rst ├── event_dispatcher │ ├── generic_event.rst │ ├── immutable_dispatcher.rst │ └── traceable_dispatcher.rst ├── expression_language.rst ├── filesystem.rst ├── finder.rst ├── form.rst ├── http_foundation.rst ├── http_kernel.rst ├── index.rst ├── intl.rst ├── json_path.rst ├── ldap.rst ├── lock.rst ├── messenger.rst ├── mime.rst ├── options_resolver.rst ├── phpunit_bridge.rst ├── process.rst ├── property_access.rst ├── property_info.rst ├── psr7.rst ├── require_autoload.rst.inc ├── runtime.rst ├── semaphore.rst ├── type_info.rst ├── uid.rst ├── using_components.rst ├── validator.rst ├── validator │ ├── metadata.rst │ └── resources.rst ├── var_dumper.rst ├── var_exporter.rst ├── workflow.rst └── yaml.rst ├── configuration.rst ├── configuration ├── env_var_processors.rst ├── front_controllers_and_kernel.rst ├── micro_kernel_trait.rst ├── multiple_kernels.rst ├── override_dir_structure.rst ├── secrets.rst └── using_parameters_in_dic.rst ├── console.rst ├── console ├── calling_commands.rst ├── coloring.rst ├── command_in_controller.rst ├── commands_as_services.rst ├── hide_commands.rst ├── input.rst ├── lazy_commands.rst ├── lockable_trait.rst ├── style.rst └── verbosity.rst ├── contributing ├── code │ ├── bc.rst │ ├── bugs.rst │ ├── conventions.rst │ ├── experimental.rst │ ├── git.rst │ ├── index.rst │ ├── license.rst │ ├── maintenance.rst │ ├── pull_requests.rst │ ├── reproducer.rst │ ├── security.rst │ ├── stack_trace.rst │ ├── standards.rst │ └── tests.rst ├── code_of_conduct │ ├── care_team.rst │ ├── code_of_conduct.rst │ ├── concrete_example_document.rst │ ├── index.rst │ └── reporting_guidelines.rst ├── community │ ├── index.rst │ ├── mentoring.rst │ ├── releases.rst │ ├── review-comments.rst │ ├── reviews.rst │ └── speaker-mentoring.rst ├── core_team.rst ├── diversity │ ├── further_reading.rst │ ├── governance.rst │ └── index.rst ├── documentation │ ├── format.rst │ ├── index.rst │ ├── license.rst │ ├── overview.rst │ ├── standards.rst │ └── translations.rst ├── index.rst ├── map.rst.inc └── translations │ └── index.rst ├── controller.rst ├── controller ├── error_pages.rst ├── forwarding.rst ├── service.rst ├── upload_file.rst └── value_resolver.rst ├── create_framework ├── dependency_injection.rst ├── event_dispatcher.rst ├── front_controller.rst ├── http_foundation.rst ├── http_kernel_controller_resolver.rst ├── http_kernel_httpkernel_class.rst ├── http_kernel_httpkernelinterface.rst ├── index.rst ├── introduction.rst ├── map.rst.inc ├── routing.rst ├── separation_of_concerns.rst ├── templating.rst └── unit_testing.rst ├── deployment.rst ├── deployment └── proxies.rst ├── doctrine.rst ├── doctrine ├── associations.rst ├── custom_dql_functions.rst ├── dbal.rst ├── events.rst ├── multiple_entity_managers.rst └── resolve_target_entity.rst ├── emoji.rst ├── event_dispatcher.rst ├── form ├── bootstrap4.rst ├── bootstrap5.rst ├── create_custom_field_type.rst ├── create_form_type_extension.rst ├── data_mappers.rst ├── data_transformers.rst ├── direct_submit.rst ├── disabling_validation.rst ├── dynamic_form_modification.rst ├── embedded.rst ├── events.rst ├── form_collections.rst ├── form_customization.rst ├── form_themes.rst ├── inherit_data_option.rst ├── multiple_buttons.rst ├── tailwindcss.rst ├── type_guesser.rst ├── unit_testing.rst ├── use_empty_data.rst ├── validation_groups.rst └── without_class.rst ├── forms.rst ├── frontend.rst ├── frontend ├── asset_mapper.rst ├── create_ux_bundle.rst ├── custom_version_strategy.rst ├── encore │ ├── advanced-config.rst │ ├── babel.rst │ ├── bootstrap.rst │ ├── cdn.rst │ ├── code-splitting.rst │ ├── copy-files.rst │ ├── css-preprocessors.rst │ ├── custom-loaders-plugins.rst │ ├── dev-server.rst │ ├── faq.rst │ ├── index.rst │ ├── installation.rst │ ├── legacy-applications.rst │ ├── postcss.rst │ ├── reactjs.rst │ ├── simple-example.rst │ ├── sourcemaps.rst │ ├── split-chunks.rst │ ├── typescript.rst │ ├── url-loader.rst │ ├── versioning.rst │ ├── virtual-machine.rst │ └── vuejs.rst └── server-data.rst ├── getting_started └── index.rst ├── html_sanitizer.rst ├── http_cache.rst ├── http_cache ├── _expiration-and-validation.rst.inc ├── cache_invalidation.rst ├── cache_vary.rst ├── esi.rst ├── expiration.rst ├── ssi.rst ├── validation.rst └── varnish.rst ├── http_client.rst ├── index.rst ├── introduction ├── from_flat_php_to_symfony.rst └── http_fundamentals.rst ├── lock.rst ├── logging.rst ├── logging ├── channels_handlers.rst ├── formatter.rst ├── handlers.rst ├── monolog_console.rst ├── monolog_email.rst ├── monolog_exclude_http_codes.rst └── processors.rst ├── mailer.rst ├── mercure.rst ├── messenger.rst ├── messenger └── custom-transport.rst ├── migration.rst ├── notifier.rst ├── object_mapper.rst ├── page_creation.rst ├── performance.rst ├── profiler.rst ├── quick_tour ├── flex_recipes.rst ├── index.rst ├── the_architecture.rst └── the_big_picture.rst ├── rate_limiter.rst ├── reference ├── attributes.rst ├── configuration │ ├── debug.rst │ ├── doctrine.rst │ ├── framework.rst │ ├── kernel.rst │ ├── monolog.rst │ ├── security.rst │ ├── twig.rst │ └── web_profiler.rst ├── constraints.rst ├── constraints │ ├── All.rst │ ├── AtLeastOneOf.rst │ ├── Bic.rst │ ├── Blank.rst │ ├── Callback.rst │ ├── CardScheme.rst │ ├── Cascade.rst │ ├── Charset.rst │ ├── Choice.rst │ ├── Cidr.rst │ ├── Collection.rst │ ├── Compound.rst │ ├── Count.rst │ ├── Country.rst │ ├── CssColor.rst │ ├── Currency.rst │ ├── Date.rst │ ├── DateTime.rst │ ├── DisableAutoMapping.rst │ ├── DivisibleBy.rst │ ├── Email.rst │ ├── EnableAutoMapping.rst │ ├── EqualTo.rst │ ├── Expression.rst │ ├── ExpressionSyntax.rst │ ├── File.rst │ ├── GreaterThan.rst │ ├── GreaterThanOrEqual.rst │ ├── Hostname.rst │ ├── Iban.rst │ ├── IdenticalTo.rst │ ├── Image.rst │ ├── Ip.rst │ ├── IsFalse.rst │ ├── IsNull.rst │ ├── IsTrue.rst │ ├── Isbn.rst │ ├── Isin.rst │ ├── Issn.rst │ ├── Json.rst │ ├── Language.rst │ ├── Length.rst │ ├── LessThan.rst │ ├── LessThanOrEqual.rst │ ├── Locale.rst │ ├── Luhn.rst │ ├── MacAddress.rst │ ├── Negative.rst │ ├── NegativeOrZero.rst │ ├── NoSuspiciousCharacters.rst │ ├── NotBlank.rst │ ├── NotCompromisedPassword.rst │ ├── NotEqualTo.rst │ ├── NotIdenticalTo.rst │ ├── NotNull.rst │ ├── PasswordStrength.rst │ ├── Positive.rst │ ├── PositiveOrZero.rst │ ├── Range.rst │ ├── Regex.rst │ ├── Sequentially.rst │ ├── Time.rst │ ├── Timezone.rst │ ├── Traverse.rst │ ├── Twig.rst │ ├── Type.rst │ ├── Ulid.rst │ ├── Unique.rst │ ├── UniqueEntity.rst │ ├── Url.rst │ ├── UserPassword.rst │ ├── Uuid.rst │ ├── Valid.rst │ ├── Week.rst │ ├── When.rst │ ├── WordCount.rst │ ├── Yaml.rst │ ├── _comparison-propertypath-option.rst.inc │ ├── _comparison-value-option.rst.inc │ ├── _empty-values-are-valid.rst.inc │ ├── _groups-option.rst.inc │ ├── _normalizer-option.rst.inc │ ├── _null-values-are-valid.rst.inc │ ├── _parameters-mime-types-message-option.rst.inc │ ├── _payload-option.rst.inc │ └── map.rst.inc ├── dic_tags.rst ├── events.rst ├── formats │ ├── expression_language.rst │ ├── message_format.rst │ ├── xliff.rst │ └── yaml.rst ├── forms │ ├── types.rst │ └── types │ │ ├── birthday.rst │ │ ├── button.rst │ │ ├── checkbox.rst │ │ ├── choice.rst │ │ ├── collection.rst │ │ ├── color.rst │ │ ├── country.rst │ │ ├── currency.rst │ │ ├── date.rst │ │ ├── dateinterval.rst │ │ ├── datetime.rst │ │ ├── email.rst │ │ ├── entity.rst │ │ ├── enum.rst │ │ ├── file.rst │ │ ├── form.rst │ │ ├── hidden.rst │ │ ├── integer.rst │ │ ├── language.rst │ │ ├── locale.rst │ │ ├── map.rst.inc │ │ ├── money.rst │ │ ├── number.rst │ │ ├── options │ │ ├── _date_limitation.rst.inc │ │ ├── _debug_form.rst.inc │ │ ├── _error_bubbling_body.rst.inc │ │ ├── _error_bubbling_hint.rst.inc │ │ ├── action.rst.inc │ │ ├── attr.rst.inc │ │ ├── attr_translation_parameters.rst.inc │ │ ├── auto_initialize.rst.inc │ │ ├── block_name.rst.inc │ │ ├── block_prefix.rst.inc │ │ ├── button_disabled.rst.inc │ │ ├── button_label.rst.inc │ │ ├── button_translation_domain.rst.inc │ │ ├── by_reference.rst.inc │ │ ├── checkbox_compound.rst.inc │ │ ├── checkbox_empty_data.rst.inc │ │ ├── choice_attr.rst.inc │ │ ├── choice_filter.rst.inc │ │ ├── choice_label.rst.inc │ │ ├── choice_lazy.rst.inc │ │ ├── choice_loader.rst.inc │ │ ├── choice_name.rst.inc │ │ ├── choice_translation_domain.rst.inc │ │ ├── choice_translation_domain_disabled.rst.inc │ │ ├── choice_translation_domain_enabled.rst.inc │ │ ├── choice_translation_locale.rst.inc │ │ ├── choice_translation_parameters.rst.inc │ │ ├── choice_type_translation_domain.rst.inc │ │ ├── choice_type_trim.rst.inc │ │ ├── choice_value.rst.inc │ │ ├── compound.rst.inc │ │ ├── compound_type.rst.inc │ │ ├── constraints.rst.inc │ │ ├── data.rst.inc │ │ ├── data_class.rst.inc │ │ ├── data_class_date.rst.inc │ │ ├── date_format.rst.inc │ │ ├── date_input.rst.inc │ │ ├── date_input_format.rst.inc │ │ ├── date_input_format_description.rst.inc │ │ ├── date_widget.rst.inc │ │ ├── date_widget_description.rst.inc │ │ ├── days.rst.inc │ │ ├── disabled.rst.inc │ │ ├── duplicate_preferred_choices.rst.inc │ │ ├── empty_data_declaration.rst.inc │ │ ├── empty_data_description.rst.inc │ │ ├── error_bubbling.rst.inc │ │ ├── error_mapping.rst.inc │ │ ├── expanded.rst.inc │ │ ├── extra_fields_message.rst.inc │ │ ├── form_attr.rst.inc │ │ ├── group_by.rst.inc │ │ ├── grouping.rst.inc │ │ ├── help.rst.inc │ │ ├── help_attr.rst.inc │ │ ├── help_html.rst.inc │ │ ├── help_translation_parameters.rst.inc │ │ ├── hours.rst.inc │ │ ├── html5.rst.inc │ │ ├── inherit_data.rst.inc │ │ ├── invalid_message.rst.inc │ │ ├── invalid_message_parameters.rst.inc │ │ ├── label.rst.inc │ │ ├── label_attr.rst.inc │ │ ├── label_format.rst.inc │ │ ├── label_html.rst.inc │ │ ├── label_translation_parameters.rst.inc │ │ ├── mapped.rst.inc │ │ ├── method.rst.inc │ │ ├── minutes.rst.inc │ │ ├── model_timezone.rst.inc │ │ ├── months.rst.inc │ │ ├── multiple.rst.inc │ │ ├── placeholder.rst.inc │ │ ├── placeholder_attr.rst.inc │ │ ├── post_max_size_message.rst.inc │ │ ├── preferred_choices.rst.inc │ │ ├── priority.rst.inc │ │ ├── property_path.rst.inc │ │ ├── required.rst.inc │ │ ├── rounding_mode.rst.inc │ │ ├── row_attr.rst.inc │ │ ├── sanitize_html.rst.inc │ │ ├── sanitizer.rst.inc │ │ ├── seconds.rst.inc │ │ ├── select_how_rendered.rst.inc │ │ ├── translation_domain.rst.inc │ │ ├── trim.rst.inc │ │ ├── validation_groups.rst.inc │ │ ├── value.rst.inc │ │ ├── view_timezone.rst.inc │ │ ├── weeks.rst.inc │ │ ├── with_minutes.rst.inc │ │ ├── with_seconds.rst.inc │ │ └── years.rst.inc │ │ ├── password.rst │ │ ├── percent.rst │ │ ├── radio.rst │ │ ├── range.rst │ │ ├── repeated.rst │ │ ├── reset.rst │ │ ├── search.rst │ │ ├── submit.rst │ │ ├── tel.rst │ │ ├── text.rst │ │ ├── textarea.rst │ │ ├── time.rst │ │ ├── timezone.rst │ │ ├── ulid.rst │ │ ├── url.rst │ │ ├── uuid.rst │ │ ├── variables │ │ └── check_or_radio_table.rst.inc │ │ └── week.rst ├── index.rst ├── map.rst.inc └── twig_reference.rst ├── routing.rst ├── routing ├── custom_route_loader.rst └── routing_from_database.rst ├── scheduler.rst ├── security.rst ├── security ├── access_control.rst ├── access_denied_handler.rst ├── access_token.rst ├── csrf.rst ├── custom_authenticator.rst ├── entry_point.rst ├── expressions.rst ├── firewall_restriction.rst ├── force_https.rst ├── form_login.rst ├── impersonating_user.rst ├── ldap.rst ├── login_link.rst ├── passwords.rst ├── remember_me.rst ├── user_checkers.rst ├── user_providers.rst └── voters.rst ├── serializer.rst ├── serializer ├── custom_context_builders.rst ├── custom_name_converter.rst ├── custom_normalizer.rst ├── encoders.rst └── streaming_json.rst ├── service_container.rst ├── service_container ├── alias_private.rst ├── autowiring.rst ├── calls.rst ├── compiler_passes.rst ├── configurators.rst ├── debug.rst ├── definitions.rst ├── expression_language.rst ├── factories.rst ├── import.rst ├── injection_types.rst ├── lazy_services.rst ├── optional_dependencies.rst ├── parent_services.rst ├── request.rst ├── service_closures.rst ├── service_decoration.rst ├── service_subscribers_locators.rst ├── shared.rst ├── synthetic_services.rst └── tags.rst ├── session.rst ├── setup.rst ├── setup ├── _update_all_packages.rst.inc ├── _update_dep_errors.rst.inc ├── _update_recipes.rst.inc ├── bundles.rst ├── docker.rst ├── file_permissions.rst ├── flex.rst ├── flex_private_recipes.rst ├── homestead.rst ├── symfony_cli.rst ├── unstable_versions.rst ├── upgrade_major.rst ├── upgrade_minor.rst ├── upgrade_patch.rst └── web_server_configuration.rst ├── string.rst ├── templates.rst ├── testing.rst ├── testing ├── bootstrap.rst ├── database.rst ├── dom_crawler.rst ├── end_to_end.rst ├── insulating_clients.rst └── profiling.rst ├── translation.rst ├── validation.rst ├── validation ├── custom_constraint.rst ├── groups.rst ├── raw_values.rst ├── sequence_provider.rst ├── severity.rst └── translations.rst ├── web_link.rst ├── webhook.rst ├── workflow.rst └── workflow ├── dumping-workflows.rst └── workflow-and-state-machine.rst /.alexrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/.alexrc -------------------------------------------------------------------------------- /.doctor-rst.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/.doctor-rst.yaml -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/workflows/ci.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/.github/workflows/ci.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/README.md -------------------------------------------------------------------------------- /_build/build.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/_build/build.php -------------------------------------------------------------------------------- /_build/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/_build/composer.json -------------------------------------------------------------------------------- /_build/composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/_build/composer.lock -------------------------------------------------------------------------------- /_build/maintainer_guide.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/_build/maintainer_guide.rst -------------------------------------------------------------------------------- /_build/redirection_map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/_build/redirection_map -------------------------------------------------------------------------------- /_images/components/console/completion.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/_images/components/console/completion.gif -------------------------------------------------------------------------------- /_images/components/console/cursor.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/_images/components/console/cursor.gif -------------------------------------------------------------------------------- /_images/components/console/debug_formatter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/_images/components/console/debug_formatter.png -------------------------------------------------------------------------------- /_images/components/console/process-helper-debug.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/_images/components/console/process-helper-debug.png -------------------------------------------------------------------------------- /_images/components/console/process-helper-error-debug.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/_images/components/console/process-helper-error-debug.png -------------------------------------------------------------------------------- /_images/components/console/process-helper-verbose.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/_images/components/console/process-helper-verbose.png -------------------------------------------------------------------------------- /_images/components/console/progressbar.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/_images/components/console/progressbar.gif -------------------------------------------------------------------------------- /_images/components/http_kernel/http-workflow-exception.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/_images/components/http_kernel/http-workflow-exception.svg -------------------------------------------------------------------------------- /_images/components/http_kernel/http-workflow-subrequest.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/_images/components/http_kernel/http-workflow-subrequest.svg -------------------------------------------------------------------------------- /_images/components/http_kernel/http-workflow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/_images/components/http_kernel/http-workflow.svg -------------------------------------------------------------------------------- /_images/components/messenger/basic_cycle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/_images/components/messenger/basic_cycle.png -------------------------------------------------------------------------------- /_images/components/messenger/overview.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/_images/components/messenger/overview.svg -------------------------------------------------------------------------------- /_images/components/scheduler/generate_consume.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/_images/components/scheduler/generate_consume.png -------------------------------------------------------------------------------- /_images/components/scheduler/scheduler_cycle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/_images/components/scheduler/scheduler_cycle.png -------------------------------------------------------------------------------- /_images/components/string/bytes-points-graphemes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/_images/components/string/bytes-points-graphemes.png -------------------------------------------------------------------------------- /_images/components/var_dumper/01-simple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/_images/components/var_dumper/01-simple.png -------------------------------------------------------------------------------- /_images/components/var_dumper/02-multi-line-str.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/_images/components/var_dumper/02-multi-line-str.png -------------------------------------------------------------------------------- /_images/components/var_dumper/03-object.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/_images/components/var_dumper/03-object.png -------------------------------------------------------------------------------- /_images/components/var_dumper/04-dynamic-property.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/_images/components/var_dumper/04-dynamic-property.png -------------------------------------------------------------------------------- /_images/components/var_dumper/05-soft-ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/_images/components/var_dumper/05-soft-ref.png -------------------------------------------------------------------------------- /_images/components/var_dumper/06-constants.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/_images/components/var_dumper/06-constants.png -------------------------------------------------------------------------------- /_images/components/var_dumper/07-hard-ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/_images/components/var_dumper/07-hard-ref.png -------------------------------------------------------------------------------- /_images/components/var_dumper/08-virtual-property.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/_images/components/var_dumper/08-virtual-property.png -------------------------------------------------------------------------------- /_images/components/var_dumper/09-cut.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/_images/components/var_dumper/09-cut.png -------------------------------------------------------------------------------- /_images/components/var_dumper/10-uninitialized.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/_images/components/var_dumper/10-uninitialized.png -------------------------------------------------------------------------------- /_images/components/workflow/blogpost.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/_images/components/workflow/blogpost.png -------------------------------------------------------------------------------- /_images/components/workflow/blogpost_mermaid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/_images/components/workflow/blogpost_mermaid.png -------------------------------------------------------------------------------- /_images/components/workflow/blogpost_metadata.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/_images/components/workflow/blogpost_metadata.png -------------------------------------------------------------------------------- /_images/components/workflow/blogpost_puml.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/_images/components/workflow/blogpost_puml.png -------------------------------------------------------------------------------- /_images/components/workflow/job_application.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/_images/components/workflow/job_application.png -------------------------------------------------------------------------------- /_images/components/workflow/pull_request.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/_images/components/workflow/pull_request.png -------------------------------------------------------------------------------- /_images/components/workflow/pull_request_puml_styled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/_images/components/workflow/pull_request_puml_styled.png -------------------------------------------------------------------------------- /_images/components/workflow/simple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/_images/components/workflow/simple.png -------------------------------------------------------------------------------- /_images/components/workflow/states_transitions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/_images/components/workflow/states_transitions.png -------------------------------------------------------------------------------- /_images/contributing/code/stack-trace.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/_images/contributing/code/stack-trace.gif -------------------------------------------------------------------------------- /_images/contributing/docs-github-create-pr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/_images/contributing/docs-github-create-pr.png -------------------------------------------------------------------------------- /_images/contributing/docs-github-edit-page.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/_images/contributing/docs-github-edit-page.png -------------------------------------------------------------------------------- /_images/contributing/docs-pull-request-change-base.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/_images/contributing/docs-pull-request-change-base.png -------------------------------------------------------------------------------- /_images/controller/error_pages/errors-in-prod-environment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/_images/controller/error_pages/errors-in-prod-environment.png -------------------------------------------------------------------------------- /_images/controller/error_pages/exceptions-in-dev-environment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/_images/controller/error_pages/exceptions-in-dev-environment.png -------------------------------------------------------------------------------- /_images/deployment/azure-website/step-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/_images/deployment/azure-website/step-01.png -------------------------------------------------------------------------------- /_images/deployment/azure-website/step-02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/_images/deployment/azure-website/step-02.png -------------------------------------------------------------------------------- /_images/deployment/azure-website/step-03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/_images/deployment/azure-website/step-03.png -------------------------------------------------------------------------------- /_images/deployment/azure-website/step-04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/_images/deployment/azure-website/step-04.png -------------------------------------------------------------------------------- /_images/deployment/azure-website/step-05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/_images/deployment/azure-website/step-05.png -------------------------------------------------------------------------------- /_images/deployment/azure-website/step-06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/_images/deployment/azure-website/step-06.png -------------------------------------------------------------------------------- /_images/deployment/azure-website/step-07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/_images/deployment/azure-website/step-07.png -------------------------------------------------------------------------------- /_images/deployment/azure-website/step-08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/_images/deployment/azure-website/step-08.png -------------------------------------------------------------------------------- /_images/deployment/azure-website/step-09.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/_images/deployment/azure-website/step-09.png -------------------------------------------------------------------------------- /_images/deployment/azure-website/step-10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/_images/deployment/azure-website/step-10.png -------------------------------------------------------------------------------- /_images/deployment/azure-website/step-11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/_images/deployment/azure-website/step-11.png -------------------------------------------------------------------------------- /_images/deployment/azure-website/step-12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/_images/deployment/azure-website/step-12.png -------------------------------------------------------------------------------- /_images/deployment/azure-website/step-13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/_images/deployment/azure-website/step-13.png -------------------------------------------------------------------------------- /_images/deployment/azure-website/step-14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/_images/deployment/azure-website/step-14.png -------------------------------------------------------------------------------- /_images/deployment/azure-website/step-15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/_images/deployment/azure-website/step-15.png -------------------------------------------------------------------------------- /_images/deployment/azure-website/step-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/_images/deployment/azure-website/step-16.png -------------------------------------------------------------------------------- /_images/doctrine/doctrine_web_debug_toolbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/_images/doctrine/doctrine_web_debug_toolbar.png -------------------------------------------------------------------------------- /_images/doctrine/mapping_relations.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/_images/doctrine/mapping_relations.svg -------------------------------------------------------------------------------- /_images/doctrine/mapping_relations_proxy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/_images/doctrine/mapping_relations_proxy.svg -------------------------------------------------------------------------------- /_images/doctrine/mapping_single_entity.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/_images/doctrine/mapping_single_entity.svg -------------------------------------------------------------------------------- /_images/form/data-transformer-types.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/_images/form/data-transformer-types.svg -------------------------------------------------------------------------------- /_images/form/form-custom-type-postal-address-fragment-names.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/_images/form/form-custom-type-postal-address-fragment-names.svg -------------------------------------------------------------------------------- /_images/form/form-custom-type-postal-address.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/_images/form/form-custom-type-postal-address.svg -------------------------------------------------------------------------------- /_images/form/form-field-parts.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/_images/form/form-field-parts.svg -------------------------------------------------------------------------------- /_images/form/form_prepopulation_workflow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/_images/form/form_prepopulation_workflow.svg -------------------------------------------------------------------------------- /_images/form/form_submission_workflow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/_images/form/form_submission_workflow.svg -------------------------------------------------------------------------------- /_images/form/form_workflow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/_images/form/form_workflow.svg -------------------------------------------------------------------------------- /_images/form/simple-form-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/_images/form/simple-form-2.png -------------------------------------------------------------------------------- /_images/form/simple-form.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/_images/form/simple-form.png -------------------------------------------------------------------------------- /_images/form/tailwindcss-form.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/_images/form/tailwindcss-form.png -------------------------------------------------------------------------------- /_images/http/request-flow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/_images/http/request-flow.svg -------------------------------------------------------------------------------- /_images/http/xkcd-full.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/_images/http/xkcd-full.svg -------------------------------------------------------------------------------- /_images/http/xkcd-request.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/_images/http/xkcd-request.svg -------------------------------------------------------------------------------- /_images/install/deprecations-in-profiler.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/_images/install/deprecations-in-profiler.png -------------------------------------------------------------------------------- /_images/mercure/chrome.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/_images/mercure/chrome.png -------------------------------------------------------------------------------- /_images/mercure/discovery.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/_images/mercure/discovery.svg -------------------------------------------------------------------------------- /_images/mercure/hub.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/_images/mercure/hub.svg -------------------------------------------------------------------------------- /_images/mercure/panel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/_images/mercure/panel.png -------------------------------------------------------------------------------- /_images/notifier/microsoft_teams/message-card.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/_images/notifier/microsoft_teams/message-card.png -------------------------------------------------------------------------------- /_images/notifier/microsoft_teams/message.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/_images/notifier/microsoft_teams/message.png -------------------------------------------------------------------------------- /_images/notifier/slack/field-method.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/_images/notifier/slack/field-method.png -------------------------------------------------------------------------------- /_images/notifier/slack/message-reply.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/_images/notifier/slack/message-reply.png -------------------------------------------------------------------------------- /_images/notifier/slack/slack-footer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/_images/notifier/slack/slack-footer.png -------------------------------------------------------------------------------- /_images/notifier/slack/slack-header.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/_images/notifier/slack/slack-header.png -------------------------------------------------------------------------------- /_images/profiler/web-interface.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/_images/profiler/web-interface.png -------------------------------------------------------------------------------- /_images/quick_tour/no_routes_page.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/_images/quick_tour/no_routes_page.png -------------------------------------------------------------------------------- /_images/rate_limiter/fixed_window.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/_images/rate_limiter/fixed_window.svg -------------------------------------------------------------------------------- /_images/rate_limiter/sliding_window.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/_images/rate_limiter/sliding_window.svg -------------------------------------------------------------------------------- /_images/rate_limiter/token_bucket.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/_images/rate_limiter/token_bucket.svg -------------------------------------------------------------------------------- /_images/reference/form/choice-example1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/_images/reference/form/choice-example1.png -------------------------------------------------------------------------------- /_images/reference/form/choice-example2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/_images/reference/form/choice-example2.png -------------------------------------------------------------------------------- /_images/reference/form/choice-example3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/_images/reference/form/choice-example3.png -------------------------------------------------------------------------------- /_images/reference/form/choice-example4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/_images/reference/form/choice-example4.png -------------------------------------------------------------------------------- /_images/reference/form/choice-example5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/_images/reference/form/choice-example5.png -------------------------------------------------------------------------------- /_images/security/anonymous_wdt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/_images/security/anonymous_wdt.png -------------------------------------------------------------------------------- /_images/security/authentication-guard-methods.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/_images/security/authentication-guard-methods.svg -------------------------------------------------------------------------------- /_images/security/login_link_email.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/_images/security/login_link_email.png -------------------------------------------------------------------------------- /_images/security/profiler-badges.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/_images/security/profiler-badges.png -------------------------------------------------------------------------------- /_images/security/security_events.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/_images/security/security_events.svg -------------------------------------------------------------------------------- /_images/security/symfony_loggedin_wdt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/_images/security/symfony_loggedin_wdt.png -------------------------------------------------------------------------------- /_images/serializer/serializer_workflow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/_images/serializer/serializer_workflow.svg -------------------------------------------------------------------------------- /_images/sources/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/_images/sources/README.md -------------------------------------------------------------------------------- /_images/sources/ascii-render.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/_images/sources/ascii-render.sh -------------------------------------------------------------------------------- /_images/sources/components/console/completion.cast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/_images/sources/components/console/completion.cast -------------------------------------------------------------------------------- /_images/sources/components/console/cursor.cast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/_images/sources/components/console/cursor.cast -------------------------------------------------------------------------------- /_images/sources/components/console/progress.cast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/_images/sources/components/console/progress.cast -------------------------------------------------------------------------------- /_images/sources/components/messenger/overview.dia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/_images/sources/components/messenger/overview.dia -------------------------------------------------------------------------------- /_images/sources/doctrine/mapping_relations.dia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/_images/sources/doctrine/mapping_relations.dia -------------------------------------------------------------------------------- /_images/sources/doctrine/mapping_relations_proxy.dia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/_images/sources/doctrine/mapping_relations_proxy.dia -------------------------------------------------------------------------------- /_images/sources/doctrine/mapping_single_entity.dia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/_images/sources/doctrine/mapping_single_entity.dia -------------------------------------------------------------------------------- /_images/sources/form/data-transformer-types.dia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/_images/sources/form/data-transformer-types.dia -------------------------------------------------------------------------------- /_images/sources/form/form-custom-type-postal-address-fragment-names.dia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/_images/sources/form/form-custom-type-postal-address-fragment-names.dia -------------------------------------------------------------------------------- /_images/sources/form/form-custom-type-postal-address.dia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/_images/sources/form/form-custom-type-postal-address.dia -------------------------------------------------------------------------------- /_images/sources/form/form-field-parts.dia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/_images/sources/form/form-field-parts.dia -------------------------------------------------------------------------------- /_images/sources/form/form_events.dia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/_images/sources/form/form_events.dia -------------------------------------------------------------------------------- /_images/sources/form/form_prepopulation_workflow.dia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/_images/sources/form/form_prepopulation_workflow.dia -------------------------------------------------------------------------------- /_images/sources/form/form_submission_workflow.dia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/_images/sources/form/form_submission_workflow.dia -------------------------------------------------------------------------------- /_images/sources/form/form_workflow.dia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/_images/sources/form/form_workflow.dia -------------------------------------------------------------------------------- /_images/sources/http/request-flow.dia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/_images/sources/http/request-flow.dia -------------------------------------------------------------------------------- /_images/sources/http/xkcd-full.dia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/_images/sources/http/xkcd-full.dia -------------------------------------------------------------------------------- /_images/sources/http/xkcd-request.dia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/_images/sources/http/xkcd-request.dia -------------------------------------------------------------------------------- /_images/sources/http_kernel/http-workflow.dia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/_images/sources/http_kernel/http-workflow.dia -------------------------------------------------------------------------------- /_images/sources/mercure/discovery.dia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/_images/sources/mercure/discovery.dia -------------------------------------------------------------------------------- /_images/sources/mercure/hub.dia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/_images/sources/mercure/hub.dia -------------------------------------------------------------------------------- /_images/sources/rate_limiter/fixed_window.dia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/_images/sources/rate_limiter/fixed_window.dia -------------------------------------------------------------------------------- /_images/sources/rate_limiter/sliding_window.dia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/_images/sources/rate_limiter/sliding_window.dia -------------------------------------------------------------------------------- /_images/sources/rate_limiter/token_bucket.dia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/_images/sources/rate_limiter/token_bucket.dia -------------------------------------------------------------------------------- /_images/sources/security/authentication-guard-methods.dia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/_images/sources/security/authentication-guard-methods.dia -------------------------------------------------------------------------------- /_images/sources/security/security_events.dia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/_images/sources/security/security_events.dia -------------------------------------------------------------------------------- /_images/sources/serializer/serializer_workflow.dia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/_images/sources/serializer/serializer_workflow.dia -------------------------------------------------------------------------------- /_images/translation/pseudolocalization-interface-original.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/_images/translation/pseudolocalization-interface-original.png -------------------------------------------------------------------------------- /_images/translation/pseudolocalization-interface-translated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/_images/translation/pseudolocalization-interface-translated.png -------------------------------------------------------------------------------- /_images/translation/pseudolocalization-symfony-demo-disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/_images/translation/pseudolocalization-symfony-demo-disabled.png -------------------------------------------------------------------------------- /_images/translation/pseudolocalization-symfony-demo-enabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/_images/translation/pseudolocalization-symfony-demo-enabled.png -------------------------------------------------------------------------------- /_includes/_rewrite_rule_tip.rst.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/_includes/_rewrite_rule_tip.rst.inc -------------------------------------------------------------------------------- /best_practices.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/best_practices.rst -------------------------------------------------------------------------------- /bundles.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/bundles.rst -------------------------------------------------------------------------------- /bundles/best_practices.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/bundles/best_practices.rst -------------------------------------------------------------------------------- /bundles/configuration.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/bundles/configuration.rst -------------------------------------------------------------------------------- /bundles/extension.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/bundles/extension.rst -------------------------------------------------------------------------------- /bundles/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/bundles/index.rst -------------------------------------------------------------------------------- /bundles/override.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/bundles/override.rst -------------------------------------------------------------------------------- /bundles/prepend_extension.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/bundles/prepend_extension.rst -------------------------------------------------------------------------------- /cache.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/cache.rst -------------------------------------------------------------------------------- /components/asset.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/components/asset.rst -------------------------------------------------------------------------------- /components/browser_kit.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/components/browser_kit.rst -------------------------------------------------------------------------------- /components/cache.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/components/cache.rst -------------------------------------------------------------------------------- /components/cache/adapters/apcu_adapter.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/components/cache/adapters/apcu_adapter.rst -------------------------------------------------------------------------------- /components/cache/adapters/array_cache_adapter.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/components/cache/adapters/array_cache_adapter.rst -------------------------------------------------------------------------------- /components/cache/adapters/chain_adapter.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/components/cache/adapters/chain_adapter.rst -------------------------------------------------------------------------------- /components/cache/adapters/couchbasebucket_adapter.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/components/cache/adapters/couchbasebucket_adapter.rst -------------------------------------------------------------------------------- /components/cache/adapters/couchbasecollection_adapter.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/components/cache/adapters/couchbasecollection_adapter.rst -------------------------------------------------------------------------------- /components/cache/adapters/doctrine_dbal_adapter.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/components/cache/adapters/doctrine_dbal_adapter.rst -------------------------------------------------------------------------------- /components/cache/adapters/filesystem_adapter.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/components/cache/adapters/filesystem_adapter.rst -------------------------------------------------------------------------------- /components/cache/adapters/memcached_adapter.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/components/cache/adapters/memcached_adapter.rst -------------------------------------------------------------------------------- /components/cache/adapters/pdo_adapter.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/components/cache/adapters/pdo_adapter.rst -------------------------------------------------------------------------------- /components/cache/adapters/php_array_cache_adapter.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/components/cache/adapters/php_array_cache_adapter.rst -------------------------------------------------------------------------------- /components/cache/adapters/php_files_adapter.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/components/cache/adapters/php_files_adapter.rst -------------------------------------------------------------------------------- /components/cache/adapters/proxy_adapter.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/components/cache/adapters/proxy_adapter.rst -------------------------------------------------------------------------------- /components/cache/adapters/redis_adapter.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/components/cache/adapters/redis_adapter.rst -------------------------------------------------------------------------------- /components/cache/cache_invalidation.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/components/cache/cache_invalidation.rst -------------------------------------------------------------------------------- /components/cache/cache_items.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/components/cache/cache_items.rst -------------------------------------------------------------------------------- /components/cache/cache_pools.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/components/cache/cache_pools.rst -------------------------------------------------------------------------------- /components/cache/psr6_psr16_adapters.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/components/cache/psr6_psr16_adapters.rst -------------------------------------------------------------------------------- /components/clock.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/components/clock.rst -------------------------------------------------------------------------------- /components/config.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/components/config.rst -------------------------------------------------------------------------------- /components/config/caching.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/components/config/caching.rst -------------------------------------------------------------------------------- /components/config/definition.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/components/config/definition.rst -------------------------------------------------------------------------------- /components/config/resources.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/components/config/resources.rst -------------------------------------------------------------------------------- /components/console.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/components/console.rst -------------------------------------------------------------------------------- /components/console/changing_default_command.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/components/console/changing_default_command.rst -------------------------------------------------------------------------------- /components/console/console_arguments.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/components/console/console_arguments.rst -------------------------------------------------------------------------------- /components/console/events.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/components/console/events.rst -------------------------------------------------------------------------------- /components/console/helpers/cursor.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/components/console/helpers/cursor.rst -------------------------------------------------------------------------------- /components/console/helpers/debug_formatter.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/components/console/helpers/debug_formatter.rst -------------------------------------------------------------------------------- /components/console/helpers/formatterhelper.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/components/console/helpers/formatterhelper.rst -------------------------------------------------------------------------------- /components/console/helpers/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/components/console/helpers/index.rst -------------------------------------------------------------------------------- /components/console/helpers/map.rst.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/components/console/helpers/map.rst.inc -------------------------------------------------------------------------------- /components/console/helpers/processhelper.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/components/console/helpers/processhelper.rst -------------------------------------------------------------------------------- /components/console/helpers/progressbar.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/components/console/helpers/progressbar.rst -------------------------------------------------------------------------------- /components/console/helpers/progressindicator.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/components/console/helpers/progressindicator.rst -------------------------------------------------------------------------------- /components/console/helpers/questionhelper.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/components/console/helpers/questionhelper.rst -------------------------------------------------------------------------------- /components/console/helpers/table.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/components/console/helpers/table.rst -------------------------------------------------------------------------------- /components/console/helpers/tree.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/components/console/helpers/tree.rst -------------------------------------------------------------------------------- /components/console/logger.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/components/console/logger.rst -------------------------------------------------------------------------------- /components/console/single_command_tool.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/components/console/single_command_tool.rst -------------------------------------------------------------------------------- /components/console/usage.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/components/console/usage.rst -------------------------------------------------------------------------------- /components/contracts.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/components/contracts.rst -------------------------------------------------------------------------------- /components/css_selector.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/components/css_selector.rst -------------------------------------------------------------------------------- /components/dependency_injection.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/components/dependency_injection.rst -------------------------------------------------------------------------------- /components/dependency_injection/_imports-parameters-note.rst.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/components/dependency_injection/_imports-parameters-note.rst.inc -------------------------------------------------------------------------------- /components/dependency_injection/compilation.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/components/dependency_injection/compilation.rst -------------------------------------------------------------------------------- /components/dependency_injection/workflow.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/components/dependency_injection/workflow.rst -------------------------------------------------------------------------------- /components/dom_crawler.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/components/dom_crawler.rst -------------------------------------------------------------------------------- /components/event_dispatcher.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/components/event_dispatcher.rst -------------------------------------------------------------------------------- /components/event_dispatcher/generic_event.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/components/event_dispatcher/generic_event.rst -------------------------------------------------------------------------------- /components/event_dispatcher/immutable_dispatcher.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/components/event_dispatcher/immutable_dispatcher.rst -------------------------------------------------------------------------------- /components/event_dispatcher/traceable_dispatcher.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/components/event_dispatcher/traceable_dispatcher.rst -------------------------------------------------------------------------------- /components/expression_language.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/components/expression_language.rst -------------------------------------------------------------------------------- /components/filesystem.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/components/filesystem.rst -------------------------------------------------------------------------------- /components/finder.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/components/finder.rst -------------------------------------------------------------------------------- /components/form.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/components/form.rst -------------------------------------------------------------------------------- /components/http_foundation.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/components/http_foundation.rst -------------------------------------------------------------------------------- /components/http_kernel.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/components/http_kernel.rst -------------------------------------------------------------------------------- /components/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/components/index.rst -------------------------------------------------------------------------------- /components/intl.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/components/intl.rst -------------------------------------------------------------------------------- /components/json_path.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/components/json_path.rst -------------------------------------------------------------------------------- /components/ldap.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/components/ldap.rst -------------------------------------------------------------------------------- /components/lock.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/components/lock.rst -------------------------------------------------------------------------------- /components/messenger.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/components/messenger.rst -------------------------------------------------------------------------------- /components/mime.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/components/mime.rst -------------------------------------------------------------------------------- /components/options_resolver.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/components/options_resolver.rst -------------------------------------------------------------------------------- /components/phpunit_bridge.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/components/phpunit_bridge.rst -------------------------------------------------------------------------------- /components/process.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/components/process.rst -------------------------------------------------------------------------------- /components/property_access.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/components/property_access.rst -------------------------------------------------------------------------------- /components/property_info.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/components/property_info.rst -------------------------------------------------------------------------------- /components/psr7.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/components/psr7.rst -------------------------------------------------------------------------------- /components/require_autoload.rst.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/components/require_autoload.rst.inc -------------------------------------------------------------------------------- /components/runtime.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/components/runtime.rst -------------------------------------------------------------------------------- /components/semaphore.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/components/semaphore.rst -------------------------------------------------------------------------------- /components/type_info.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/components/type_info.rst -------------------------------------------------------------------------------- /components/uid.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/components/uid.rst -------------------------------------------------------------------------------- /components/using_components.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/components/using_components.rst -------------------------------------------------------------------------------- /components/validator.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/components/validator.rst -------------------------------------------------------------------------------- /components/validator/metadata.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/components/validator/metadata.rst -------------------------------------------------------------------------------- /components/validator/resources.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/components/validator/resources.rst -------------------------------------------------------------------------------- /components/var_dumper.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/components/var_dumper.rst -------------------------------------------------------------------------------- /components/var_exporter.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/components/var_exporter.rst -------------------------------------------------------------------------------- /components/workflow.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/components/workflow.rst -------------------------------------------------------------------------------- /components/yaml.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/components/yaml.rst -------------------------------------------------------------------------------- /configuration.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/configuration.rst -------------------------------------------------------------------------------- /configuration/env_var_processors.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/configuration/env_var_processors.rst -------------------------------------------------------------------------------- /configuration/front_controllers_and_kernel.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/configuration/front_controllers_and_kernel.rst -------------------------------------------------------------------------------- /configuration/micro_kernel_trait.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/configuration/micro_kernel_trait.rst -------------------------------------------------------------------------------- /configuration/multiple_kernels.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/configuration/multiple_kernels.rst -------------------------------------------------------------------------------- /configuration/override_dir_structure.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/configuration/override_dir_structure.rst -------------------------------------------------------------------------------- /configuration/secrets.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/configuration/secrets.rst -------------------------------------------------------------------------------- /configuration/using_parameters_in_dic.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/configuration/using_parameters_in_dic.rst -------------------------------------------------------------------------------- /console.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/console.rst -------------------------------------------------------------------------------- /console/calling_commands.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/console/calling_commands.rst -------------------------------------------------------------------------------- /console/coloring.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/console/coloring.rst -------------------------------------------------------------------------------- /console/command_in_controller.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/console/command_in_controller.rst -------------------------------------------------------------------------------- /console/commands_as_services.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/console/commands_as_services.rst -------------------------------------------------------------------------------- /console/hide_commands.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/console/hide_commands.rst -------------------------------------------------------------------------------- /console/input.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/console/input.rst -------------------------------------------------------------------------------- /console/lazy_commands.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/console/lazy_commands.rst -------------------------------------------------------------------------------- /console/lockable_trait.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/console/lockable_trait.rst -------------------------------------------------------------------------------- /console/style.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/console/style.rst -------------------------------------------------------------------------------- /console/verbosity.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/console/verbosity.rst -------------------------------------------------------------------------------- /contributing/code/bc.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/contributing/code/bc.rst -------------------------------------------------------------------------------- /contributing/code/bugs.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/contributing/code/bugs.rst -------------------------------------------------------------------------------- /contributing/code/conventions.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/contributing/code/conventions.rst -------------------------------------------------------------------------------- /contributing/code/experimental.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/contributing/code/experimental.rst -------------------------------------------------------------------------------- /contributing/code/git.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/contributing/code/git.rst -------------------------------------------------------------------------------- /contributing/code/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/contributing/code/index.rst -------------------------------------------------------------------------------- /contributing/code/license.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/contributing/code/license.rst -------------------------------------------------------------------------------- /contributing/code/maintenance.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/contributing/code/maintenance.rst -------------------------------------------------------------------------------- /contributing/code/pull_requests.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/contributing/code/pull_requests.rst -------------------------------------------------------------------------------- /contributing/code/reproducer.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/contributing/code/reproducer.rst -------------------------------------------------------------------------------- /contributing/code/security.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/contributing/code/security.rst -------------------------------------------------------------------------------- /contributing/code/stack_trace.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/contributing/code/stack_trace.rst -------------------------------------------------------------------------------- /contributing/code/standards.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/contributing/code/standards.rst -------------------------------------------------------------------------------- /contributing/code/tests.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/contributing/code/tests.rst -------------------------------------------------------------------------------- /contributing/code_of_conduct/care_team.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/contributing/code_of_conduct/care_team.rst -------------------------------------------------------------------------------- /contributing/code_of_conduct/code_of_conduct.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/contributing/code_of_conduct/code_of_conduct.rst -------------------------------------------------------------------------------- /contributing/code_of_conduct/concrete_example_document.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/contributing/code_of_conduct/concrete_example_document.rst -------------------------------------------------------------------------------- /contributing/code_of_conduct/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/contributing/code_of_conduct/index.rst -------------------------------------------------------------------------------- /contributing/code_of_conduct/reporting_guidelines.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/contributing/code_of_conduct/reporting_guidelines.rst -------------------------------------------------------------------------------- /contributing/community/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/contributing/community/index.rst -------------------------------------------------------------------------------- /contributing/community/mentoring.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/contributing/community/mentoring.rst -------------------------------------------------------------------------------- /contributing/community/releases.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/contributing/community/releases.rst -------------------------------------------------------------------------------- /contributing/community/review-comments.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/contributing/community/review-comments.rst -------------------------------------------------------------------------------- /contributing/community/reviews.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/contributing/community/reviews.rst -------------------------------------------------------------------------------- /contributing/community/speaker-mentoring.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/contributing/community/speaker-mentoring.rst -------------------------------------------------------------------------------- /contributing/core_team.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/contributing/core_team.rst -------------------------------------------------------------------------------- /contributing/diversity/further_reading.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/contributing/diversity/further_reading.rst -------------------------------------------------------------------------------- /contributing/diversity/governance.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/contributing/diversity/governance.rst -------------------------------------------------------------------------------- /contributing/diversity/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/contributing/diversity/index.rst -------------------------------------------------------------------------------- /contributing/documentation/format.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/contributing/documentation/format.rst -------------------------------------------------------------------------------- /contributing/documentation/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/contributing/documentation/index.rst -------------------------------------------------------------------------------- /contributing/documentation/license.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/contributing/documentation/license.rst -------------------------------------------------------------------------------- /contributing/documentation/overview.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/contributing/documentation/overview.rst -------------------------------------------------------------------------------- /contributing/documentation/standards.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/contributing/documentation/standards.rst -------------------------------------------------------------------------------- /contributing/documentation/translations.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/contributing/documentation/translations.rst -------------------------------------------------------------------------------- /contributing/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/contributing/index.rst -------------------------------------------------------------------------------- /contributing/map.rst.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/contributing/map.rst.inc -------------------------------------------------------------------------------- /contributing/translations/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/contributing/translations/index.rst -------------------------------------------------------------------------------- /controller.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/controller.rst -------------------------------------------------------------------------------- /controller/error_pages.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/controller/error_pages.rst -------------------------------------------------------------------------------- /controller/forwarding.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/controller/forwarding.rst -------------------------------------------------------------------------------- /controller/service.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/controller/service.rst -------------------------------------------------------------------------------- /controller/upload_file.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/controller/upload_file.rst -------------------------------------------------------------------------------- /controller/value_resolver.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/controller/value_resolver.rst -------------------------------------------------------------------------------- /create_framework/dependency_injection.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/create_framework/dependency_injection.rst -------------------------------------------------------------------------------- /create_framework/event_dispatcher.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/create_framework/event_dispatcher.rst -------------------------------------------------------------------------------- /create_framework/front_controller.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/create_framework/front_controller.rst -------------------------------------------------------------------------------- /create_framework/http_foundation.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/create_framework/http_foundation.rst -------------------------------------------------------------------------------- /create_framework/http_kernel_controller_resolver.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/create_framework/http_kernel_controller_resolver.rst -------------------------------------------------------------------------------- /create_framework/http_kernel_httpkernel_class.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/create_framework/http_kernel_httpkernel_class.rst -------------------------------------------------------------------------------- /create_framework/http_kernel_httpkernelinterface.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/create_framework/http_kernel_httpkernelinterface.rst -------------------------------------------------------------------------------- /create_framework/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/create_framework/index.rst -------------------------------------------------------------------------------- /create_framework/introduction.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/create_framework/introduction.rst -------------------------------------------------------------------------------- /create_framework/map.rst.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/create_framework/map.rst.inc -------------------------------------------------------------------------------- /create_framework/routing.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/create_framework/routing.rst -------------------------------------------------------------------------------- /create_framework/separation_of_concerns.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/create_framework/separation_of_concerns.rst -------------------------------------------------------------------------------- /create_framework/templating.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/create_framework/templating.rst -------------------------------------------------------------------------------- /create_framework/unit_testing.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/create_framework/unit_testing.rst -------------------------------------------------------------------------------- /deployment.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/deployment.rst -------------------------------------------------------------------------------- /deployment/proxies.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/deployment/proxies.rst -------------------------------------------------------------------------------- /doctrine.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/doctrine.rst -------------------------------------------------------------------------------- /doctrine/associations.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/doctrine/associations.rst -------------------------------------------------------------------------------- /doctrine/custom_dql_functions.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/doctrine/custom_dql_functions.rst -------------------------------------------------------------------------------- /doctrine/dbal.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/doctrine/dbal.rst -------------------------------------------------------------------------------- /doctrine/events.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/doctrine/events.rst -------------------------------------------------------------------------------- /doctrine/multiple_entity_managers.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/doctrine/multiple_entity_managers.rst -------------------------------------------------------------------------------- /doctrine/resolve_target_entity.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/doctrine/resolve_target_entity.rst -------------------------------------------------------------------------------- /emoji.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/emoji.rst -------------------------------------------------------------------------------- /event_dispatcher.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/event_dispatcher.rst -------------------------------------------------------------------------------- /form/bootstrap4.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/form/bootstrap4.rst -------------------------------------------------------------------------------- /form/bootstrap5.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/form/bootstrap5.rst -------------------------------------------------------------------------------- /form/create_custom_field_type.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/form/create_custom_field_type.rst -------------------------------------------------------------------------------- /form/create_form_type_extension.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/form/create_form_type_extension.rst -------------------------------------------------------------------------------- /form/data_mappers.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/form/data_mappers.rst -------------------------------------------------------------------------------- /form/data_transformers.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/form/data_transformers.rst -------------------------------------------------------------------------------- /form/direct_submit.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/form/direct_submit.rst -------------------------------------------------------------------------------- /form/disabling_validation.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/form/disabling_validation.rst -------------------------------------------------------------------------------- /form/dynamic_form_modification.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/form/dynamic_form_modification.rst -------------------------------------------------------------------------------- /form/embedded.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/form/embedded.rst -------------------------------------------------------------------------------- /form/events.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/form/events.rst -------------------------------------------------------------------------------- /form/form_collections.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/form/form_collections.rst -------------------------------------------------------------------------------- /form/form_customization.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/form/form_customization.rst -------------------------------------------------------------------------------- /form/form_themes.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/form/form_themes.rst -------------------------------------------------------------------------------- /form/inherit_data_option.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/form/inherit_data_option.rst -------------------------------------------------------------------------------- /form/multiple_buttons.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/form/multiple_buttons.rst -------------------------------------------------------------------------------- /form/tailwindcss.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/form/tailwindcss.rst -------------------------------------------------------------------------------- /form/type_guesser.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/form/type_guesser.rst -------------------------------------------------------------------------------- /form/unit_testing.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/form/unit_testing.rst -------------------------------------------------------------------------------- /form/use_empty_data.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/form/use_empty_data.rst -------------------------------------------------------------------------------- /form/validation_groups.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/form/validation_groups.rst -------------------------------------------------------------------------------- /form/without_class.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/form/without_class.rst -------------------------------------------------------------------------------- /forms.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/forms.rst -------------------------------------------------------------------------------- /frontend.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/frontend.rst -------------------------------------------------------------------------------- /frontend/asset_mapper.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/frontend/asset_mapper.rst -------------------------------------------------------------------------------- /frontend/create_ux_bundle.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/frontend/create_ux_bundle.rst -------------------------------------------------------------------------------- /frontend/custom_version_strategy.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/frontend/custom_version_strategy.rst -------------------------------------------------------------------------------- /frontend/encore/advanced-config.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/frontend/encore/advanced-config.rst -------------------------------------------------------------------------------- /frontend/encore/babel.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/frontend/encore/babel.rst -------------------------------------------------------------------------------- /frontend/encore/bootstrap.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/frontend/encore/bootstrap.rst -------------------------------------------------------------------------------- /frontend/encore/cdn.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/frontend/encore/cdn.rst -------------------------------------------------------------------------------- /frontend/encore/code-splitting.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/frontend/encore/code-splitting.rst -------------------------------------------------------------------------------- /frontend/encore/copy-files.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/frontend/encore/copy-files.rst -------------------------------------------------------------------------------- /frontend/encore/css-preprocessors.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/frontend/encore/css-preprocessors.rst -------------------------------------------------------------------------------- /frontend/encore/custom-loaders-plugins.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/frontend/encore/custom-loaders-plugins.rst -------------------------------------------------------------------------------- /frontend/encore/dev-server.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/frontend/encore/dev-server.rst -------------------------------------------------------------------------------- /frontend/encore/faq.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/frontend/encore/faq.rst -------------------------------------------------------------------------------- /frontend/encore/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/frontend/encore/index.rst -------------------------------------------------------------------------------- /frontend/encore/installation.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/frontend/encore/installation.rst -------------------------------------------------------------------------------- /frontend/encore/legacy-applications.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/frontend/encore/legacy-applications.rst -------------------------------------------------------------------------------- /frontend/encore/postcss.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/frontend/encore/postcss.rst -------------------------------------------------------------------------------- /frontend/encore/reactjs.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/frontend/encore/reactjs.rst -------------------------------------------------------------------------------- /frontend/encore/simple-example.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/frontend/encore/simple-example.rst -------------------------------------------------------------------------------- /frontend/encore/sourcemaps.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/frontend/encore/sourcemaps.rst -------------------------------------------------------------------------------- /frontend/encore/split-chunks.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/frontend/encore/split-chunks.rst -------------------------------------------------------------------------------- /frontend/encore/typescript.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/frontend/encore/typescript.rst -------------------------------------------------------------------------------- /frontend/encore/url-loader.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/frontend/encore/url-loader.rst -------------------------------------------------------------------------------- /frontend/encore/versioning.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/frontend/encore/versioning.rst -------------------------------------------------------------------------------- /frontend/encore/virtual-machine.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/frontend/encore/virtual-machine.rst -------------------------------------------------------------------------------- /frontend/encore/vuejs.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/frontend/encore/vuejs.rst -------------------------------------------------------------------------------- /frontend/server-data.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/frontend/server-data.rst -------------------------------------------------------------------------------- /getting_started/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/getting_started/index.rst -------------------------------------------------------------------------------- /html_sanitizer.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/html_sanitizer.rst -------------------------------------------------------------------------------- /http_cache.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/http_cache.rst -------------------------------------------------------------------------------- /http_cache/_expiration-and-validation.rst.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/http_cache/_expiration-and-validation.rst.inc -------------------------------------------------------------------------------- /http_cache/cache_invalidation.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/http_cache/cache_invalidation.rst -------------------------------------------------------------------------------- /http_cache/cache_vary.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/http_cache/cache_vary.rst -------------------------------------------------------------------------------- /http_cache/esi.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/http_cache/esi.rst -------------------------------------------------------------------------------- /http_cache/expiration.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/http_cache/expiration.rst -------------------------------------------------------------------------------- /http_cache/ssi.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/http_cache/ssi.rst -------------------------------------------------------------------------------- /http_cache/validation.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/http_cache/validation.rst -------------------------------------------------------------------------------- /http_cache/varnish.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/http_cache/varnish.rst -------------------------------------------------------------------------------- /http_client.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/http_client.rst -------------------------------------------------------------------------------- /index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/index.rst -------------------------------------------------------------------------------- /introduction/from_flat_php_to_symfony.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/introduction/from_flat_php_to_symfony.rst -------------------------------------------------------------------------------- /introduction/http_fundamentals.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/introduction/http_fundamentals.rst -------------------------------------------------------------------------------- /lock.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/lock.rst -------------------------------------------------------------------------------- /logging.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/logging.rst -------------------------------------------------------------------------------- /logging/channels_handlers.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/logging/channels_handlers.rst -------------------------------------------------------------------------------- /logging/formatter.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/logging/formatter.rst -------------------------------------------------------------------------------- /logging/handlers.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/logging/handlers.rst -------------------------------------------------------------------------------- /logging/monolog_console.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/logging/monolog_console.rst -------------------------------------------------------------------------------- /logging/monolog_email.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/logging/monolog_email.rst -------------------------------------------------------------------------------- /logging/monolog_exclude_http_codes.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/logging/monolog_exclude_http_codes.rst -------------------------------------------------------------------------------- /logging/processors.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/logging/processors.rst -------------------------------------------------------------------------------- /mailer.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/mailer.rst -------------------------------------------------------------------------------- /mercure.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/mercure.rst -------------------------------------------------------------------------------- /messenger.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/messenger.rst -------------------------------------------------------------------------------- /messenger/custom-transport.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/messenger/custom-transport.rst -------------------------------------------------------------------------------- /migration.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/migration.rst -------------------------------------------------------------------------------- /notifier.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/notifier.rst -------------------------------------------------------------------------------- /object_mapper.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/object_mapper.rst -------------------------------------------------------------------------------- /page_creation.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/page_creation.rst -------------------------------------------------------------------------------- /performance.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/performance.rst -------------------------------------------------------------------------------- /profiler.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/profiler.rst -------------------------------------------------------------------------------- /quick_tour/flex_recipes.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/quick_tour/flex_recipes.rst -------------------------------------------------------------------------------- /quick_tour/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/quick_tour/index.rst -------------------------------------------------------------------------------- /quick_tour/the_architecture.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/quick_tour/the_architecture.rst -------------------------------------------------------------------------------- /quick_tour/the_big_picture.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/quick_tour/the_big_picture.rst -------------------------------------------------------------------------------- /rate_limiter.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/rate_limiter.rst -------------------------------------------------------------------------------- /reference/attributes.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/reference/attributes.rst -------------------------------------------------------------------------------- /reference/configuration/debug.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/reference/configuration/debug.rst -------------------------------------------------------------------------------- /reference/configuration/doctrine.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/reference/configuration/doctrine.rst -------------------------------------------------------------------------------- /reference/configuration/framework.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/reference/configuration/framework.rst -------------------------------------------------------------------------------- /reference/configuration/kernel.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/reference/configuration/kernel.rst -------------------------------------------------------------------------------- /reference/configuration/monolog.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/reference/configuration/monolog.rst -------------------------------------------------------------------------------- /reference/configuration/security.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/reference/configuration/security.rst -------------------------------------------------------------------------------- /reference/configuration/twig.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/reference/configuration/twig.rst -------------------------------------------------------------------------------- /reference/configuration/web_profiler.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/reference/configuration/web_profiler.rst -------------------------------------------------------------------------------- /reference/constraints.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/reference/constraints.rst -------------------------------------------------------------------------------- /reference/constraints/All.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/reference/constraints/All.rst -------------------------------------------------------------------------------- /reference/constraints/AtLeastOneOf.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/reference/constraints/AtLeastOneOf.rst -------------------------------------------------------------------------------- /reference/constraints/Bic.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/reference/constraints/Bic.rst -------------------------------------------------------------------------------- /reference/constraints/Blank.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/reference/constraints/Blank.rst -------------------------------------------------------------------------------- /reference/constraints/Callback.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/reference/constraints/Callback.rst -------------------------------------------------------------------------------- /reference/constraints/CardScheme.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/reference/constraints/CardScheme.rst -------------------------------------------------------------------------------- /reference/constraints/Cascade.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/reference/constraints/Cascade.rst -------------------------------------------------------------------------------- /reference/constraints/Charset.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/reference/constraints/Charset.rst -------------------------------------------------------------------------------- /reference/constraints/Choice.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/reference/constraints/Choice.rst -------------------------------------------------------------------------------- /reference/constraints/Cidr.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/reference/constraints/Cidr.rst -------------------------------------------------------------------------------- /reference/constraints/Collection.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/reference/constraints/Collection.rst -------------------------------------------------------------------------------- /reference/constraints/Compound.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/reference/constraints/Compound.rst -------------------------------------------------------------------------------- /reference/constraints/Count.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/reference/constraints/Count.rst -------------------------------------------------------------------------------- /reference/constraints/Country.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/reference/constraints/Country.rst -------------------------------------------------------------------------------- /reference/constraints/CssColor.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/reference/constraints/CssColor.rst -------------------------------------------------------------------------------- /reference/constraints/Currency.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/reference/constraints/Currency.rst -------------------------------------------------------------------------------- /reference/constraints/Date.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/reference/constraints/Date.rst -------------------------------------------------------------------------------- /reference/constraints/DateTime.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/reference/constraints/DateTime.rst -------------------------------------------------------------------------------- /reference/constraints/DisableAutoMapping.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/reference/constraints/DisableAutoMapping.rst -------------------------------------------------------------------------------- /reference/constraints/DivisibleBy.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/reference/constraints/DivisibleBy.rst -------------------------------------------------------------------------------- /reference/constraints/Email.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/reference/constraints/Email.rst -------------------------------------------------------------------------------- /reference/constraints/EnableAutoMapping.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/reference/constraints/EnableAutoMapping.rst -------------------------------------------------------------------------------- /reference/constraints/EqualTo.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/reference/constraints/EqualTo.rst -------------------------------------------------------------------------------- /reference/constraints/Expression.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/reference/constraints/Expression.rst -------------------------------------------------------------------------------- /reference/constraints/ExpressionSyntax.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/reference/constraints/ExpressionSyntax.rst -------------------------------------------------------------------------------- /reference/constraints/File.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/reference/constraints/File.rst -------------------------------------------------------------------------------- /reference/constraints/GreaterThan.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/reference/constraints/GreaterThan.rst -------------------------------------------------------------------------------- /reference/constraints/GreaterThanOrEqual.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/reference/constraints/GreaterThanOrEqual.rst -------------------------------------------------------------------------------- /reference/constraints/Hostname.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/reference/constraints/Hostname.rst -------------------------------------------------------------------------------- /reference/constraints/Iban.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/reference/constraints/Iban.rst -------------------------------------------------------------------------------- /reference/constraints/IdenticalTo.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/reference/constraints/IdenticalTo.rst -------------------------------------------------------------------------------- /reference/constraints/Image.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/reference/constraints/Image.rst -------------------------------------------------------------------------------- /reference/constraints/Ip.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/reference/constraints/Ip.rst -------------------------------------------------------------------------------- /reference/constraints/IsFalse.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/reference/constraints/IsFalse.rst -------------------------------------------------------------------------------- /reference/constraints/IsNull.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/reference/constraints/IsNull.rst -------------------------------------------------------------------------------- /reference/constraints/IsTrue.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/reference/constraints/IsTrue.rst -------------------------------------------------------------------------------- /reference/constraints/Isbn.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/reference/constraints/Isbn.rst -------------------------------------------------------------------------------- /reference/constraints/Isin.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/reference/constraints/Isin.rst -------------------------------------------------------------------------------- /reference/constraints/Issn.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/reference/constraints/Issn.rst -------------------------------------------------------------------------------- /reference/constraints/Json.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/reference/constraints/Json.rst -------------------------------------------------------------------------------- /reference/constraints/Language.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/reference/constraints/Language.rst -------------------------------------------------------------------------------- /reference/constraints/Length.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/reference/constraints/Length.rst -------------------------------------------------------------------------------- /reference/constraints/LessThan.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/reference/constraints/LessThan.rst -------------------------------------------------------------------------------- /reference/constraints/LessThanOrEqual.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/reference/constraints/LessThanOrEqual.rst -------------------------------------------------------------------------------- /reference/constraints/Locale.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/reference/constraints/Locale.rst -------------------------------------------------------------------------------- /reference/constraints/Luhn.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/reference/constraints/Luhn.rst -------------------------------------------------------------------------------- /reference/constraints/MacAddress.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/reference/constraints/MacAddress.rst -------------------------------------------------------------------------------- /reference/constraints/Negative.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/reference/constraints/Negative.rst -------------------------------------------------------------------------------- /reference/constraints/NegativeOrZero.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/reference/constraints/NegativeOrZero.rst -------------------------------------------------------------------------------- /reference/constraints/NoSuspiciousCharacters.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/reference/constraints/NoSuspiciousCharacters.rst -------------------------------------------------------------------------------- /reference/constraints/NotBlank.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/reference/constraints/NotBlank.rst -------------------------------------------------------------------------------- /reference/constraints/NotCompromisedPassword.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/reference/constraints/NotCompromisedPassword.rst -------------------------------------------------------------------------------- /reference/constraints/NotEqualTo.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/reference/constraints/NotEqualTo.rst -------------------------------------------------------------------------------- /reference/constraints/NotIdenticalTo.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/reference/constraints/NotIdenticalTo.rst -------------------------------------------------------------------------------- /reference/constraints/NotNull.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/reference/constraints/NotNull.rst -------------------------------------------------------------------------------- /reference/constraints/PasswordStrength.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/reference/constraints/PasswordStrength.rst -------------------------------------------------------------------------------- /reference/constraints/Positive.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/reference/constraints/Positive.rst -------------------------------------------------------------------------------- /reference/constraints/PositiveOrZero.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/reference/constraints/PositiveOrZero.rst -------------------------------------------------------------------------------- /reference/constraints/Range.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/reference/constraints/Range.rst -------------------------------------------------------------------------------- /reference/constraints/Regex.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/reference/constraints/Regex.rst -------------------------------------------------------------------------------- /reference/constraints/Sequentially.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/reference/constraints/Sequentially.rst -------------------------------------------------------------------------------- /reference/constraints/Time.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/reference/constraints/Time.rst -------------------------------------------------------------------------------- /reference/constraints/Timezone.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/reference/constraints/Timezone.rst -------------------------------------------------------------------------------- /reference/constraints/Traverse.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/reference/constraints/Traverse.rst -------------------------------------------------------------------------------- /reference/constraints/Twig.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/reference/constraints/Twig.rst -------------------------------------------------------------------------------- /reference/constraints/Type.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/reference/constraints/Type.rst -------------------------------------------------------------------------------- /reference/constraints/Ulid.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/reference/constraints/Ulid.rst -------------------------------------------------------------------------------- /reference/constraints/Unique.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/reference/constraints/Unique.rst -------------------------------------------------------------------------------- /reference/constraints/UniqueEntity.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/reference/constraints/UniqueEntity.rst -------------------------------------------------------------------------------- /reference/constraints/Url.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/reference/constraints/Url.rst -------------------------------------------------------------------------------- /reference/constraints/UserPassword.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/reference/constraints/UserPassword.rst -------------------------------------------------------------------------------- /reference/constraints/Uuid.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/reference/constraints/Uuid.rst -------------------------------------------------------------------------------- /reference/constraints/Valid.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/reference/constraints/Valid.rst -------------------------------------------------------------------------------- /reference/constraints/Week.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/reference/constraints/Week.rst -------------------------------------------------------------------------------- /reference/constraints/When.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/reference/constraints/When.rst -------------------------------------------------------------------------------- /reference/constraints/WordCount.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/reference/constraints/WordCount.rst -------------------------------------------------------------------------------- /reference/constraints/Yaml.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/reference/constraints/Yaml.rst -------------------------------------------------------------------------------- /reference/constraints/_comparison-propertypath-option.rst.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/reference/constraints/_comparison-propertypath-option.rst.inc -------------------------------------------------------------------------------- /reference/constraints/_comparison-value-option.rst.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/reference/constraints/_comparison-value-option.rst.inc -------------------------------------------------------------------------------- /reference/constraints/_empty-values-are-valid.rst.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/reference/constraints/_empty-values-are-valid.rst.inc -------------------------------------------------------------------------------- /reference/constraints/_groups-option.rst.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/reference/constraints/_groups-option.rst.inc -------------------------------------------------------------------------------- /reference/constraints/_normalizer-option.rst.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/reference/constraints/_normalizer-option.rst.inc -------------------------------------------------------------------------------- /reference/constraints/_null-values-are-valid.rst.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/reference/constraints/_null-values-are-valid.rst.inc -------------------------------------------------------------------------------- /reference/constraints/_parameters-mime-types-message-option.rst.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/reference/constraints/_parameters-mime-types-message-option.rst.inc -------------------------------------------------------------------------------- /reference/constraints/_payload-option.rst.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/reference/constraints/_payload-option.rst.inc -------------------------------------------------------------------------------- /reference/constraints/map.rst.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/reference/constraints/map.rst.inc -------------------------------------------------------------------------------- /reference/dic_tags.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/reference/dic_tags.rst -------------------------------------------------------------------------------- /reference/events.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/reference/events.rst -------------------------------------------------------------------------------- /reference/formats/expression_language.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/reference/formats/expression_language.rst -------------------------------------------------------------------------------- /reference/formats/message_format.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/reference/formats/message_format.rst -------------------------------------------------------------------------------- /reference/formats/xliff.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/reference/formats/xliff.rst -------------------------------------------------------------------------------- /reference/formats/yaml.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/reference/formats/yaml.rst -------------------------------------------------------------------------------- /reference/forms/types.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/reference/forms/types.rst -------------------------------------------------------------------------------- /reference/forms/types/birthday.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/reference/forms/types/birthday.rst -------------------------------------------------------------------------------- /reference/forms/types/button.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/reference/forms/types/button.rst -------------------------------------------------------------------------------- /reference/forms/types/checkbox.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/reference/forms/types/checkbox.rst -------------------------------------------------------------------------------- /reference/forms/types/choice.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/reference/forms/types/choice.rst -------------------------------------------------------------------------------- /reference/forms/types/collection.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/reference/forms/types/collection.rst -------------------------------------------------------------------------------- /reference/forms/types/color.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/reference/forms/types/color.rst -------------------------------------------------------------------------------- /reference/forms/types/country.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/reference/forms/types/country.rst -------------------------------------------------------------------------------- /reference/forms/types/currency.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/reference/forms/types/currency.rst -------------------------------------------------------------------------------- /reference/forms/types/date.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/reference/forms/types/date.rst -------------------------------------------------------------------------------- /reference/forms/types/dateinterval.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/reference/forms/types/dateinterval.rst -------------------------------------------------------------------------------- /reference/forms/types/datetime.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/reference/forms/types/datetime.rst -------------------------------------------------------------------------------- /reference/forms/types/email.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/reference/forms/types/email.rst -------------------------------------------------------------------------------- /reference/forms/types/entity.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/reference/forms/types/entity.rst -------------------------------------------------------------------------------- /reference/forms/types/enum.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/reference/forms/types/enum.rst -------------------------------------------------------------------------------- /reference/forms/types/file.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/reference/forms/types/file.rst -------------------------------------------------------------------------------- /reference/forms/types/form.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/reference/forms/types/form.rst -------------------------------------------------------------------------------- /reference/forms/types/hidden.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/reference/forms/types/hidden.rst -------------------------------------------------------------------------------- /reference/forms/types/integer.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/reference/forms/types/integer.rst -------------------------------------------------------------------------------- /reference/forms/types/language.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/reference/forms/types/language.rst -------------------------------------------------------------------------------- /reference/forms/types/locale.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/reference/forms/types/locale.rst -------------------------------------------------------------------------------- /reference/forms/types/map.rst.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/reference/forms/types/map.rst.inc -------------------------------------------------------------------------------- /reference/forms/types/money.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/reference/forms/types/money.rst -------------------------------------------------------------------------------- /reference/forms/types/number.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/reference/forms/types/number.rst -------------------------------------------------------------------------------- /reference/forms/types/options/_date_limitation.rst.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/reference/forms/types/options/_date_limitation.rst.inc -------------------------------------------------------------------------------- /reference/forms/types/options/_debug_form.rst.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/reference/forms/types/options/_debug_form.rst.inc -------------------------------------------------------------------------------- /reference/forms/types/options/_error_bubbling_body.rst.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/reference/forms/types/options/_error_bubbling_body.rst.inc -------------------------------------------------------------------------------- /reference/forms/types/options/_error_bubbling_hint.rst.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/reference/forms/types/options/_error_bubbling_hint.rst.inc -------------------------------------------------------------------------------- /reference/forms/types/options/action.rst.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/reference/forms/types/options/action.rst.inc -------------------------------------------------------------------------------- /reference/forms/types/options/attr.rst.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/reference/forms/types/options/attr.rst.inc -------------------------------------------------------------------------------- /reference/forms/types/options/attr_translation_parameters.rst.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/reference/forms/types/options/attr_translation_parameters.rst.inc -------------------------------------------------------------------------------- /reference/forms/types/options/auto_initialize.rst.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/reference/forms/types/options/auto_initialize.rst.inc -------------------------------------------------------------------------------- /reference/forms/types/options/block_name.rst.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/reference/forms/types/options/block_name.rst.inc -------------------------------------------------------------------------------- /reference/forms/types/options/block_prefix.rst.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/reference/forms/types/options/block_prefix.rst.inc -------------------------------------------------------------------------------- /reference/forms/types/options/button_disabled.rst.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/reference/forms/types/options/button_disabled.rst.inc -------------------------------------------------------------------------------- /reference/forms/types/options/button_label.rst.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/reference/forms/types/options/button_label.rst.inc -------------------------------------------------------------------------------- /reference/forms/types/options/button_translation_domain.rst.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/reference/forms/types/options/button_translation_domain.rst.inc -------------------------------------------------------------------------------- /reference/forms/types/options/by_reference.rst.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/reference/forms/types/options/by_reference.rst.inc -------------------------------------------------------------------------------- /reference/forms/types/options/checkbox_compound.rst.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/reference/forms/types/options/checkbox_compound.rst.inc -------------------------------------------------------------------------------- /reference/forms/types/options/checkbox_empty_data.rst.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/reference/forms/types/options/checkbox_empty_data.rst.inc -------------------------------------------------------------------------------- /reference/forms/types/options/choice_attr.rst.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/reference/forms/types/options/choice_attr.rst.inc -------------------------------------------------------------------------------- /reference/forms/types/options/choice_filter.rst.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/reference/forms/types/options/choice_filter.rst.inc -------------------------------------------------------------------------------- /reference/forms/types/options/choice_label.rst.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/reference/forms/types/options/choice_label.rst.inc -------------------------------------------------------------------------------- /reference/forms/types/options/choice_lazy.rst.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/reference/forms/types/options/choice_lazy.rst.inc -------------------------------------------------------------------------------- /reference/forms/types/options/choice_loader.rst.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/reference/forms/types/options/choice_loader.rst.inc -------------------------------------------------------------------------------- /reference/forms/types/options/choice_name.rst.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/reference/forms/types/options/choice_name.rst.inc -------------------------------------------------------------------------------- /reference/forms/types/options/choice_translation_domain.rst.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/reference/forms/types/options/choice_translation_domain.rst.inc -------------------------------------------------------------------------------- /reference/forms/types/options/choice_translation_domain_disabled.rst.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/reference/forms/types/options/choice_translation_domain_disabled.rst.inc -------------------------------------------------------------------------------- /reference/forms/types/options/choice_translation_domain_enabled.rst.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/reference/forms/types/options/choice_translation_domain_enabled.rst.inc -------------------------------------------------------------------------------- /reference/forms/types/options/choice_translation_locale.rst.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/reference/forms/types/options/choice_translation_locale.rst.inc -------------------------------------------------------------------------------- /reference/forms/types/options/choice_translation_parameters.rst.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/reference/forms/types/options/choice_translation_parameters.rst.inc -------------------------------------------------------------------------------- /reference/forms/types/options/choice_type_translation_domain.rst.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/reference/forms/types/options/choice_type_translation_domain.rst.inc -------------------------------------------------------------------------------- /reference/forms/types/options/choice_type_trim.rst.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/reference/forms/types/options/choice_type_trim.rst.inc -------------------------------------------------------------------------------- /reference/forms/types/options/choice_value.rst.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/reference/forms/types/options/choice_value.rst.inc -------------------------------------------------------------------------------- /reference/forms/types/options/compound.rst.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/reference/forms/types/options/compound.rst.inc -------------------------------------------------------------------------------- /reference/forms/types/options/compound_type.rst.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/reference/forms/types/options/compound_type.rst.inc -------------------------------------------------------------------------------- /reference/forms/types/options/constraints.rst.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/reference/forms/types/options/constraints.rst.inc -------------------------------------------------------------------------------- /reference/forms/types/options/data.rst.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/reference/forms/types/options/data.rst.inc -------------------------------------------------------------------------------- /reference/forms/types/options/data_class.rst.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/reference/forms/types/options/data_class.rst.inc -------------------------------------------------------------------------------- /reference/forms/types/options/data_class_date.rst.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/reference/forms/types/options/data_class_date.rst.inc -------------------------------------------------------------------------------- /reference/forms/types/options/date_format.rst.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/reference/forms/types/options/date_format.rst.inc -------------------------------------------------------------------------------- /reference/forms/types/options/date_input.rst.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/reference/forms/types/options/date_input.rst.inc -------------------------------------------------------------------------------- /reference/forms/types/options/date_input_format.rst.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/reference/forms/types/options/date_input_format.rst.inc -------------------------------------------------------------------------------- /reference/forms/types/options/date_input_format_description.rst.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/reference/forms/types/options/date_input_format_description.rst.inc -------------------------------------------------------------------------------- /reference/forms/types/options/date_widget.rst.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/reference/forms/types/options/date_widget.rst.inc -------------------------------------------------------------------------------- /reference/forms/types/options/date_widget_description.rst.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/reference/forms/types/options/date_widget_description.rst.inc -------------------------------------------------------------------------------- /reference/forms/types/options/days.rst.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/reference/forms/types/options/days.rst.inc -------------------------------------------------------------------------------- /reference/forms/types/options/disabled.rst.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/reference/forms/types/options/disabled.rst.inc -------------------------------------------------------------------------------- /reference/forms/types/options/duplicate_preferred_choices.rst.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/reference/forms/types/options/duplicate_preferred_choices.rst.inc -------------------------------------------------------------------------------- /reference/forms/types/options/empty_data_declaration.rst.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/reference/forms/types/options/empty_data_declaration.rst.inc -------------------------------------------------------------------------------- /reference/forms/types/options/empty_data_description.rst.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/reference/forms/types/options/empty_data_description.rst.inc -------------------------------------------------------------------------------- /reference/forms/types/options/error_bubbling.rst.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/reference/forms/types/options/error_bubbling.rst.inc -------------------------------------------------------------------------------- /reference/forms/types/options/error_mapping.rst.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/reference/forms/types/options/error_mapping.rst.inc -------------------------------------------------------------------------------- /reference/forms/types/options/expanded.rst.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/reference/forms/types/options/expanded.rst.inc -------------------------------------------------------------------------------- /reference/forms/types/options/extra_fields_message.rst.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/reference/forms/types/options/extra_fields_message.rst.inc -------------------------------------------------------------------------------- /reference/forms/types/options/form_attr.rst.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/reference/forms/types/options/form_attr.rst.inc -------------------------------------------------------------------------------- /reference/forms/types/options/group_by.rst.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/reference/forms/types/options/group_by.rst.inc -------------------------------------------------------------------------------- /reference/forms/types/options/grouping.rst.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/reference/forms/types/options/grouping.rst.inc -------------------------------------------------------------------------------- /reference/forms/types/options/help.rst.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/reference/forms/types/options/help.rst.inc -------------------------------------------------------------------------------- /reference/forms/types/options/help_attr.rst.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/reference/forms/types/options/help_attr.rst.inc -------------------------------------------------------------------------------- /reference/forms/types/options/help_html.rst.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/reference/forms/types/options/help_html.rst.inc -------------------------------------------------------------------------------- /reference/forms/types/options/help_translation_parameters.rst.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/reference/forms/types/options/help_translation_parameters.rst.inc -------------------------------------------------------------------------------- /reference/forms/types/options/hours.rst.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/reference/forms/types/options/hours.rst.inc -------------------------------------------------------------------------------- /reference/forms/types/options/html5.rst.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/reference/forms/types/options/html5.rst.inc -------------------------------------------------------------------------------- /reference/forms/types/options/inherit_data.rst.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/reference/forms/types/options/inherit_data.rst.inc -------------------------------------------------------------------------------- /reference/forms/types/options/invalid_message.rst.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/reference/forms/types/options/invalid_message.rst.inc -------------------------------------------------------------------------------- /reference/forms/types/options/invalid_message_parameters.rst.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/reference/forms/types/options/invalid_message_parameters.rst.inc -------------------------------------------------------------------------------- /reference/forms/types/options/label.rst.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/reference/forms/types/options/label.rst.inc -------------------------------------------------------------------------------- /reference/forms/types/options/label_attr.rst.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/reference/forms/types/options/label_attr.rst.inc -------------------------------------------------------------------------------- /reference/forms/types/options/label_format.rst.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/reference/forms/types/options/label_format.rst.inc -------------------------------------------------------------------------------- /reference/forms/types/options/label_html.rst.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/reference/forms/types/options/label_html.rst.inc -------------------------------------------------------------------------------- /reference/forms/types/options/label_translation_parameters.rst.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/reference/forms/types/options/label_translation_parameters.rst.inc -------------------------------------------------------------------------------- /reference/forms/types/options/mapped.rst.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/reference/forms/types/options/mapped.rst.inc -------------------------------------------------------------------------------- /reference/forms/types/options/method.rst.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/reference/forms/types/options/method.rst.inc -------------------------------------------------------------------------------- /reference/forms/types/options/minutes.rst.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/reference/forms/types/options/minutes.rst.inc -------------------------------------------------------------------------------- /reference/forms/types/options/model_timezone.rst.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/reference/forms/types/options/model_timezone.rst.inc -------------------------------------------------------------------------------- /reference/forms/types/options/months.rst.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/reference/forms/types/options/months.rst.inc -------------------------------------------------------------------------------- /reference/forms/types/options/multiple.rst.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/reference/forms/types/options/multiple.rst.inc -------------------------------------------------------------------------------- /reference/forms/types/options/placeholder.rst.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/reference/forms/types/options/placeholder.rst.inc -------------------------------------------------------------------------------- /reference/forms/types/options/placeholder_attr.rst.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/reference/forms/types/options/placeholder_attr.rst.inc -------------------------------------------------------------------------------- /reference/forms/types/options/post_max_size_message.rst.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/reference/forms/types/options/post_max_size_message.rst.inc -------------------------------------------------------------------------------- /reference/forms/types/options/preferred_choices.rst.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/reference/forms/types/options/preferred_choices.rst.inc -------------------------------------------------------------------------------- /reference/forms/types/options/priority.rst.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/reference/forms/types/options/priority.rst.inc -------------------------------------------------------------------------------- /reference/forms/types/options/property_path.rst.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/reference/forms/types/options/property_path.rst.inc -------------------------------------------------------------------------------- /reference/forms/types/options/required.rst.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/reference/forms/types/options/required.rst.inc -------------------------------------------------------------------------------- /reference/forms/types/options/rounding_mode.rst.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/reference/forms/types/options/rounding_mode.rst.inc -------------------------------------------------------------------------------- /reference/forms/types/options/row_attr.rst.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/reference/forms/types/options/row_attr.rst.inc -------------------------------------------------------------------------------- /reference/forms/types/options/sanitize_html.rst.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/reference/forms/types/options/sanitize_html.rst.inc -------------------------------------------------------------------------------- /reference/forms/types/options/sanitizer.rst.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/reference/forms/types/options/sanitizer.rst.inc -------------------------------------------------------------------------------- /reference/forms/types/options/seconds.rst.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/reference/forms/types/options/seconds.rst.inc -------------------------------------------------------------------------------- /reference/forms/types/options/select_how_rendered.rst.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/reference/forms/types/options/select_how_rendered.rst.inc -------------------------------------------------------------------------------- /reference/forms/types/options/translation_domain.rst.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/reference/forms/types/options/translation_domain.rst.inc -------------------------------------------------------------------------------- /reference/forms/types/options/trim.rst.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/reference/forms/types/options/trim.rst.inc -------------------------------------------------------------------------------- /reference/forms/types/options/validation_groups.rst.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/reference/forms/types/options/validation_groups.rst.inc -------------------------------------------------------------------------------- /reference/forms/types/options/value.rst.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/reference/forms/types/options/value.rst.inc -------------------------------------------------------------------------------- /reference/forms/types/options/view_timezone.rst.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/reference/forms/types/options/view_timezone.rst.inc -------------------------------------------------------------------------------- /reference/forms/types/options/weeks.rst.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/reference/forms/types/options/weeks.rst.inc -------------------------------------------------------------------------------- /reference/forms/types/options/with_minutes.rst.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/reference/forms/types/options/with_minutes.rst.inc -------------------------------------------------------------------------------- /reference/forms/types/options/with_seconds.rst.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/reference/forms/types/options/with_seconds.rst.inc -------------------------------------------------------------------------------- /reference/forms/types/options/years.rst.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/reference/forms/types/options/years.rst.inc -------------------------------------------------------------------------------- /reference/forms/types/password.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/reference/forms/types/password.rst -------------------------------------------------------------------------------- /reference/forms/types/percent.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/reference/forms/types/percent.rst -------------------------------------------------------------------------------- /reference/forms/types/radio.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/reference/forms/types/radio.rst -------------------------------------------------------------------------------- /reference/forms/types/range.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/reference/forms/types/range.rst -------------------------------------------------------------------------------- /reference/forms/types/repeated.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/reference/forms/types/repeated.rst -------------------------------------------------------------------------------- /reference/forms/types/reset.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/reference/forms/types/reset.rst -------------------------------------------------------------------------------- /reference/forms/types/search.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/reference/forms/types/search.rst -------------------------------------------------------------------------------- /reference/forms/types/submit.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/reference/forms/types/submit.rst -------------------------------------------------------------------------------- /reference/forms/types/tel.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/reference/forms/types/tel.rst -------------------------------------------------------------------------------- /reference/forms/types/text.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/reference/forms/types/text.rst -------------------------------------------------------------------------------- /reference/forms/types/textarea.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/reference/forms/types/textarea.rst -------------------------------------------------------------------------------- /reference/forms/types/time.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/reference/forms/types/time.rst -------------------------------------------------------------------------------- /reference/forms/types/timezone.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/reference/forms/types/timezone.rst -------------------------------------------------------------------------------- /reference/forms/types/ulid.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/reference/forms/types/ulid.rst -------------------------------------------------------------------------------- /reference/forms/types/url.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/reference/forms/types/url.rst -------------------------------------------------------------------------------- /reference/forms/types/uuid.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/reference/forms/types/uuid.rst -------------------------------------------------------------------------------- /reference/forms/types/variables/check_or_radio_table.rst.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/reference/forms/types/variables/check_or_radio_table.rst.inc -------------------------------------------------------------------------------- /reference/forms/types/week.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/reference/forms/types/week.rst -------------------------------------------------------------------------------- /reference/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/reference/index.rst -------------------------------------------------------------------------------- /reference/map.rst.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/reference/map.rst.inc -------------------------------------------------------------------------------- /reference/twig_reference.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/reference/twig_reference.rst -------------------------------------------------------------------------------- /routing.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/routing.rst -------------------------------------------------------------------------------- /routing/custom_route_loader.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/routing/custom_route_loader.rst -------------------------------------------------------------------------------- /routing/routing_from_database.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/routing/routing_from_database.rst -------------------------------------------------------------------------------- /scheduler.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/scheduler.rst -------------------------------------------------------------------------------- /security.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/security.rst -------------------------------------------------------------------------------- /security/access_control.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/security/access_control.rst -------------------------------------------------------------------------------- /security/access_denied_handler.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/security/access_denied_handler.rst -------------------------------------------------------------------------------- /security/access_token.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/security/access_token.rst -------------------------------------------------------------------------------- /security/csrf.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/security/csrf.rst -------------------------------------------------------------------------------- /security/custom_authenticator.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/security/custom_authenticator.rst -------------------------------------------------------------------------------- /security/entry_point.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/security/entry_point.rst -------------------------------------------------------------------------------- /security/expressions.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/security/expressions.rst -------------------------------------------------------------------------------- /security/firewall_restriction.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/security/firewall_restriction.rst -------------------------------------------------------------------------------- /security/force_https.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/security/force_https.rst -------------------------------------------------------------------------------- /security/form_login.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/security/form_login.rst -------------------------------------------------------------------------------- /security/impersonating_user.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/security/impersonating_user.rst -------------------------------------------------------------------------------- /security/ldap.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/security/ldap.rst -------------------------------------------------------------------------------- /security/login_link.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/security/login_link.rst -------------------------------------------------------------------------------- /security/passwords.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/security/passwords.rst -------------------------------------------------------------------------------- /security/remember_me.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/security/remember_me.rst -------------------------------------------------------------------------------- /security/user_checkers.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/security/user_checkers.rst -------------------------------------------------------------------------------- /security/user_providers.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/security/user_providers.rst -------------------------------------------------------------------------------- /security/voters.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/security/voters.rst -------------------------------------------------------------------------------- /serializer.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/serializer.rst -------------------------------------------------------------------------------- /serializer/custom_context_builders.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/serializer/custom_context_builders.rst -------------------------------------------------------------------------------- /serializer/custom_name_converter.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/serializer/custom_name_converter.rst -------------------------------------------------------------------------------- /serializer/custom_normalizer.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/serializer/custom_normalizer.rst -------------------------------------------------------------------------------- /serializer/encoders.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/serializer/encoders.rst -------------------------------------------------------------------------------- /serializer/streaming_json.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/serializer/streaming_json.rst -------------------------------------------------------------------------------- /service_container.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/service_container.rst -------------------------------------------------------------------------------- /service_container/alias_private.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/service_container/alias_private.rst -------------------------------------------------------------------------------- /service_container/autowiring.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/service_container/autowiring.rst -------------------------------------------------------------------------------- /service_container/calls.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/service_container/calls.rst -------------------------------------------------------------------------------- /service_container/compiler_passes.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/service_container/compiler_passes.rst -------------------------------------------------------------------------------- /service_container/configurators.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/service_container/configurators.rst -------------------------------------------------------------------------------- /service_container/debug.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/service_container/debug.rst -------------------------------------------------------------------------------- /service_container/definitions.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/service_container/definitions.rst -------------------------------------------------------------------------------- /service_container/expression_language.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/service_container/expression_language.rst -------------------------------------------------------------------------------- /service_container/factories.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/service_container/factories.rst -------------------------------------------------------------------------------- /service_container/import.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/service_container/import.rst -------------------------------------------------------------------------------- /service_container/injection_types.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/service_container/injection_types.rst -------------------------------------------------------------------------------- /service_container/lazy_services.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/service_container/lazy_services.rst -------------------------------------------------------------------------------- /service_container/optional_dependencies.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/service_container/optional_dependencies.rst -------------------------------------------------------------------------------- /service_container/parent_services.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/service_container/parent_services.rst -------------------------------------------------------------------------------- /service_container/request.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/service_container/request.rst -------------------------------------------------------------------------------- /service_container/service_closures.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/service_container/service_closures.rst -------------------------------------------------------------------------------- /service_container/service_decoration.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/service_container/service_decoration.rst -------------------------------------------------------------------------------- /service_container/service_subscribers_locators.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/service_container/service_subscribers_locators.rst -------------------------------------------------------------------------------- /service_container/shared.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/service_container/shared.rst -------------------------------------------------------------------------------- /service_container/synthetic_services.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/service_container/synthetic_services.rst -------------------------------------------------------------------------------- /service_container/tags.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/service_container/tags.rst -------------------------------------------------------------------------------- /session.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/session.rst -------------------------------------------------------------------------------- /setup.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/setup.rst -------------------------------------------------------------------------------- /setup/_update_all_packages.rst.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/setup/_update_all_packages.rst.inc -------------------------------------------------------------------------------- /setup/_update_dep_errors.rst.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/setup/_update_dep_errors.rst.inc -------------------------------------------------------------------------------- /setup/_update_recipes.rst.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/setup/_update_recipes.rst.inc -------------------------------------------------------------------------------- /setup/bundles.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/setup/bundles.rst -------------------------------------------------------------------------------- /setup/docker.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/setup/docker.rst -------------------------------------------------------------------------------- /setup/file_permissions.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/setup/file_permissions.rst -------------------------------------------------------------------------------- /setup/flex.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/setup/flex.rst -------------------------------------------------------------------------------- /setup/flex_private_recipes.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/setup/flex_private_recipes.rst -------------------------------------------------------------------------------- /setup/homestead.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/setup/homestead.rst -------------------------------------------------------------------------------- /setup/symfony_cli.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/setup/symfony_cli.rst -------------------------------------------------------------------------------- /setup/unstable_versions.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/setup/unstable_versions.rst -------------------------------------------------------------------------------- /setup/upgrade_major.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/setup/upgrade_major.rst -------------------------------------------------------------------------------- /setup/upgrade_minor.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/setup/upgrade_minor.rst -------------------------------------------------------------------------------- /setup/upgrade_patch.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/setup/upgrade_patch.rst -------------------------------------------------------------------------------- /setup/web_server_configuration.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/setup/web_server_configuration.rst -------------------------------------------------------------------------------- /string.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/string.rst -------------------------------------------------------------------------------- /templates.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/templates.rst -------------------------------------------------------------------------------- /testing.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/testing.rst -------------------------------------------------------------------------------- /testing/bootstrap.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/testing/bootstrap.rst -------------------------------------------------------------------------------- /testing/database.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/testing/database.rst -------------------------------------------------------------------------------- /testing/dom_crawler.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/testing/dom_crawler.rst -------------------------------------------------------------------------------- /testing/end_to_end.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/testing/end_to_end.rst -------------------------------------------------------------------------------- /testing/insulating_clients.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/testing/insulating_clients.rst -------------------------------------------------------------------------------- /testing/profiling.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/testing/profiling.rst -------------------------------------------------------------------------------- /translation.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/translation.rst -------------------------------------------------------------------------------- /validation.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/validation.rst -------------------------------------------------------------------------------- /validation/custom_constraint.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/validation/custom_constraint.rst -------------------------------------------------------------------------------- /validation/groups.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/validation/groups.rst -------------------------------------------------------------------------------- /validation/raw_values.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/validation/raw_values.rst -------------------------------------------------------------------------------- /validation/sequence_provider.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/validation/sequence_provider.rst -------------------------------------------------------------------------------- /validation/severity.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/validation/severity.rst -------------------------------------------------------------------------------- /validation/translations.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/validation/translations.rst -------------------------------------------------------------------------------- /web_link.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/web_link.rst -------------------------------------------------------------------------------- /webhook.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/webhook.rst -------------------------------------------------------------------------------- /workflow.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/workflow.rst -------------------------------------------------------------------------------- /workflow/dumping-workflows.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/workflow/dumping-workflows.rst -------------------------------------------------------------------------------- /workflow/workflow-and-state-machine.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-docs/HEAD/workflow/workflow-and-state-machine.rst --------------------------------------------------------------------------------