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 10, 2024 via composer

symfony/symfony v7.0.6

The Symfony PHP framework
Package summary
Share
0
issues
2
licenses
21
MIT
1
BSD-3-Clause
Package created
29 Sep 2011
Version published
3 Apr 2024
Maintainers
1
Total deps
22
Direct deps
19
License
MIT

Issues

0
This package has no issues

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
21 Packages, Including:
composer/semver@3.4.0
doctrine/event-manager@2.0.0
doctrine/persistence@3.3.2
psr/cache@3.0.0
psr/clock@1.0.0
psr/container@2.0.2
psr/event-dispatcher@1.0.0
psr/link@2.0.1
psr/log@3.0.0
symfony/contracts@v3.5.0
symfony/polyfill-ctype@v1.29.0
symfony/polyfill-intl-grapheme@v1.29.0
symfony/polyfill-intl-icu@v1.29.0
symfony/polyfill-intl-idn@v1.29.0
symfony/polyfill-intl-normalizer@v1.29.0
symfony/polyfill-mbstring@v1.29.0
symfony/polyfill-php72@v1.29.0
symfony/polyfill-php80@v1.29.0
symfony/polyfill-php83@v1.29.0
symfony/polyfill-uuid@v1.29.0
symfony/symfony@v7.0.6

BSD 3-Clause "New" or "Revised" License

Permissive
OSI Approved
This is a human-readable summary of (and not a substitute for) the license. Disclaimer.
Can
commercial-use
modify
distribute
place-warranty
Cannot
use-trademark
hold-liable
Must
include-copyright
include-license
1 Packages, Including:
twig/twig@v3.9.3
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

19
All Dependencies CSV
β“˜ This is a list of symfony/symfony 's direct dependencies. Data on all dependencies, including transitive ones, is available via CSV download.
NameVersionSizeLicenseTypeVulnerabilities
composer/semver3.4.028.21 kBMIT
prod
doctrine/event-manager2.0.05.95 kBMIT
prod
doctrine/persistence3.3.2-MIT
prod
psr/cache3.0.06.01 kBMIT
prod
psr/clock1.0.02.95 kBMIT
prod
psr/container2.0.23.55 kBMIT
prod dev
psr/event-dispatcher1.0.04.17 kBMIT
prod
psr/link2.0.15.66 kBMIT
prod
psr/log3.0.06.77 kBMIT
prod
symfony/contractsv3.5.0-MIT
prod
symfony/polyfill-ctypev1.29.0-MIT
prod
symfony/polyfill-intl-graphemev1.29.0-MIT
prod
symfony/polyfill-intl-icuv1.29.044.76 kBMIT
prod
symfony/polyfill-intl-idnv1.29.059.29 kBMIT
prod dev
symfony/polyfill-intl-normalizerv1.29.0-MIT
prod dev
symfony/polyfill-mbstringv1.29.0-MIT
prod
symfony/polyfill-php83v1.29.0-MIT
prod
symfony/polyfill-uuidv1.29.07.07 kBMIT
prod
twig/twigv3.9.3-BSD-3-Clause
prod

Visualizations

Frequently Asked Questions

What does symfony/symfony do?

Symfony/Symfony is a powerful PHP framework used for creating web and console applications. This set of reusable PHP components offers flexibility and efficiency, making it a popular choice among developers and businesses. It's trusted by a vast array of web applications around the world and contributes to many prominent PHP projects.

How do you use symfony/symfony?

After obtaining Symfony/Symfony through Composer, which manages package dependencies, you can build applications with robust PHP structures. Using semantic versioning, Symfony ensures smooth and predictable releases. For example, the code below shows a basic route definition using Symfony:

use Symfony\Component\Routing\Annotation\Route;

class HomeController extends Controller
{
    /**
     * @Route("/home", name="homepage")
     */
    public function index(): Response
    {
        return $this->render('home/index.html.twig');
    }
}

In this example, when users navigate to the "/home" URL, Symfony routes to the index method in the HomeController class, which renders a template file.

Where are the symfony/symfony docs?

The official documentation for Symfony/Symfony provides detailed insights into getting started with and mastering Symfony. It introduces a Symfony Demo application, offers guides and tutorials, and shares best practices. For developers who are new to Symfony, the Getting Started guide is a helpful resource. Meanwhile, the Components docs and Best Practices offer extended resources for advanced developers. All documentation can be found on Symfony's website at [https://symfony.com/docs][8].