-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
55 lines (55 loc) · 1.44 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
47
48
49
50
51
52
53
54
55
{
"name": "laravel-lang/locale-list",
"description": "List of localizations available in Laravel Lang projects",
"license": "MIT",
"type": "library",
"keywords": [
"lang",
"languages",
"laravel",
"laravel-lang",
"locale",
"locales",
"localization",
"translation",
"translations"
],
"authors": [
{
"name": "Andrey Helldar",
"email": "[email protected]",
"homepage": "https://dragon-code.pro"
},
{
"name": "Laravel-Lang Team",
"homepage": "https://laravel-lang.com"
}
],
"support": {
"issues": "https://github.com/Laravel-Lang/locale-list/issues",
"source": "https://github.com/Laravel-Lang/locale-list"
},
"require": {
"php": "^8.1",
"archtechx/enums": "^0.3.2 || ^1.0"
},
"minimum-stability": "stable",
"prefer-stable": true,
"autoload": {
"psr-4": {
"LaravelLang\\LocaleList\\": "src/"
}
},
"config": {
"allow-plugins": {
"dragon-code/codestyler": true,
"ergebnis/composer-normalize": true,
"friendsofphp/php-cs-fixer": true,
"pestphp/pest-plugin": true,
"php-http/discovery": true,
"symfony/thanks": true
},
"preferred-install": "dist",
"sort-packages": true
}
}