PHP Package: symfony/framework-bundle

Symfony Framework Bundle provides essential components for building sophisticated web applications efficiently.

Current Version: 7.3.0
Last Updated: 2025-05-29
PHP Requirement: >=8.2
Dependencies:
symfony/http-kernel
symfony/routing
symfony/dependency-injection
⚠️ To ensure full functionality, the above dependencies might be required.

Package Description

The Symfony Framework Bundle is a comprehensive set of tools and libraries that streamline the development of web applications. It offers a wide range of features, including routing, forms, security, and caching, making it an ideal choice for developers looking to create robust and scalable projects in PHP.

📦 Show all available classes🔗 View on GitHub

Download Latest Version: 7.3.0

Download Download v7.3.0

Previous Versions

Code Integration Example

Make sure to include the correct namespace and class paths for proper usage.

<?php
// Example from PHPlibraries.com
require_once 'libs/symfony/framework-bundle/7.3.0/loader.php';
require_once 'libs/symfony/http-kernel/7.3.0/loader.php';
require_once 'libs/symfony/routing/7.3.0/loader.php';
require_once 'libs/symfony/dependency-injection/7.3.0/loader.php';

use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;
use Symfony\Bundle\FrameworkBundle\Routing\Router;
use Symfony\Bundle\FrameworkBundle\DependencyInjection\Container;

$obj = new AbstractController();
echo '✅ Test OK: ' . get_class($obj);
?>

We aim to make using PHP packages easier without Composer. If something doesn't work, let us know — we'll fix it promptly.

Community Discussion

Ask questions, share tips, or report issues below.