-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathcomposer.json
More file actions
27 lines (27 loc) · 766 Bytes
/
composer.json
File metadata and controls
27 lines (27 loc) · 766 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
{
"name": "bissolli/twitter-php-scraper",
"description": "Twitter PHP Scraper. Get account information, tweets, likes, re-tweets and comments.",
"keywords": [ "twitter", "profile", "tweets", "scraper", "laravel" ],
"type": "library",
"homepage": "https://github.com/bissolli/twitter-php-scraper",
"license": "MIT",
"authors": [
{
"name": "Gustavo Bissolli",
"email": "gustavo.bissolli@gmail.com"
}
],
"require": {
"php": ">=7.1.0",
"nesbot/carbon": "~1.32",
"paquettg/php-html-parser": "^2.0"
},
"require-dev": {
"phpunit/phpunit": "~5.5"
},
"autoload": {
"psr-4": {
"Bissolli\\TwitterScraper\\": "src/"
}
}
}