Browse Source

Merge pull request #471 from localheinz/fix/autoloading

Fix: Update autoloading information on home page
Jordi Boggiano 10 years ago
parent
commit
6d91283b12
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/Packagist/WebBundle/Resources/views/Web/index.html.twig

+ 1 - 1
src/Packagist/WebBundle/Resources/views/Web/index.html.twig

@@ -36,7 +36,7 @@ curl -s http://getcomposer.org/installer | php
 php composer.phar install
 </pre>
                 <h2>Autoload Dependencies</h2>
-                <p>If all your packages follow the <a href="https://github.com/php-fig/fig-standards/blob/master/accepted/PSR-0.md">PSR-0</a> standard, you can autoload all the dependencies by adding this to your code:</p>
+                <p>If your packages specify <a href="https://getcomposer.org/doc/01-basic-usage.md#autoloading">autoloading information</a>, you can autoload all the dependencies by adding this to your code:</p>
                 <pre>
 require 'vendor/autoload.php';
 </pre>