From a8a3daf35d5855cf9c468097c8b67ce0ed3cefb1 Mon Sep 17 00:00:00 2001 From: Chris Date: Fri, 16 Sep 2016 22:01:48 -0400 Subject: [PATCH] Create composer.json Adding composer.json to bibtexbrowser package for compatibility with Composer. --- composer.json | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 composer.json diff --git a/composer.json b/composer.json new file mode 100644 index 0000000..bb4d293 --- /dev/null +++ b/composer.json @@ -0,0 +1,21 @@ +{ + "name": "monperrus/bibtexbrowser", + "description": "bibtexbrowser is a PHP script that creates publication lists from Bibtex files. bibtexbrowser is stable, mature and easy to install.", + "homepage": "http://www.monperrus.net/martin/bibtexbrowser/", + "license": "GPL-2.0+", + "authors": [ + { + "name": "Martin Monperrus", + "homepage": "http://www.monperrus.net", + "role": "Original Developer" + } + ], + "require": { + "php": "4.x - 5.x" + }, + "autoload": { + "psr-4": { + "Bibtexbrowser\\": "/" + } + } +}