mirror of
https://github.com/doctrine/orm.git
synced 2026-03-24 06:52:09 +01:00
This reverts commit 12c721f528.
This feature introduces several issues:
- It adds alias.*, which is a first, for instance you cannot do
SELECT u.* FROM User u
- If introduces coupling between property order in mapping fields and
the result.
Doctrine ORM Documentation
The documentation is written in ReStructured Text.
How to Generate:
In the docs/ folder, run
composer update
Then compile the documentation with:
make html
This will generate the documentation into the build subdirectory.
To browse the documentation, you need to run a webserver:
cd build/html
php -S localhost:8000
Now the documentation is available at http://localhost:8000.