forked from ollietb/php-keyword-density
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
68 lines (68 loc) · 1.67 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
61
62
63
64
65
66
67
68
{
"name": "amara/keyword-density",
"description": "Keyword density analyzer. Word frequency counter.",
"keywords": [
"word frequency",
"keyword density",
"php",
"seo",
"keywords",
"density",
"analyzer",
"word",
"frequency",
"file",
"text",
"html"
],
"homepage": "https://github.com/AmaraLiving/php-keyword-density",
"license": "MIT",
"authors": [
{
"name": "Masroor Ehsan",
"email": "[email protected]",
"role": "Developer"
}
],
"require": {
"php": "^8.0 || ^8.1",
"amara/lemmatizer": "^1.0",
"masroore/php-stemmer": "^3.0",
"masroore/stopwords": "^1.0",
"soundasleep/html2text": "^2.0",
"voku/portable-utf8": "^6.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.8"
},
"autoload": {
"psr-4": {
"Kaiju\\KeywordDensity\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Kaiju\\KeywordDensity\\Tests\\": "tests"
}
},
"scripts": {
"analyse": "vendor/bin/phpstan analyse",
"fix": "vendor/bin/php-cs-fixer fix --allow-risky=yes",
"test": "vendor/bin/phpunit tests",
"test-coverage": "vendor/bin/pest --coverage"
},
"config": {
"preferred-install": "dist",
"sort-packages": true,
"allow-plugins": {
"pestphp/pest-plugin": true,
"phpstan/extension-installer": true
}
},
"extra": {
"branch-alias": {
"dev-master": "2.x-dev"
}
},
"prefer-stable": true
}