From 83d8e018dcaf595ac829b6adc8cf246bc10e9510 Mon Sep 17 00:00:00 2001 From: Bruno Moreira De Barros Date: Sun, 3 Jan 2016 22:08:21 +0000 Subject: [PATCH] Adds composer.json for easy 'require' into existing projects. --- .gitattributes | 3 ++- composer.json | 26 ++++++++++++++++++++++++++ 2 files changed, 28 insertions(+), 1 deletion(-) create mode 100644 composer.json diff --git a/.gitattributes b/.gitattributes index 8c2ded2..3ecdb1a 100644 --- a/.gitattributes +++ b/.gitattributes @@ -1,3 +1,4 @@ # Removes useless files from release ZIPs. .gitattributes export-ignore -tools export-ignore \ No newline at end of file +tools export-ignore +composer.json export-ignore \ No newline at end of file diff --git a/composer.json b/composer.json new file mode 100644 index 0000000..a4a8b3a --- /dev/null +++ b/composer.json @@ -0,0 +1,26 @@ +{ + "name": "brunodebarros/git-deploy-php", + "description": "git-deploy-php is a simple php-based tool that deploys your Git repositories to FTP/SFTP servers, and keeps them updated automatically.", + "keywords": [ + "git", + "deploy", + "ftp", + "sftp", + "php" + ], + "license": "MIT", + "type": "library", + "homepage": "http://brunodebarros.github.io/git-deploy-php/", + "support": { + "issues": "https://github.com/BrunoDeBarros/git-deploy-php/issues" + }, + "authors": { + "name": "Bruno Moreira De Barros", + "email": "bruno@terraduo.com", + "homepage": "https://terraduo.com", + "role": "Developer" + }, + "bin": [ + "git-deploy" + ] +} \ No newline at end of file