From 844f4e4c0a3910b13436cc504dbc53d5d3119434 Mon Sep 17 00:00:00 2001 From: Evan Purkhiser Date: Sat, 26 Apr 2014 19:12:16 -0400 Subject: [PATCH] Add composer support --- composer.json | 38 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 38 insertions(+) create mode 100644 composer.json diff --git a/composer.json b/composer.json new file mode 100644 index 0000000..3fbce14 --- /dev/null +++ b/composer.json @@ -0,0 +1,38 @@ +{ + "name": "kohana-minion/tasks-migrations", + "description": "Migration tasks for the kohana-minion cli framework", + "homepage": "https://github.com/kohana-minion/tasks-migrations", + "license": "BSD-3-Clause", + "keywords": ["kohana", "framework", "database", "migrations", "tasks"], + "authors": [ + { + "name": "Lorenzo Pisani", + "email": "zeelot3k@gmail.com", + "role": "developer" + }, + { + "name": "Matt Button", + "email": "matthew@sigswitch.com", + "role": "developer" + }, + { + "name": "Contributors", + "homepage": "https://github.com/kohana-minion/tasks-migrations/graphs/contributors", + "role": "contributor" + } + ], + "support": { + "issues": "https://github.com/kohana-minion/tasks-migrations/issues", + "source": "https://github.com/kohana-minion/tasks-migrations" + }, + "require": { + "kohana/core": ">=3.3", + "kohana/minion": ">=3.3", + "php": ">=5.2.4" + }, + "extra": { + "branch-alias": { + "dev-3.3/develop": "3.3.x-dev" + } + } +}