-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
62 lines (62 loc) · 1.94 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
{
"name": "arokettu/monsterid",
"description": "MonsterID is a method to generate a unique monster image based upon a certain identifier (IP address, email address, whatever). It can be used to automatically provide personal avatar images in blog comments or other community services.",
"keywords": ["avatar", "monsterid"],
"homepage": "https://sandfox.dev/php/monsterid.html",
"license": "MIT",
"authors": [
{
"name": "Andreas Gohr",
"homepage": "https://www.splitbrain.org/",
"role": "developer"
},
{
"name": "Anton Smirnov",
"email": "[email protected]",
"homepage": "https://sandfox.me/",
"role": "maintainer"
}
],
"support": {
"issues": "https://gitlab.com/sandfox/monsterid/-/issues",
"source": "https://gitlab.com/sandfox/monsterid",
"docs": "https://monsterid.readthedocs.io/"
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"php-http/discovery": false
},
"sort-packages": true
},
"autoload": {
"psr-4": {
"Arokettu\\MonsterID\\": "src/classes"
},
"files": [
"src/functions.php"
]
},
"autoload-dev": {
"psr-4": {
"Arokettu\\MonsterID\\Tests\\": "tests"
}
},
"require": {
"php": "^8.0",
"ext-gd": "*",
"arokettu/is-resource": "^1.0",
"arokettu/random-polyfill": "^1.0.1",
"php-http/discovery": "^1.19",
"psr/http-factory": "^1.0"
},
"require-dev": {
"arokettu/random-polyfill": ">= 1.0.1 < 1.99",
"httpsoft/http-message": "^1.1",
"phpunit/phpunit": ">= 7.0 < 10",
"psy/psysh": "*",
"sandfox.dev/code-standard": "^1.2024.07.05",
"squizlabs/php_codesniffer": "*",
"vimeo/psalm": "^5.4"
}
}