-
-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathcomposer.json
55 lines (55 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
{
"name": "j0k3r/php-imgur-api-client",
"replace": {
"adyg/php-imgur-api-client": "self.version"
},
"type": "library",
"description": "Imgur API v3 client",
"homepage": "https://github.com/j0k3r/php-imgur-api-client",
"keywords": [
"imgur",
"api"
],
"license": "MIT",
"authors": [
{
"name": "Jeremy Benoist",
"email": "jeremy.benoist@gmail.com",
"homepage": "http://www.j0k3r.net"
},
{
"name": "Adrian Ghiuta",
"email": "adrian.ghiuta@gmail.com",
"homepage": "http://adyg.github.com"
}
],
"autoload": {
"psr-4": {
"Imgur\\": "lib/Imgur/"
}
},
"autoload-dev": {
"psr-4": {
"Imgur\\tests\\": "tests/"
}
},
"require": {
"php": ">=7.4",
"ext-curl": "*",
"guzzlehttp/guzzle": "^7.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.0",
"phpstan/extension-installer": "^1.1",
"phpstan/phpstan": "^1.2",
"phpstan/phpstan-deprecation-rules": "^1.0",
"phpstan/phpstan-phpunit": "^1.0",
"symfony/phpunit-bridge": "^6.0"
},
"config": {
"sort-packages": true,
"allow-plugins": {
"phpstan/extension-installer": true
}
}
}