From 8cde4da553b239ce25f1d8a9ae534a412067e24f Mon Sep 17 00:00:00 2001 From: Michele Locati Date: Thu, 15 Mar 2018 18:39:21 +0100 Subject: Add composer.json --- .gitignore | 1 + composer.json | 31 +++++++++++++++++++++++++++++++ 2 files changed, 32 insertions(+) create mode 100644 composer.json diff --git a/.gitignore b/.gitignore index 001e30f..87c71d5 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,2 @@ /test/temp/ +/vendor/ diff --git a/composer.json b/composer.json new file mode 100644 index 0000000..7500918 --- /dev/null +++ b/composer.json @@ -0,0 +1,31 @@ +{ + "name": "mlocati/incremental-git-filter-branch", + "description": "Shell script to call git filter-branch in an incremental way", + "type": "library", + "keywords": [ + "git", + "filter-branch", + "incremental", + "progressive", + "shell", + "bash", + "posix" + ], + "homepage": "https://github.com/mlocati/incremental-git-filter-branch", + "license": "MIT", + "authors": [ + { + "name": "Michele Locati", + "email": "michele@locati.it", + "homepage": "https://mlocati.github.io", + "role": "author" + } + ], + "support": { + "issues": "https://github.com/mlocati/incremental-git-filter-branch/issues", + "source": "https://github.com/mlocati/incremental-git-filter-branch" + }, + "bin": [ + "bin/incremental-git-filterbranch" + ] +} -- cgit v1.2.3