forked from postaddictme/instagram-php-scraper
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
40 lines (40 loc) · 862 Bytes
/
composer.json
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
28
29
30
31
32
33
34
35
36
37
38
39
40
{
"name": "raiym/instagram-php-scraper",
"description": "Instagram PHP Scraper. Get account information, photos and videos without any authorization",
"keywords": [
"instagram",
"scraper"
],
"type": "library",
"homepage": "https://github.com/raiym/instagram-php-scraper",
"license": "MIT",
"authors": [
{
"name": "raiym",
"email": "[email protected]"
}
],
"require": {
"php": ">=5.4.0",
"mashape/unirest-php": "3.0.*",
"phpFastCache/phpFastCache": "5.0.*",
"ext-curl": "*",
"ext-json": "*"
},
"require-dev": {
"phpunit/phpunit": "5.5.*"
},
"autoload": {
"psr-4": {
"InstagramScraper\\": "src/InstagramScraper/"
}
},
"autoload-dev": {
"psr-4": {
"InstagramScraper\\Tests\\": "tests/"
}
},
"support": {
"email": "[email protected]"
}
}