-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcomposer.json
47 lines (47 loc) · 857 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
35
36
37
38
39
40
41
42
43
44
45
46
47
{
"name": "nadar/stemming",
"type": "library",
"description": "Stemming by Language",
"keywords": [
"php",
"stemming",
"stemmer"
],
"license": "MIT",
"homepage": "https://github.com/nadar/stemming",
"authors": [
{
"name": "Basil Suter",
"homepage": "https://github.com/nadar",
"role": "Creator"
}
],
"require-dev": {
"luyadev/luya-testsuite": "^2.0"
},
"autoload": {
"psr-4": {
"Nadar\\Stemming\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Nadar\\Stemming\\Tests\\": "test"
}
},
"config": {
"fxp-asset": {
"enabled": false
},
"allow-plugins": {
"yiisoft/yii2-composer": true,
"luyadev/luya-composer": true
}
},
"repositories": [
{
"type": "composer",
"url": "https://asset-packagist.org"
}
]
}