-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
37 lines (37 loc) · 1.1 KB
/
Copy pathcomposer.json
File metadata and controls
37 lines (37 loc) · 1.1 KB
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
{
"name": "detain/phlix-plugin-myanimelist",
"type": "phlix-plugin",
"description": "MyAnimeList metadata provider — anime titles, descriptions, episodes, ratings via the MAL API v2.",
"license": "MIT",
"keywords": ["phlix", "phlix-plugin", "metadata-provider", "myanimelist", "mal", "anime"],
"homepage": "https://github.com/detain/phlix-plugin-myanimelist",
"require": {
"php": ">=8.3",
"detain/phlix-shared": "^0.21.0",
"psr/container": "^1.1 || ^2.0",
"psr/log": "^1.0 || ^2.0 || ^3.0",
"workerman/http-client": "^3.1"
},
"require-dev": {
"phpstan/extension-installer": "*",
"phpstan/phpstan": "^2.2",
"phpunit/phpunit": "^10.0"
},
"autoload": {
"psr-4": {
"Phlix\\Myanimelist\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Phlix\\Myanimelist\\Tests\\": "tests/"
}
},
"config": {
"optimize-autoloader": true,
"sort-packages": true,
"allow-plugins": {
"phpstan/extension-installer": true
}
}
}