Home
Docs
GitHub
Pricing
Blog
Log In

Run Sandworm Audit for your App

Get started
Generated on Jun 1, 2024 via composer

symfony/framework-bundle v2.8.43

Symfony FrameworkBundle
Package summary
Share
5
issues
5
high severity
vulnerability
3
meta
2
1
license
29
MIT
Package created
18 Nov 2011
Version published
7 Jun 2018
Maintainers
1
Total deps
29
Direct deps
18
License
MIT

Issues

5

5 high severity issues

high
via: symfony/framework-bundle@v2.8.43
via: symfony/framework-bundle@v2.8.43
via: symfony/http-kernel@v2.8.52
via: symfony/class-loader@v3.0.9
via: symfony/http-kernel@v2.8.52
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
29 Packages, Including:
doctrine/annotations@1.14.3
doctrine/cache@1.13.0
doctrine/deprecations@1.1.3
doctrine/lexer@2.1.1
psr/cache@3.0.0
psr/log@1.1.4
symfony/asset@v3.0.9
symfony/class-loader@v3.0.9
symfony/config@v2.8.52
symfony/debug@v2.8.52
symfony/dependency-injection@v2.8.52
symfony/event-dispatcher@v3.0.9
symfony/filesystem@v3.0.9
symfony/finder@v3.0.9
symfony/framework-bundle@v2.8.43
symfony/http-foundation@v2.8.52
symfony/http-kernel@v2.8.52
symfony/polyfill-ctype@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/routing@v2.8.52
symfony/security-core@v3.4.49
symfony/security-csrf@v3.4.47
symfony/stopwatch@v3.0.9
symfony/templating@v3.0.9
symfony/translation@v2.8.52
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

18
All Dependencies CSV
β“˜ This is a list of symfony/framework-bundle 's direct dependencies. Data on all dependencies, including transitive ones, is available via CSV download.
NameVersionSizeLicenseTypeVulnerabilities
doctrine/annotations1.14.3-MIT
prod dev
doctrine/cache1.13.0-MIT
prod dev
symfony/assetv3.0.9-MIT
prod
symfony/class-loaderv3.0.9-MIT
prod dev
1
symfony/configv2.8.52-MIT
prod dev
symfony/dependency-injectionv2.8.52-MIT
prod dev
symfony/event-dispatcherv3.0.927.37 kBMIT
prod dev
symfony/filesystemv3.0.9-MIT
prod
symfony/finderv3.0.9-MIT
prod dev
symfony/http-foundationv2.8.52-MIT
prod dev
symfony/http-kernelv2.8.52-MIT
prod dev
2
symfony/polyfill-mbstringv1.29.0-MIT
prod dev
symfony/routingv2.8.52-MIT
prod dev
symfony/security-corev3.4.49-MIT
prod
symfony/security-csrfv3.4.47-MIT
prod
symfony/stopwatchv3.0.9-MIT
prod dev
symfony/templatingv3.0.9-MIT
prod dev
symfony/translationv2.8.52133.42 kBMIT
prod

Visualizations

Frequently Asked Questions

What does symfony/framework-bundle do?

The Symfony FrameworkBundle serves as the core integration point between the Symfony components and the full-stack Symfony framework. It's a vital element in any Symfony project as it strings together the various moving parts of the Symfony ecosystem, enabling the cohesive operation of your application. The comprehensive bundle comes with support from a dedicated team that values the Open Source community and is keen to aid new contributors.

How do you use symfony/framework-bundle?

Implementing the Symfony FrameworkBundle into your PHP project involves several steps. These are based upon my experience with Symfony and are not directly detailed in the provided readme file.

Firstly, install the bundle via Composer with the following command executed in the terminal:

composer require symfony/framework-bundle

Post-installation, you will need to register the bundle in your application's bundle registration array in the app/AppKernel.php file:

class AppKernel extends Kernel
{
    public function registerBundles()
    {
        $bundles = [
            // ...
            new Symfony\Bundle\FrameworkBundle\FrameworkBundle(),
        ];
    }
}

As you develop your Symfony application further, you will need to add additional functionality which isn't directly provided by FrameworkBundle but can be added on via other supporting bundles and libraries.

Where are the symfony/framework-bundle docs?

Comprehensive documentation, instructions and guidelines pertaining to the Symfony FrameworkBundle are available on the main Symfony repository and the Symfony website. The primary resource for individuals keen on contributing can be found here. To report issues or send pull requests, head to the main Symfony repository. These resources are ideal for those keen on gaining sophisticated insights into utilizing the Symfony FrameworkBundle productively within their projects.