From 910a0f1c467e41557c6c88b10399129ba242778e Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Mon, 15 May 2017 15:29:26 +0200 Subject: sync with Fedora --- composer.json | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 composer.json (limited to 'composer.json') diff --git a/composer.json b/composer.json new file mode 100644 index 0000000..f9a77d3 --- /dev/null +++ b/composer.json @@ -0,0 +1,31 @@ +{ + "name": "klaussilveira/gitter", + "description": "Gitter allows you to interact in an object oriented manner with Git repositories.", + "keywords": ["git", "vcs"], + "homepage": "https://github.com/klaussilveira/gitter", + "type": "library", + "license": "BSD-2-Clause", + "authors": [ + { + "name": "Klaus Silveira", + "email": "klaussilveira@php.net", + "homepage": "http://www.klaussilveira.com/", + "role": "Developer" + } + ], + "require": { + "php": ">=5.3.0", + "symfony/process": ">=2.2" + }, + "require-dev": { + "symfony/filesystem": ">=2.2", + "phpunit/phpunit": ">=3.7.1", + "mockery/mockery": "0.9.1" + }, + "minimum-stability": "stable", + "autoload": { + "psr-0": { + "Gitter": "lib/" + } + } +} -- cgit