-
Notifications
You must be signed in to change notification settings - Fork 22
/
composer.json
47 lines (47 loc) · 1.04 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
{
"name": "mekras/php-speller",
"description": "PHP spell check library",
"type": "library",
"keywords": [
"spelling",
"aspell",
"hunspell",
"ispell"
],
"license": "MIT",
"authors": [
{
"name": "Михаил Красильников",
"email": "m.krasilnikov@yandex.ru"
},
{
"name": "Andreas Frömer",
"email": "blubb0r05+github@gmail.com"
}
],
"require": {
"php": ">=7.4",
"ext-dom": "*",
"ext-iconv": "*",
"ext-libxml": "*",
"symfony/process": "^5.4.22 || ^6.0"
},
"require-dev": {
"phpunit/phpunit": "^9.6.10",
"phpspec/prophecy-phpunit": "^2.0",
"squizlabs/php_codesniffer": "^3.7.2"
},
"autoload": {
"psr-4": {
"Mekras\\Speller\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Mekras\\Speller\\Tests\\": "tests"
}
},
"config": {
"sort-packages": true
}
}