forked from tigitz/php-spellchecker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
63 lines (63 loc) · 1.75 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
{
"name": "tigitz/php-spellchecker",
"type": "library",
"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": "^7.1",
"symfony/process": "^3.3|^4.0",
"thecodingmachine/safe": "^0.1.13",
"webmozart/assert": "1.3.*"
},
"require-dev": {
"aptoma/twig-markdown": "^3.0",
"cocur/slugify": "^3.2",
"erusev/parsedown": "^1.7",
"erusev/parsedown-extra": "^0.7.1",
"phpstan/phpstan": "^0.11",
"phpstan/phpstan-strict-rules": "^0.11.0",
"phpstan/phpstan-webmozart-assert": "^0.11.0",
"phpstan/phpstan-phpunit": "^0.11.0",
"phpunit/phpunit": "^7.0",
"pixelrobin/php-feather": "^1.0",
"symfony/filesystem": "^4.2",
"symfony/finder": "^4.2",
"thecodingmachine/phpstan-safe-rule": "^0.1",
"tigitz/phpcs": "^8.0"
},
"autoload": {
"psr-4": {
"PhpSpellcheck\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"PhpSpellcheck\\Tests\\": "tests/PhpSpellcheck/Tests"
}
},
"extra": {
"branch-alias": {
"dev-master": "1.0-dev"
}
},
"config": {
"sort-packages": true
}
}