-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
35 lines (35 loc) · 979 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
{
"name": "kudashevs/rake-php",
"description": "A PHP implementation of the Rapid Automatic Keyword Extraction (RAKE) algorithm.",
"type": "library",
"keywords": ["php", "keywords", "extract keywords", "rake", "RAKE", "Rapid Automatic Keyword Extraction"],
"license": "MIT",
"authors": [
{
"name": "Sergey Kudashev",
"email": "[email protected]",
"homepage": "https://kudashevs.com",
"role": "developer"
}
],
"require": {
"php": "^8.1"
},
"require-dev": {
"phpunit/phpunit": "^10.1|^11.0"
},
"autoload": {
"psr-4": {
"Kudashevs\\RakePhp\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Kudashevs\\RakePhp\\Tests\\": "tests/"
}
},
"scripts": {
"test": "vendor/bin/phpunit --no-coverage",
"test-coverage": "vendor/bin/phpunit --coverage-html build/coverage"
}
}