forked from fomvasss/laravel-punycode
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
executable file
·35 lines (35 loc) · 885 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
{
"name": "alibaba258/laravel-punycode",
"description": "Package for encoding of Unicode for Internationalized Domain Names in Applications (IDNA)",
"keywords": ["laravel", "punycode", "idn", "domain"],
"type": "package",
"license": "MIT",
"authors": [
{
"role": "Company",
"name": "WebWest",
"homepage": "http://web-west.net.ua"
},
{
"role": "Developer",
"name": "Fomin Vasyl",
"email": "fomvasss@gmail.com"
}
],
"require": {
"php": ">=5.5.9",
"illuminate/support": "6.*"
},
"autoload": {
"psr-4": {
"Fomvasss\\Punycode\\": "src"
}
},
"extra": {
"laravel": {
"providers": [
"Fomvasss\\Punycode\\PunycodeServiceProvider"
]
}
}
}