-
Notifications
You must be signed in to change notification settings - Fork 5
/
composer.json
52 lines (52 loc) · 1.19 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
{
"name" : "luyadev/luya-module-crawler",
"description" : "An full search page crawler to enable complex and customized searching abilities.",
"type" : "luya-module",
"keywords" : ["php", "luya", "module", "crawler", "yii2", "yii", "yii2-pagecrawler", "pagecrawler", "luya-module"],
"license": "MIT",
"homepage" : "https://luya.io",
"authors" : [
{
"name" : "Basil",
"email" : "git@nadar.io",
"homepage" : "https://github.com/nadar"
}
],
"support" : {
"issues" : "https://github.com/luyadev/luya/issues"
},
"require" : {
"php": ">=7.1",
"nadar/crawler" : "^1.3",
"nadar/stemming" : "^1.0",
"smalot/pdfparser": "^2.1"
},
"require-dev" : {
"luyadev/luya-testsuite" : "^2.0"
},
"autoload" : {
"psr-4" : {
"luya\\crawler\\" : "src/"
}
},
"autoload-dev" : {
"psr-4" : {
"luya\\crawler\\tests\\" : "tests/"
}
},
"config": {
"fxp-asset": {
"enabled": false
},
"allow-plugins": {
"yiisoft/yii2-composer": true,
"luyadev/luya-composer": true
}
},
"repositories": [
{
"type": "composer",
"url": "https://asset-packagist.org"
}
]
}