Skip to content

Commit 55ed24e

Browse files
committed
Fixing PSR-0 link to point to the proper github url
1 parent 8af542f commit 55ed24e

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

en/extending-lithium/third-party-libraries.wiki

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Lithium applications are made up of collections of _libraries_. A library is any
44

55
## Basics
66
7-
Libraries are managed by the `lithium\core\Libraries` class, which handles auto-loading, service location, and introspecting available classes. When loading classes, Lithium assumes a [PSR-0 compatible](http://groups.google.com/group/php-standards/web/psr-0-final-proposal) class mapping structure. For more information, see the [documentation for the `Libraries` class](http://lithify.me/docs/lithium/core/Libraries).
7+
Libraries are managed by the `lithium\core\Libraries` class, which handles auto-loading, service location, and introspecting available classes. When loading classes, Lithium assumes a [PSR-0 compatible](https://github.com/php-fig/fig-standards/blob/master/accepted/PSR-0.md) class mapping structure. For more information, see the [documentation for the `Libraries` class](http://lithify.me/docs/lithium/core/Libraries).
88

99
The default Lithium distribution ships with two `libraries` directories: one located at the root of the distribution, and one located in the `app` folder (or any application you generate with the console tooling). Libraries can be installed into either of these directories, and both are used interchangeably throughout this guide. The global `libraries` directory is intended for libraries which are shared across multiple applications, whereas the local directory is intended for application-specific ones, and will override the global directory in the event of a conflict.
1010

jp/02_lithium_basics/01_new_in_php_5.3.wiki

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ class PostsController extends \lithium\action\Controller {
2323

2424
Pretty straightforward. Using namespaces keeps your application's classes separate from the Lithium core and third-party plugins, allowing for commonly used class names (File, Folder, etc.) to be used in both places.
2525

26-
Lithium classes also follow the [PHP Standards Working Group namespace standard](http://groups.google.com/group/php-standards/web/psr-0-final-proposal) in order allow for easy autoloading of class file, and cross-library interoperability. This keeps your class files clean from messy include statements.
26+
Lithium classes also follow the [PHP Standards Working Group namespace standard](https://github.com/php-fig/fig-standards/blob/master/accepted/PSR-0.md) in order allow for easy autoloading of class file, and cross-library interoperability. This keeps your class files clean from messy include statements.
2727

2828
## Anonymous Functions, Lambdas & Closures
2929

0 commit comments

Comments
 (0)