-
Notifications
You must be signed in to change notification settings - Fork 800
/
composer.json
43 lines (43 loc) · 950 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
41
42
43
{
"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": ">=7.2",
"ext-curl": "*",
"ext-json": "*",
"psr/simple-cache": ">=1.0",
"psr/http-client": "~1.0",
"guzzlehttp/psr7": "^1.7"
},
"require-dev": {
"phpunit/phpunit": "^7.0",
"phpfastcache/phpfastcache": "^7.1",
"guzzlehttp/guzzle": "^7.2"
},
"autoload": {
"psr-4": {
"InstagramScraper\\": "src/InstagramScraper/"
}
},
"autoload-dev": {
"psr-4": {
"InstagramScraper\\Tests\\": "tests/"
}
},
"support": {
"email": "[email protected]"
}
}