src/Tweeper.php: enable cookie handling to fix scraping twitter.com
[tweeper.git] / composer.json
1 {
2     "name": "ao2/tweeper",
3     "type": "library",
4     "description": "Tweeper is a web scraper to convert popular social media sites to RSS (e.g. Twitter.com, Instagram.com).",
5     "keywords": ["Twitter", "Instagram", "Facebook", "RSS", "scraper"],
6     "homepage": "https://git.ao2.it/tweeper.git",
7     "license": "GPL-3.0+",
8     "authors": [
9         {
10             "name": "Antonio Ospite",
11             "email": "ao2@ao2.it",
12             "homepage": "https://ao2.it",
13             "role": "Developer"
14         }
15     ],
16     "require": {
17         "php": ">=5.3.0",
18         "ext-curl": "*",
19         "ext-dom": "*",
20         "ext-json": "*",
21         "ext-xsl": "*",
22         "symfony/serializer": ">=2.7.0",
23         "symfony/property-access": ">=2.7.0"
24     },
25     "autoload": {
26         "psr-4": { "Tweeper\\": "src/" }
27     },
28     "bin": ["tweeper"]
29 }