-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
41 lines (41 loc) · 972 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
38
39
40
41
{
"name": "jundayw/pinyin",
"description": "Chinese characters to Pinyin.",
"type": "library",
"keywords": ["laravel", "thinkphp", "php", "pinyin"],
"license": "MIT",
"authors": [
{
"name": "jundayw",
"email": "jundayw@126.com"
}
],
"require": {
"php": ">=7.2.0"
},
"autoload": {
"psr-4": {
"Jundayw\\PinYin\\": "src/"
}
},
"extra": {
"laravel": {
"providers": [
"Jundayw\\PinYin\\PinYinServiceProvider"
],
"aliases": {
"Render": "Jundayw\\PinYin\\Facades\\Alphabet"
}
},
"think": {
"services": [
"Jundayw\\PinYin\\Services\\PinYinService"
],
"config": {
"pinyin": "config/pinyin.php"
}
}
},
"minimum-stability": "dev",
"prefer-stable": true
}