From: Antonio Ospite Date: Fri, 4 Nov 2016 12:18:08 +0000 (+0100) Subject: Add a composer.json file X-Git-Tag: v1.0.0~10 X-Git-Url: https://git.ao2.it/tweeper.git/commitdiff_plain/cdcd3418129fdf2513a2126bff1c2b38973eb9f5 Add a composer.json file --- 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"] +}