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

symfony/symfony v2.8.49

The Symfony PHP framework
Package summary
Share
23
issues
23
high severity
vulnerability
22
meta
1
2
licenses
24
MIT
1
BSD-3-Clause
Package created
29 Sep 2011
Version published
6 Dec 2018
Maintainers
1
Total deps
25
Direct deps
14
License
MIT

Issues

23

23 high severity issues

high
via: symfony/symfony@v2.8.49
via: symfony/symfony@v2.8.49
via: symfony/symfony@v2.8.49
via: symfony/symfony@v2.8.49
via: symfony/symfony@v2.8.49
via: symfony/symfony@v2.8.49
via: symfony/symfony@v2.8.49
via: symfony/symfony@v2.8.49
via: symfony/symfony@v2.8.49
via: symfony/symfony@v2.8.49
via: symfony/symfony@v2.8.49
via: symfony/symfony@v2.8.49
via: symfony/symfony@v2.8.49
via: symfony/symfony@v2.8.49
via: symfony/symfony@v2.8.49
via: symfony/symfony@v2.8.49
via: symfony/symfony@v2.8.49
via: symfony/symfony@v2.8.49
via: doctrine/common@2.13.3
Collapse
Expand

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
24 Packages, Including:
doctrine/annotations@1.14.3
doctrine/cache@1.13.0
doctrine/collections@1.8.0
doctrine/common@2.13.3
doctrine/deprecations@1.1.3
doctrine/event-manager@1.2.0
doctrine/inflector@1.4.4
doctrine/lexer@1.2.3
doctrine/persistence@1.3.8
doctrine/reflection@1.2.4
psr/cache@3.0.0
psr/log@1.1.4
symfony/polyfill-apcu@v1.29.0
symfony/polyfill-ctype@v1.29.0
symfony/polyfill-intl-icu@v1.29.0
symfony/polyfill-mbstring@v1.29.0
symfony/polyfill-php54@v1.20.0
symfony/polyfill-php55@v1.20.0
symfony/polyfill-php56@v1.20.0
symfony/polyfill-php70@v1.20.0
symfony/polyfill-php72@v1.29.0
symfony/polyfill-util@v1.29.0
symfony/security-acl@v3.0.4
symfony/symfony@v2.8.49

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@v2.16.0
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

14
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
doctrine/annotations1.14.3-MIT
prod dev
doctrine/common2.13.3-MIT
prod dev
1
psr/log1.1.410.7 kBMIT
prod dev
symfony/polyfill-apcuv1.29.0-MIT
prod
symfony/polyfill-ctypev1.29.0-MIT
prod
symfony/polyfill-intl-icuv1.29.044.76 kBMIT
prod
symfony/polyfill-mbstringv1.29.0-MIT
prod
symfony/polyfill-php54v1.20.01.99 kBMIT
prod
symfony/polyfill-php55v1.20.02.03 kBMIT
prod
symfony/polyfill-php56v1.20.01.99 kBMIT
prod
symfony/polyfill-php70v1.20.02.28 kBMIT
prod
symfony/polyfill-utilv1.29.08.01 kBMIT
prod
symfony/security-aclv3.0.4-MIT
prod
twig/twigv2.16.0275.82 kBBSD-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].