Skip to content

Commit 94c744c

Browse files
committed
Fixing two out-dated instances of vendors.sh
1 parent 1b97179 commit 94c744c

File tree

2 files changed

+8
-14
lines changed

2 files changed

+8
-14
lines changed

contributing/code/tests.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,18 +31,18 @@ The test suite need the following third-party libraries:
3131
* Swiftmailer
3232
* Twig
3333

34-
To install them all, run the `vendors.sh` script:
34+
To install them all, run the `vendors.php` script:
3535

3636
.. code-block:: bash
3737
38-
$ sh vendors.sh
38+
$ php vendors.php
3939
4040
.. note::
4141

4242
Note that the script takes some time to finish.
4343

4444
After installation, you can update the vendors anytime by running the
45-
`vendors.sh` script again.
45+
`vendors.php` script again.
4646

4747
Running
4848
-------

cookbook/doctrine/doctrine_fixtures.rst

Lines changed: 5 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -16,25 +16,19 @@ Setup and Configuration
1616
If you don't have the `Doctrine Data Fixtures`_ library configured with Symfony2
1717
yet, follow these steps to do so.
1818

19-
Add the following to ``bin/vendors.sh``, right after the "Monolog" entry:
19+
If you're using the Standard Distribution, add the following to your ``bin/deps``
20+
file:
2021

2122
.. code-block:: text
2223
23-
# Doctrine Fixtures
24-
install_git doctrine-fixtures https://github.com/doctrine/data-fixtures.git
25-
26-
And also, the following after the "WebConfiguratorBundle" entry:
27-
28-
.. code-block:: text
29-
30-
# DoctrineFixturesBundle
31-
install_git DoctrineFixturesBundle https://github.com/symfony/DoctrineFixturesBundle.git
24+
/ doctrine-fixtures http://github.com/doctrine/data-fixtures.git
25+
/bundles/Symfony/Bundle DoctrineFixturesBundle http://github.com/symfony/DoctrineFixturesBundle.git
3226
3327
Update the vendor libraries:
3428

3529
.. code-block:: bash
3630
37-
$ bin/vendors.sh
31+
$ php bin/vendors.php
3832
3933
If everything worked, the ``doctrine-fixtures`` library can now be found
4034
at ``vendor/doctrine-fixtures``.

0 commit comments

Comments
 (0)