-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
43 lines (43 loc) · 1.06 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
{
"name": "piedweb/text-analyzer",
"type": "library",
"description": "Semantic Analysis : Extract Expressions from a text and order it by density.",
"keywords": [
"Pied Web",
"TextAnalyzer"
],
"homepage": "https://dev.piedweb.com",
"license": "MIT",
"authors": [
{
"name": "Robin D. (ak Pied Web)",
"email": "contact@robin-d.fr",
"homepage": "https://piedweb.com"
}
],
"require": {
"php" : "~7.1|^8.0",
"neitanod/forceutf8": "^2.0.4",
"ropendev/simple_html_dom": "^1.7",
"vimeo/psalm": "^4.4"
},
"require-dev": {
"phpunit/phpunit" : ">=7.0",
"squizlabs/php_codesniffer": "^3.0"
},
"autoload": {
"psr-4": {
"PiedWeb\\TextAnalyzer\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"PiedWeb\\TextAnalyzer\\": "tests"
}
},
"scripts": {
"test": "phpunit",
"check-style": "phpcs src tests",
"fix-style": "phpcbf src tests"
}
}