Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Use rst syntax #5688

Merged
merged 2 commits into from
Sep 23, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions docs/en/reference/introduction.rst
Original file line number Diff line number Diff line change
Expand Up @@ -20,19 +20,19 @@ The following database vendors are currently supported:
- SQLite

The Doctrine DBAL can be used independently of the
[Doctrine Object-Relational Mapper (ORM)](https://www.doctrine-project.org/projects/orm.html).
In order to use the DBAL all you need is
the class loader provided by [Composer](https://getcomposer.org/), to be able to autoload the classes:
`Doctrine Object-Relational Mapper (ORM) <https://www.doctrine-project.org/projects/orm.html>`_.
In order to use the DBAL all you need is the class loader provided by
`Composer <https://getcomposer.org/>`_, to be able to autoload the
classes:

.. code-block:: php

<?php

require_once 'vendor/autoload.php';

Now you are able to load classes that are in the
``/path/to/doctrine`` directory like
``/path/to/doctrine/Doctrine/DBAL/DriverManager.php`` which we will
use later in this documentation to configure our first Doctrine
DBAL connection.