From cdcd3418129fdf2513a2126bff1c2b38973eb9f5 Mon Sep 17 00:00:00 2001 From: Antonio Ospite Date: Fri, 4 Nov 2016 13:18:08 +0100 Subject: [PATCH] Add a composer.json file --- composer.json | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 composer.json diff --git a/composer.json b/composer.json new file mode 100644 index 0000000..abc1538 --- /dev/null +++ b/composer.json @@ -0,0 +1,29 @@ +{ + "name": "ao2/tweeper", + "type": "library", + "description": "Tweeper is a web scraper to convert popular social media sites to RSS (e.g. Twitter.com, Instagram.com).", + "keywords": ["Twitter", "Instagram", "Facebook", "RSS", "scraper"], + "homepage": "https://git.ao2.it/tweeper.git", + "license": "GPL-3.0+", + "authors": [ + { + "name": "Antonio Ospite", + "email": "ao2@ao2.it", + "homepage": "https://ao2.it", + "role": "Developer" + } + ], + "require": { + "php": ">=5.3.0", + "ext-curl": "*", + "ext-dom": "*", + "ext-json": "*", + "ext-xsl": "*", + "symfony/serializer": "2.7.*", + "symfony/property-access": "2.7.*" + }, + "autoload": { + "psr-4": { "Tweeper\\": "src/" } + }, + "bin": ["tweeper"] +} -- 2.1.4