Home
Docs
GitHub
Pricing
Blog
Log In

Run Sandworm Audit for your App

Get started
Generated on May 18, 2024 via composer

symfony/framework-bundle v7.0.3

Provides a tight integration between Symfony components and the Symfony full-stack framework
Package summary
Share
0
issues
1
license
26
MIT
Package created
18 Nov 2011
Version published
29 Jan 2024
Maintainers
1
Total deps
26
Direct deps
13
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
26 Packages, Including:
psr/cache@3.0.0
psr/container@2.0.2
psr/event-dispatcher@1.0.0
psr/log@3.0.0
symfony/cache@v7.0.7
symfony/cache-contracts@v3.5.0
symfony/config@v7.0.7
symfony/dependency-injection@v7.0.7
symfony/deprecation-contracts@v3.5.0
symfony/error-handler@v7.0.7
symfony/event-dispatcher@v7.0.7
symfony/event-dispatcher-contracts@v3.5.0
symfony/filesystem@v7.0.7
symfony/finder@v7.0.7
symfony/framework-bundle@v7.0.3
symfony/http-foundation@v7.0.7
symfony/http-kernel@v7.0.7
symfony/polyfill-ctype@v1.29.0
symfony/polyfill-mbstring@v1.29.0
symfony/polyfill-php80@v1.29.0
symfony/polyfill-php83@v1.29.0
symfony/process@v7.0.7
symfony/routing@v7.0.7
symfony/service-contracts@v3.5.0
symfony/var-dumper@v7.0.7
symfony/var-exporter@v7.0.7
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

13
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
symfony/cachev7.0.7-MIT
prod dev
symfony/configv7.0.7-MIT
prod dev
symfony/dependency-injectionv7.0.7-MIT
prod dev
symfony/deprecation-contractsv3.5.0-MIT
prod dev
symfony/error-handlerv7.0.7-MIT
prod dev
symfony/event-dispatcherv7.0.7-MIT
prod dev
symfony/filesystemv7.0.7-MIT
prod dev
symfony/finderv7.0.7-MIT
prod dev
symfony/http-foundationv7.0.7-MIT
prod dev
symfony/http-kernelv7.0.7-MIT
prod dev
symfony/polyfill-mbstringv1.29.0-MIT
prod dev
symfony/processv7.0.7-MIT
prod dev
symfony/routingv7.0.7-MIT
prod dev

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.