-
-
Notifications
You must be signed in to change notification settings - Fork 12
/
composer.json
44 lines (44 loc) · 1.21 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
{
"name": "fresh/transliteration",
"description": "PHP library for transliteration.",
"keywords": ["transliteration", "transliterate", "Ukrainian", "Latin", "English"],
"homepage": "https://github.com/fre5h/transliteration",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Artem Henvald",
"email": "[email protected]",
"role": "Creator"
}
],
"support": {
"email": "[email protected]",
"issues": "https://github.com/fre5h/transliteration/issues"
},
"require": {
"php": ">=8.1"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.8",
"phpstan/phpstan": "^1.5",
"phpstan/phpstan-phpunit": "^1.1",
"phpunit/phpunit": "^9.5",
"slam/phpstan-extensions": "^6.0",
"squizlabs/php_codesniffer": "^3.6",
"thecodingmachine/phpstan-strict-rules": "^1.0"
},
"autoload": {
"psr-4": {
"Fresh\\Transliteration\\": "src/"
},
"exclude-from-classmap": [
"/tests/"
]
},
"autoload-dev": {
"psr-4": {
"Tests\\Fresh\\Transliteration\\": "tests/"
}
}
}