1
0
mirror of synced 2025-03-21 23:43:53 +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 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, This should install the packages DoctrineCommon, DoctrineDBAL, DoctrineORM,
SymfonyConsole and SymfonyYAML. SymfonyConsole and SymfonyYAML.
@ -779,7 +779,7 @@ We also have to create a general bootstrap file for our application:
.. code-block:: php .. code-block:: php
<?php <?php
// boostrap.php // bootstrap.php
require_once "entities/User.php"; require_once "entities/User.php";
require_once "entities/Product.php"; require_once "entities/Product.php";