-
Notifications
You must be signed in to change notification settings - Fork 32
/
Copy pathcomposer.json
68 lines (68 loc) · 1.94 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
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "tigitz/php-spellchecker",
"type": "library",
"version": "0.8.0",
"description": "Provides an easy way to spellcheck multiple text source by many spellcheckers, directly from PHP",
"keywords": [
"spelling",
"spellcheck",
"spellchecker",
"spell-checker",
"spell-check",
"php-spellchecker"
],
"homepage": "https://github.com/tigitz/php-spellchecker",
"license": "MIT",
"authors": [
{
"name": "Philippe Segatori",
"email": "[email protected]",
"homepage": "https://github.com/tigitz",
"role": "Maintainer"
}
],
"require": {
"php": "^8.2",
"nyholm/psr7": "^1.3",
"psr/http-client": "^1.0",
"symfony/process": "^6.4 | ^7",
"webmozart/assert": "^1.11"
},
"require-dev": {
"aptoma/twig-markdown": "^3.0",
"cocur/slugify": "^3.2 || ^4.0",
"erusev/parsedown": "^1.7",
"erusev/parsedown-extra": "^0.8",
"phpstan/phpstan": "^2",
"phpstan/phpstan-strict-rules": "^2",
"phpstan/phpstan-webmozart-assert": "^2",
"phpstan/phpstan-phpunit": "^2",
"phpunit/phpunit": "^11.0",
"pixelrobin/php-feather": "^2",
"symfony/filesystem": "^5 |^6 | ^7",
"symfony/finder": "^5 |^6 | ^7",
"symfony/http-client": "^5 |^6 | ^7"
},
"suggest": {
"symfony/http-client": "A PSR-18 Client implementation to use spellcheckers that relies on HTTP APIs"
},
"autoload": {
"psr-4": {
"PhpSpellcheck\\": "src"
},
"files": [ "src/Text/functions.php" , "src/Utils/php-functions.php" ]
},
"autoload-dev": {
"psr-4": {
"PhpSpellcheck\\Tests\\": "tests"
}
},
"extra": {
"branch-alias": {
"dev-master": "1.0-dev"
}
},
"config": {
"sort-packages": true
}
}