-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathcomposer.json
122 lines (122 loc) · 3.49 KB
/
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
{
"name": "nsmle/igramapi",
"type": "project",
"description": "An unofficial Instagram RESTful API. easy to fetch any feed and interact with Instagram (like, follow, etc.) with JWT implementation.",
"keywords": [
"instagram",
"instagram-feed",
"instagram-api",
"instagram-scraper",
"instagram-crawler",
"instagram-client",
"instagram-photos",
"instagram-stories",
"instagram-bot",
"instagram-post",
"instagram-posts",
"instagram-downloader",
"instagram-private",
"instagram-private-api",
"instagram-story-downloader",
"instagram-private-downloader",
"rest-api",
"jwt",
"php",
"laravel"
],
"homepage": "https://github.com/nsmle/igramapi",
"authors": [
{
"name": "Fiki Pratama",
"email": "fikiproductionofficial@gmail.com"
}
],
"license": "MIT",
"repositories": [
{
"type": "package",
"package": {
"name": "pgrimaud/instagram-user-feed",
"version": "master",
"source": {
"url": "https://github.com/nsmle/instagram-user-feed.git",
"type": "git",
"reference": "master"
},
"autoload": {
"psr-4": {
"Instagram\\": "src/Instagram/"
}
},
"require": {
"php": ">=7.2.5",
"ext-curl": "*",
"ext-json": "*",
"symfony/cache": "^3.4|^4.3|^5.0|^6.0",
"guzzlehttp/guzzle": "^6.0|^7.0"
}
}
}
],
"require": {
"php": "^8.0.2",
"firebase/php-jwt": "^6.3",
"guzzlehttp/guzzle": "^7.2",
"laravel/framework": "^9.19",
"laravel/sanctum": "^2.14.1",
"laravel/tinker": "^2.7",
"symfony/yaml": "^6.2",
"pgrimaud/instagram-user-feed": "master"
},
"require-dev": {
"fakerphp/faker": "^1.9.1",
"laravel/pint": "^1.0",
"laravel/sail": "^1.0.1",
"mockery/mockery": "^1.4.4",
"nunomaduro/collision": "^6.1",
"phpunit/phpunit": "^9.5.10",
"spatie/laravel-ignition": "^1.0"
},
"autoload": {
"psr-4": {
"App\\": "app/",
"Database\\Factories\\": "database/factories/",
"Database\\Seeders\\": "database/seeders/"
},
"files": [
"app/Helpers.php"
]
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"scripts": {
"post-autoload-dump": [
"Illuminate\\Foundation\\ComposerScripts::postAutoloadDump",
"@php artisan package:discover --ansi"
],
"post-update-cmd": [
"@php artisan vendor:publish --tag=laravel-assets --ansi --force"
],
"post-root-package-install": [
"@php -r \"file_exists('.env') || copy('.env.example', '.env');\""
],
"post-create-project-cmd": [
"@php artisan key:generate --ansi"
]
},
"extra": {
"laravel": {
"dont-discover": []
}
},
"config": {
"optimize-autoloader": true,
"preferred-install": "dist",
"sort-packages": true
},
"minimum-stability": "dev",
"prefer-stable": true
}