-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathcomposer.json
39 lines (39 loc) · 1015 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
{
"name": "alexcrawford/lexorank-php",
"description": "PHP Implementation of JIRA's LexoRank algorithm.",
"license": "MIT",
"authors": [
{
"name": "Alex Crawford",
"email": "[email protected]"
}
],
"type": "project",
"require": {
"php": "~8.0 || ~8.1 || ~8.2",
"webmozart/assert": "^1.11"
},
"require-dev": {
"phpunit/phpunit": "^9.5",
"vimeo/psalm": "^4.27",
"psalm/plugin-phpunit": "^0.17.0",
"roave/infection-static-analysis-plugin": "^1.23",
"doctrine/coding-standard": "^10.0"
},
"autoload": {
"psr-4": {
"AlexCrawford\\LexoRank\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"AlexCrawford\\LexoRank\\Tests\\": "tests/"
}
},
"config": {
"allow-plugins": {
"infection/extension-installer": true,
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}