forked from pgrimaud/instagram-user-feed
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
57 lines (57 loc) · 1.36 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
{
"name": "pgrimaud/instagram-user-feed",
"type": "library",
"description": "This is a scraper to easily fetch any feed and interact with Instagram (like, follow, etc.) without OAuth for PHP.",
"keywords": [
"instagram",
"api",
"php",
"feed",
"social",
"sdk"
],
"homepage": "https://github.com/pgrimaud/instagram-user-feed",
"license": "MIT",
"authors": [
{
"name": "Pierre Grimaud",
"email": "grimaud.pierre@gmail.com"
},
{
"name": "Charles Salvan",
"email": "charles.salvan@hotmail.fr"
},
{
"name": "Tim Bond",
"email": "cookieguru@gmail.com"
}
],
"autoload": {
"psr-4": {
"Instagram\\": "src/Instagram/"
}
},
"autoload-dev": {
"psr-4": {
"Instagram\\Tests\\": "tests/"
}
},
"require": {
"php": ">=8.2",
"ext-curl": "*",
"ext-json": "*",
"symfony/cache": "^6.0|^7.0",
"guzzlehttp/guzzle": "^7.0"
},
"require-dev": {
"phpunit/phpunit": "^9.5",
"symfony/var-dumper": "^6.0|^7.0",
"phpstan/phpstan": "^1.10",
"friendsofphp/php-cs-fixer": "^3.45"
},
"scripts": {
"tests": "vendor/bin/phpunit tests --whitelist src --coverage-clover ./build/logs/clover.xml",
"phpstan": "vendor/bin/phpstan analyze src examples tests --level max",
"cs-fix": "vendor/bin/php-cs-fixer fix src --rules=@PSR12"
}
}