forked from mbeurel/php-lemmatizer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
35 lines (35 loc) · 1.17 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
{
"name": "mbeurel/php-lemmatizer",
"type": "library",
"description": "PHP Wrapper for the TreeTagger library",
"keywords": [
"TreeTagger",
"PHP",
"lemmatizer"
],
"homepage": "https://github.com/mbeurel/php-lemmatizer",
"license": "MIT",
"authors": [
{
"name": "Matthieu Beurel",
"email": "m.beurel@nexboard.fr",
"homepage": "https://www.nexboard.fr"
},
{
"name": "Clément Meunier",
"email": "c.meunier@nexboard.fr",
"homepage": "https://www.nexboard.fr"
}
],
"require": {
"ext-json": "*",
"php": "^7.1",
"symfony/process": "^4.1"
},
"require-dev": {
"symfony/debug-pack": "^1.0.6"
},
"autoload": {
"psr-4": { "PhpTreeTagger\\": "lib" }
}
}