Home
Docs
GitHub
Pricing
Blog
Log In

Run Sandworm Audit for your App

Get started
Hold on, we're currently generating a fresh version of this report
Generated on May 2, 2024 via composer

symfony/form v2.8.40

Symfony Form Component
Package summary
Share
2
issues
2
moderate severity
vulnerability
2
1
license
8
MIT
Package created
16 Oct 2011
Version published
21 May 2018
Maintainers
1
Total deps
8
Direct deps
6
License
MIT

Licenses

MIT License

Permissive
OSI Approved
This is a human-readable summary of (and not a substitute for) the license. Disclaimer.
Can
commercial-use
modify
distribute
sublicense
private-use
Cannot
hold-liable
Must
include-copyright
include-license
8 Packages, Including:
symfony/event-dispatcher@v3.0.9
symfony/form@v2.8.40
symfony/intl@v3.2.14
symfony/options-resolver@v2.8.52
symfony/polyfill-ctype@v1.29.0
symfony/polyfill-intl-icu@v1.29.0
symfony/polyfill-mbstring@v1.29.0
symfony/property-access@v3.0.9
Disclaimer

This deed highlights only some of the key features and terms of the actual license. It is not a license and has no legal value. You should carefully review all of the terms and conditions of the actual license before using the licensed material.

Sandworm is not a law firm and does not provide legal services. Distributing, displaying, or linking to this deed or the license that it summarizes does not create a lawyer-client or any other relationship.

Direct Dependencies

6
All Dependencies CSV
β“˜ This is a list of symfony/form 's direct dependencies. Data on all dependencies, including transitive ones, is available via CSV download.
NameVersionSizeLicenseTypeVulnerabilities
symfony/event-dispatcherv3.0.927.37 kBMIT
prod
symfony/intlv3.2.14-MIT
prod
symfony/options-resolverv2.8.52-MIT
prod
symfony/polyfill-ctypev1.29.0-MIT
prod
symfony/polyfill-mbstringv1.29.0-MIT
prod
symfony/property-accessv3.0.9-MIT
prod

Visualizations

Frequently Asked Questions

What does symfony/form do?

Symfony/Form is a powerful component provided by Symfony PHP framework. It is designed to expedite the creation, processing, and reuse of HTML forms, thus relieving developers of the hassle that comes with form management. The core value of Symfony/Form resides in its ability to efficiently manage form data binding, input validation, and more.

How do you use symfony/form?

To use the Symfony/Form component, first ensure that you have installed the Composer package manager. Then you can add the package to your project with the following command:

composer require symfony/form

Once installed, you can start using Symfony/Form in your PHP code like so:

use Symfony\Component\Form\Forms;

$formFactory = Forms::createFormFactory();
$form = $formFactory->createBuilder()
    ->add('name')
    ->add('email')
    ->getForm();

In this example, createFormFactory() is used to create a form factory and then a form builder is created using the createBuilder() function. Finally, fields are added to the form using the add() function.

Where are the symfony/form docs?

For comprehensive information about Symfony/Form, the official documentation is the best resource. It provides a detailed guide on how to effectively use the component in your projects. You can access the Symfony/Form documentation at https://symfony.com/doc/current/components/form.html. The documentation is user-friendly and packed with practical examples to get you started in no time. Plus, it's constantly updated to reflect changes in the component and best practices for its use.