-
Notifications
You must be signed in to change notification settings - Fork 12
/
composer.json
60 lines (60 loc) · 1.54 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
{
"name": "nlgen/nlgen",
"type": "library",
"description": "A library for creating recursive-descent natural language generators.",
"homepage": "http://wiki.duboue.net/PHP-NLGen",
"license": "MIT",
"keywords": [
"artificial intelligence", "nlp", "natural language generation", "nlg", "generation",
"text construction", "grammar", "chatbot", "natural language processing",
"computational linguistics", "recursive descent"
],
"authors": [
{
"name": "Pablo Duboue",
"email": "[email protected]",
"homepage": "http://duboue.net",
"role": "Developer"
}
],
"require": {
"php": ">=7.4.0"
},
"require-dev": {
"phpunit/phpunit": "^9.0"
},
"autoload": {
"psr-4": {
"NLGen\\": "src/"
},
"exclude-from-classmap": ["/examples/*"]
},
"autoload-dev": {
"psr-4": {
"NLGen\\Tests\\": "tests/"
}
},
"archive" : {
"exclude": ["/examples/*"]
},
"scripts": {
"compile-grammars": [
"@php scripts/compileGrammars.php"
],
"build": [
"@compile-grammars",
"@test"
],
"test": "phpunit"
},
"support": {
"issues": "https://github.com/DrDub/PHP-NLGen/issues",
"source": "https://github.com/DrDub/PHP-NLGen"
},
"funding": [
{
"type": "ko-fi",
"url": "https://ko-fi.com/textualization"
}
]
}