-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathcomposer.json
More file actions
55 lines (55 loc) · 1.37 KB
/
composer.json
File metadata and controls
55 lines (55 loc) · 1.37 KB
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
{
"name": "ksanyok/text-humanize",
"version": "0.28.2",
"description": "Zero-dependency PHP library for algorithmic text humanization — transforms machine-generated text into natural prose",
"type": "library",
"keywords": [
"text-humanization",
"text-processing",
"nlp",
"typography",
"readability",
"natural-language",
"multilingual",
"text-naturalization"
],
"homepage": "https://github.com/ksanyok/TextHumanize",
"license": "proprietary",
"authors": [
{
"name": "ksanyok",
"email": "ksanyok@me.com"
}
],
"require": {
"php": ">=8.1",
"ext-mbstring": "*",
"ext-json": "*"
},
"require-dev": {
"phpunit/phpunit": "^10.0"
},
"autoload": {
"psr-4": {
"TextHumanize\\": "php/src/"
},
"classmap": [
"php/src/"
]
},
"autoload-dev": {
"psr-4": {
"TextHumanize\\Tests\\": "php/tests/"
}
},
"scripts": {
"test": "cd php && vendor/bin/phpunit"
},
"minimum-stability": "stable",
"funding": [
{
"type": "paypal",
"url": "https://www.paypal.com/cgi-bin/webscr?cmd=_donations&business=ksanyok%40me.com&item_name=TextHumanize¤cy_code=USD"
}
]
}