Skip to content

Commit

Permalink
Merge pull request #172 from acoulton/chore-syntax-fix
Browse files Browse the repository at this point in the history
chore: Fix syntax in custom psr-4 autoloading example
  • Loading branch information
acoulton authored Nov 8, 2024
2 parents 5e7d11b + 82f1243 commit a079f91
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions user_guide/configuration.rst
Original file line number Diff line number Diff line change
Expand Up @@ -223,16 +223,16 @@ You can also use ``composer.json`` to autoload, which will also allow for ``PSR-

.. code-block:: json
// composer.json
"autoload-dev": {
{
"autoload-dev": {
"psr-4": {
"My\\Application\\Namespace\\Bootstrap\\": "app/features/bootstrap"
"My\\Application\\Namespace\\Bootstrap\\": "app/features/bootstrap"
}
}
}
If you add this to your ``composer.json`` file, then you won't need to specify autoloading in
your ``behat.yml` file:
your ``behat.yml`` file:

.. code-block:: yaml
Expand Down

0 comments on commit a079f91

Please sign in to comment.