From c19ba2a4d6442002bbffc20fc4b527f406435d8f Mon Sep 17 00:00:00 2001 From: David Chancogne Date: Mon, 14 Apr 2014 10:41:25 -0400 Subject: [PATCH] Update dependencies Add CakePHP to the dependencies for testing. Small tweaks for composed.json and add composer install script --- .gitignore | 5 +++++ composer.json | 28 ++++++++++++++++++++++++---- install-composer.sh | 3 +++ 3 files changed, 32 insertions(+), 4 deletions(-) create mode 100644 .gitignore create mode 100755 install-composer.sh diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..d7b0aff --- /dev/null +++ b/.gitignore @@ -0,0 +1,5 @@ +*.sublime-workspace +composer.lock +composer.phar +bin +vendor \ No newline at end of file diff --git a/composer.json b/composer.json index e0ec1ef..3e6189a 100644 --- a/composer.json +++ b/composer.json @@ -1,7 +1,27 @@ { "name": "traackr/sql-migration", - "type": "cakephp-plugin", - "require": { - "composer/installers": "~1.0" - } + "description": "SQL migration plugin for CakePHP", + "type": "cakephp-plugin", + "keywrods": [ + "cakephp", + "sql", + "sql migration", + "sql upgrade", + "data migration", + "data upgrade", + "traackr" + ], + "homepage": "https://traackr.com/", + "authors": [ + { + "name": "David Chancogne", + "email": "dchancogne@traackr.com", + "homepage": "http://twitter.com/dchancogne" + } + ], + "require-dev": { + "php": ">=5.3", + "composer/installers": "~1.0", + "cakephp/cakephp": "2.4.*" + } } \ No newline at end of file diff --git a/install-composer.sh b/install-composer.sh new file mode 100755 index 0000000..9080497 --- /dev/null +++ b/install-composer.sh @@ -0,0 +1,3 @@ +#!/bin/sh + +curl -sS https://getcomposer.org/installer | php \ No newline at end of file