From 7622ef60416f9afe7336eb60e966e388541f6dae Mon Sep 17 00:00:00 2001 From: Kyle Spraggs Date: Thu, 17 May 2012 10:55:45 -0500 Subject: [PATCH] Added vendor/.gitignore to ignore composer install files. Removed the composer.phar download line from README as this file is now shipped directly. --- README.md | 1 - vendor/.gitignore | 4 ++++ 2 files changed, 4 insertions(+), 1 deletion(-) create mode 100644 vendor/.gitignore diff --git a/README.md b/README.md index 5ac885c..35c3a87 100644 --- a/README.md +++ b/README.md @@ -16,7 +16,6 @@ and use composer to install dependencies: cd my/project/dir git clone git://github.com/zendframework/ZendSkeletonApplication.git cd ZendSkeletonApplication - curl -s http://getcomposer.org/installer | php (windows: download http://getcomposer.org/installer and execute with PHP) php composer.phar install Afterwards, set up a virtual host to point to the public/ directory of the diff --git a/vendor/.gitignore b/vendor/.gitignore new file mode 100644 index 0000000..b44e2de --- /dev/null +++ b/vendor/.gitignore @@ -0,0 +1,4 @@ +.composer +composer +autoload.php +zendframework -- 1.7.10.4