forked from DaveChild/Text-Statistics
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
34 lines (34 loc) · 908 Bytes
/
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
{
"name": "cruiser13/textstatistics",
"description": "PHP package to measure the readability of text according to various algorithms.",
"homepage": "https://github.com/Cruiser13/Text-Statistics",
"authors": [
{
"name": "Dave Child",
"email": "[email protected]",
"homepage": "https://www.addedbytes.com/",
"role": "Developer"
}
],
"license": "BSD-2-Clause",
"require": {
"php": ">=7.2.0"
},
"require-dev": {
"phpunit/phpunit": "^7"
},
"autoload": {
"psr-0" : {
"DaveChild\\TextStatistics" : "src"
}
},
"extra": {
"branch-alias": {
"dev-master": "1.0.x-dev"
}
},
"suggest": {
"ext-bcmath": "More accurate floating point calculations.",
"ext-mbstring": "Handle multi-byte text properly."
}
}