1
0
mirror of synced 2025-03-21 15:33:51 +03:00

Fixed pear command for install, "boostrap" => "bootstrap"

This commit is contained in:
Tomas Paladin Volf 2011-11-08 14:44:48 +01:00
parent 59b4641d29
commit cfe5424cf9

View File

@ -68,7 +68,7 @@ on your CLI:
::
$ pear channel-discover pear.doctrine-project.org
$ pear install doctrine/DoctrineORM --all-deps
$ pear install --alldeps doctrine/DoctrineORM
This should install the packages DoctrineCommon, DoctrineDBAL, DoctrineORM,
SymfonyConsole and SymfonyYAML.
@ -779,7 +779,7 @@ We also have to create a general bootstrap file for our application:
.. code-block:: php
<?php
// boostrap.php
// bootstrap.php
require_once "entities/User.php";
require_once "entities/Product.php";