From 04605e4f90da8ac37119789734dc81b36f9efa1a Mon Sep 17 00:00:00 2001 From: Rob Bast Date: Mon, 25 Jul 2016 09:00:12 +0200 Subject: [PATCH 1/2] update ccoc to v1.4 --- .github/CONTRIBUTING.md | 2 +- README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/CONTRIBUTING.md b/.github/CONTRIBUTING.md index 6c3be2943..ec1e3bc22 100644 --- a/.github/CONTRIBUTING.md +++ b/.github/CONTRIBUTING.md @@ -2,7 +2,7 @@ Contributing to Composer ======================== Please note that this project is released with a -[Contributor Code of Conduct](http://contributor-covenant.org/version/1/2/0/). +[Contributor Code of Conduct](http://contributor-covenant.org/version/1/4/). By participating in this project you agree to abide by its terms. Reporting Issues diff --git a/README.md b/README.md index 1d011132f..637b9b688 100644 --- a/README.md +++ b/README.md @@ -50,7 +50,7 @@ For support, Stack Overflow also offers a good collection of [Composer related questions](https://stackoverflow.com/questions/tagged/composer-php). Please note that this project is released with a -[Contributor Code of Conduct](http://contributor-covenant.org/version/1/2/0/). +[Contributor Code of Conduct](http://contributor-covenant.org/version/1/4/). By participating in this project and its community you agree to abide by those terms. Requirements From a480e53234e2b1c31ed5fbee1938417abca6e567 Mon Sep 17 00:00:00 2001 From: Rob Bast Date: Mon, 25 Jul 2016 09:01:02 +0200 Subject: [PATCH 2/2] simplify the readme, defer to documentation --- README.md | 31 +++++-------------------------- 1 file changed, 5 insertions(+), 26 deletions(-) diff --git a/README.md b/README.md index 637b9b688..72308c2dd 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@ Composer - Dependency Management for PHP ======================================== -Composer helps you declare, manage and install dependencies of PHP projects, ensuring you have the right stack everywhere. +Composer helps you declare, manage and install dependencies of PHP projects. See [https://getcomposer.org/](https://getcomposer.org/) for more information and documentation. @@ -12,33 +12,12 @@ See [https://getcomposer.org/](https://getcomposer.org/) for more information an Installation / Usage -------------------- -1. Download and install Composer by following the [official instructions](https://getcomposer.org/download/). -2. Create a composer.json defining your dependencies. Note that this example is -a short version for applications that are not meant to be published as packages -themselves. To create libraries/packages please read the -[documentation](https://getcomposer.org/doc/02-libraries.md). +Download and install Composer by following the [official instructions](https://getcomposer.org/download/). - ``` json - { - "require": { - "monolog/monolog": ">=1.0.0" - } - } - ``` +Packages +-------- -3. Run Composer: `php composer.phar install` -4. Browse for more packages on [Packagist](https://packagist.org). - -Global installation of Composer (manual) ----------------------------------------- - -Follow instructions [in the documentation](https://getcomposer.org/doc/00-intro.md#globally) - -Updating Composer ------------------ - -Running `php composer.phar self-update` or equivalent will update a phar -install to the latest version. +Find packages on [Packagist](https://packagist.org). Community ---------