-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
46 lines (46 loc) · 1.03 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
{
"name": "randomhost/steamsignature",
"type": "library",
"description": "Displays the online status of Steam players as PNG image.",
"keywords": [
"Image",
"Steam"
],
"homepage": "https://github.random-host.tv",
"license": "BSD-3-Clause",
"authors": [
{
"name": "Ch'Ih-Yu",
"email": "chi-yu@web.de"
}
],
"config": {
"platform": {
"php": "8.2.7"
}
},
"require": {
"php": "~8.0",
"randomhost/image": "~3.0-beta",
"ext-mbstring": "*"
},
"require-dev": {
"phpunit/phpunit": "~9.0"
},
"suggest": {
"ext-memcached": "Provides in-memory caching of API data to reduce amount of API calls"
},
"autoload": {
"psr-4": {
"randomhost\\Steam\\": "src/php/"
}
},
"autoload-dev": {
"psr-4": {
"randomhost\\Steam\\Tests\\": "src/tests/php"
}
},
"scripts": {
"test": "vendor/bin/phpunit"
}
}