-
Notifications
You must be signed in to change notification settings - Fork 18
/
composer.json
37 lines (37 loc) · 919 Bytes
/
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
{
"name": "hisune/emby_pinyin",
"type": "project",
"keywords": ["emby", "pinyin"],
"description": "Let emby support pinyin sorting",
"homepage": "https://hisune.com",
"license": "Apache-2.0",
"support": {
"email": "[email protected]",
"issues": "https://github.com/hisune/emby_pinyin/issues",
"source": "https://github.com/hisune/emby_pinyin"
},
"require": {
"php": ">=7.2.0",
"ext-json": "*"
},
"minimum-stability": "dev",
"prefer-stable": true,
"authors": [
{
"name": "Hisune",
"email": "[email protected]",
"homepage": "https://hisune.com",
"role": "Developer"
}
],
"scripts": {
"pre-install": [
"cd src && composer install",
"cd ..",
"php pack.php"
],
"start": [
"php run.php"
]
}
}