Upgrading Existing Applications to Symfony Flex
Using Symfony Flex is optional, even in Symfony 4, where Flex is used bydefault. However, Flex is so convenient and improves your productivity so muchthat it's strongly recommended to upgrade your existing applications to it.
Symfony Flex recommends that applications use the following directory structure,which is the same used by default in Symfony 4, but you cancustomize some directories:
- your-project/
- ├── assets/
- ├── bin/
- │ └── console
- ├── config/
- │ ├── bundles.php
- │ ├── packages/
- │ ├── routes.yaml
- │ └── services.yaml
- ├── public/
- │ └── index.php
- ├── src/
- │ ├── ...
- │ └── Kernel.php
- ├── templates/
- ├── tests/
- ├── translations/
- ├── var/
- └── vendor/
This means that installing the symfony/flex
dependency in your applicationis not enough. You must also upgrade the directory structure to the one shownabove. There's no automatic tool to make this upgrade, so you must follow thesemanual steps:
- Install Flex as a dependency of your project:
- $ composer require symfony/flex
- If the project's
composer.json
file containssymfony/symfony
dependency,it still depends on the Symfony Standard Edition, which is no longer availablein Symfony 4. First, remove this dependency:
- $ composer remove symfony/symfony
Now add the symfony/symfony
package to the conflict
section of the project'scomposer.json
file as shown in this example of the skeleton-project so thatit will not be installed again:
- {
- "require": {
- "symfony/flex": "^1.0",
- + },
- + "conflict": {
- + "symfony/symfony": "*"
- }
- }
Now you must add in composer.json
all the Symfony dependencies requiredby your project. A quick way to do that is to add all the components thatwere included in the previous symfony/symfony
dependency and later youcan remove anything you don't really need:
- $ composer require annotations asset orm-pack twig \
- logger mailer form security translation validator
- $ composer require --dev dotenv maker-bundle orm-fixtures profiler
- If the project's
composer.json
file doesn't contain thesymfony/symfony
dependency, it already defines its dependencies explicitly, as required byFlex. Reinstall all dependencies to force Flex to generate theconfiguration files inconfig/
, which is the most tedious part of the upgradeprocess:
- $ rm -rf vendor/*
- $ composer install
No matter which of the previous steps you followed. At this point, you'll havelots of new config files in
config/
. They contain the default configdefined by Symfony, so you must check your original files inapp/config/
and make the needed changes in the new files. Flex config doesn't use suffixesin config files, so the oldapp/config/config_dev.yml
goes toconfig/packages/dev/*.yaml
, etc.The most important config file is
app/config/services.yml
, which now islocated atconfig/services.yaml
. Copy the contents of thedefault services.yaml file and then add your own service configuration.Later you can revisit this file because thanks to Symfony'sautowiring feature you can removemost of the service configuration.
Note
Make sure that your previous configuration files don't have imports
declarations pointing to resources already loaded by Kernel::configureContainer()
or Kernel::configureRoutes()
methods.
Move the rest of the
app/
contents as follows (and after that, remove theapp/
directory):app/Resources/views/
->templates/
app/Resources/translations/
->translations/
app/Resources/<BundleName>/views/
->templates/bundles/<BundleName>/
- rest of
app/Resources/
files ->src/Resources/
- Move the original PHP source code from
src/AppBundle/*
, except bundlespecific files (likeAppBundle.php
andDependencyInjection/
), tosrc/
.
In addition to moving the files, update the autoload
and autoload-dev
values of the composer.json
file as shown in this example to useApp\
and App\Tests\
as the application namespaces (advanced IDEs cando this automatically).
If you used multiple bundles to organize your code, you must reorganize yourcode into src/
. For example, if you had src/UserBundle/Controller/DefaultController.php
and src/ProductBundle/Controller/DefaultController.php
, you could movethem to src/Controller/UserController.php
and src/Controller/ProductController.php
.
Move the public assets, such as images or compiled CSS/JS files, from
src/AppBundle/Resources/public/
topublic/
(e.g.public/images/
).Move the source of the assets (e.g. the SCSS files) to
assets/
and useWebpack Encore to manage and compile them.SYMFONY_DEBUG
andSYMFONY_ENV
environment variables were replaced byAPP_DEBUG
andAPP_ENV
. Copy their values to the new vars and then removethe former ones.Create the new
public/index.php
front controllercopying Symfony's index.php source and, if you made any customization inyourweb/app.php
andweb/app_dev.php
files, copy those changes intothe new file. You can now remove the oldweb/
dir.Update the
bin/console
script copying Symfony's bin/console sourceand changing anything according to your original console script.Remove
src/AppBundle/
.Move the original source code from
src/{App,…}Bundle/
tosrc/
andupdate the namespaces of every PHP file to beApp...
(advanced IDEs can dothis automatically).Remove the
bin/symfony_requirements
script and if you need a replacementfor it, use the new Symfony Requirements Checker.Update the
.gitignore
file to replace the existingvar/logs/
entrybyvar/log/
, which is the new name for the log directory.
Customizing Flex Paths
The Flex recipes make a few assumptions about your project's directory structure.Some of these assumptions can be customized by adding a key under the extra
section of your composer.json
file. For example, to tell Flex to copy anyPHP classes into src/App
instead of src
:
- {
- "...": "...",
- "extra": {
- "src-dir": "src/App"
- }
- }
The configurable paths are:
bin-dir
: defaults tobin/
config-dir
: defaults toconfig/
src-dir
defaults tosrc/
var-dir
defaults tovar/
public-dir
defaults topublic/
If you customize these paths, some files copied from a recipe still may containreferences to the original path. In other words: you may need to update some thingsmanually after a recipe is installed.