Skip to content
This repository has been archived by the owner on Jun 23, 2024. It is now read-only.

Commit

Permalink
Note on unnecessary installation step on symfony 5 (#59)
Browse files Browse the repository at this point in the history
maybe also not needed on symfony 4 (?).
  • Loading branch information
SebSept authored Feb 2, 2021
1 parent 3d11487 commit c3d3807
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,8 @@ You can use [Composer](https://getcomposer.org/) to install the bundle to your p
composer require --dev theofidry/psysh-bundle
```

Then, enable the bundle by updating your `app/AppKernel.php` file to enable the bundle:
Then, enable the bundle by updating your `app/AppKernel.php` file to enable the bundle:
(not needed on symfony 5, bundle is automaticaly registred in `config/bundles.php`)
```php
<?php
// app/AppKernel.php
Expand Down

2 comments on commit c3d3807

@dvthjkr
Copy link

@dvthjkr dvthjkr commented on c3d3807 Feb 2, 2021

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

agree it should be mentionned

@oradwell
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

it's not symfony 4 / 5 really. if you're not using flex (e.g. if you upgraded from 3) you'll still need to add it to your AppKernel

Please sign in to comment.