Symfony Flex: Paving the Path to a Faster, Better Symfony
Symfony Flex: Modern Symfony project management tool
Symfony Flex is not the next version of Symfony, but a modern alternative to Symfony Installer, which is a Composer plugin that modifies the behavior of require
and update
commands. Symfony can perform additional tasks before and after the Composer task execution when installing or updating dependencies. This article will explore Symfony Flex and its relationship with Symfony 4 upgrades.
Core points:
- Flex is not a new version: It is an enhancement tool, not a replacement for the Symfony framework. It simplifies the creation and configuration process of Symfony projects.
-
Compatible with Symfony 4 upgrade: Flex compatible with Symfony 4 improvements, such as: PHP 7 requirements, optional directory structure (a more concise directory tree),
web
directory replaced withpublic
directory, The temporary file is located in the/var
directory under the root directory of the project, the source code is located in the/src
directory, the configuration file is located in the/config
directory, and the template is located in the/templates
directory. - Symfony certified packages (Recipes): Flex has its own set of Symfony certified packages, called Recipes. These official packages can be found in the Flex configuration. By recommending specific packages, Symfony becomes more "opinionated" (independent) and aims to regulate how Symfony applications are built.
- Simplify Bundle management: Flex automatically activates Bundle and sets basic layout views and configuration files. It also supports unofficial Bundles and third-party tools, but these require manual registration.
Still under development:
Symfony Flex and Symfony 4 are still under development (as of November 2017). Some of the features mentioned in this article may have been changed. In particular, the function of using Makefile and make tools to build projects when Symfony/Console is not available is not stable at present.
The difference from the past:
The main difference is Flex's compatibility with Symfony 4 update:
- PHP 7 requirements
- Optional Directory: Project does not need to include all directories.
-
public
Catalog Substitutionweb
Catalog:Align with other mainstream frameworks. -
Temporary files are located in the
/var
directory:/var/cache
subdirectory is used for long-term cache. -
Source code is located in the
/src
directory: no longer uses the/app
directory. - Configuration file is located in the
/config
directory: - Template is located in
/templates
Catalog: -
Recipes: Flex uses Recipes to manage Symfony certified packages. Enable community-contributed Recipes via
composer config extra.symfony.allow-contrib true
. - Bundle Fragments: Flex automatically manages Bundle activation and removal.
- Environment variable alternative configuration file parameters: Similar to Laravel.
Quick Start:
Create projects using the Symfony Skeleton App:
composer create-project symfony/skeleton flexy
files in the /public
directory. The environment type is determined by the environment variables and the configuration is read from the index.php
directory. /config
Add Bundle:
composer req template
directory and /templates
file. config/packages/twig.yaml
Large Bundle:
For example, install EasyAdmin Bundle:
composer req admin
Unofficial Bundle:
Recipes that require community contributions to be enabled first:
composer config extra.symfony.allow-contrib true
composer req ramsey/uuid-doctrine
Third-party tools:
Third-party tools require manual registration and removal.
Summary:
Symfony Flex is a modern way of installing and managing Symfony applications, and is a key step towards Symfony 4.
Symfony Flex FAQ:
- What is the main purpose of Symfony Flex? Symfony Flex is a modern Symfony project management tool that simplifies the creation and management of Symfony applications.
- How is the difference between Symfony Flex and Symfony frameworks? The Symfony framework is a complete web framework, and Symfony Flex is an administrative tool.
-
How to install Symfony Flex? The new project is installed by default, and the old project is installed by using
composer require symfony/flex
. - What is Symfony Flex Recipes? Recipes are automated instructions for installing and configuring Symfony Bundle.
-
How to manage Bundle with Symfony Flex? Install with
composer require
,composer remove
Remove. - What Symfony versions are supported by Symfony Flex? Symfony 3.3 and above.
- How to contribute code to Symfony Flex? Create Recipes or contribute code to GitHub.
- What are the benefits of using Symfony Flex? Simplify and speed up the construction process of Symfony applications and encourage best practices.
- How does Symfony Flex handle environment variables? Use environment variables to manage application configuration.
- Can you use Symfony Flex without Recipes? Yes, but Recipes offers a lot of convenience.
Please note that the format of the picture remains the same.
The above is the detailed content of Symfony Flex: Paving the Path to a Faster, Better Symfony. For more information, please follow other related articles on the PHP Chinese website!

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

Video Face Swap
Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

Alipay PHP...

JWT is an open standard based on JSON, used to securely transmit information between parties, mainly for identity authentication and information exchange. 1. JWT consists of three parts: Header, Payload and Signature. 2. The working principle of JWT includes three steps: generating JWT, verifying JWT and parsing Payload. 3. When using JWT for authentication in PHP, JWT can be generated and verified, and user role and permission information can be included in advanced usage. 4. Common errors include signature verification failure, token expiration, and payload oversized. Debugging skills include using debugging tools and logging. 5. Performance optimization and best practices include using appropriate signature algorithms, setting validity periods reasonably,

Session hijacking can be achieved through the following steps: 1. Obtain the session ID, 2. Use the session ID, 3. Keep the session active. The methods to prevent session hijacking in PHP include: 1. Use the session_regenerate_id() function to regenerate the session ID, 2. Store session data through the database, 3. Ensure that all session data is transmitted through HTTPS.

How to debug CLI mode in PHPStorm? When developing with PHPStorm, sometimes we need to debug PHP in command line interface (CLI) mode...

The application of SOLID principle in PHP development includes: 1. Single responsibility principle (SRP): Each class is responsible for only one function. 2. Open and close principle (OCP): Changes are achieved through extension rather than modification. 3. Lisch's Substitution Principle (LSP): Subclasses can replace base classes without affecting program accuracy. 4. Interface isolation principle (ISP): Use fine-grained interfaces to avoid dependencies and unused methods. 5. Dependency inversion principle (DIP): High and low-level modules rely on abstraction and are implemented through dependency injection.

How to automatically set the permissions of unixsocket after the system restarts. Every time the system restarts, we need to execute the following command to modify the permissions of unixsocket: sudo...

Static binding (static::) implements late static binding (LSB) in PHP, allowing calling classes to be referenced in static contexts rather than defining classes. 1) The parsing process is performed at runtime, 2) Look up the call class in the inheritance relationship, 3) It may bring performance overhead.

Sending JSON data using PHP's cURL library In PHP development, it is often necessary to interact with external APIs. One of the common ways is to use cURL library to send POST�...
