diff --git a/_includes/code-style-guide.md b/_includes/code-style-guide.md index 3b0c76e..0f40ed9 100644 --- a/_includes/code-style-guide.md +++ b/_includes/code-style-guide.md @@ -1,6 +1,6 @@ # Code Style Guide -The PHP community is large and diverse, composed of innumerable libraries, frameworks, and components. It is common for PHP developers to choose several of these and combine them into a single project. Is is important that PHP code adhere (as close as possible) to a common code style to make it easy for developers to mix and match various libraries for their projects. +The PHP community is large and diverse, composed of innumerable libraries, frameworks, and components. It is common for PHP developers to choose several of these and combine them into a single project. It is important that PHP code adhere (as close as possible) to a common code style to make it easy for developers to mix and match various libraries for their projects. The [Framework Interop Group][1] (a.k.a. PHP Standards Group) has proposed and approved a code style standard — [PSR-1][2] and [PSR-2][3]. Don't let the funny names confuse you. These two standards are merely a "shared set of rules and expectations about how to format PHP code." That's all. diff --git a/_includes/dependency-management.md b/_includes/dependency-management.md index a6c9b26..9a3b1c1 100644 --- a/_includes/dependency-management.md +++ b/_includes/dependency-management.md @@ -14,7 +14,7 @@ You can install Composer locally (in your current working directory) or globally curl -s http://getcomposer.org/installer | php -This will download `composer.phar` (a PHP binary archive). You can run this with `php` to manage your project dependencies. +This will download `composer.phar` (a PHP binary archive). You can run this with `php` to manage your project dependencies. Please Note: If you pipe downloaded code directly into an interpreter, please read the code online first to confirm it is safe. ### How to Define and Install Dependencies