-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
54 lines (54 loc) · 1.33 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
{
"name": "markuspoerschke/extractum",
"description": "Extract information from web pages.",
"license": "MIT",
"type": "library",
"keywords": [
"extractor",
"scraper",
"readability"
],
"authors": [
{
"name": "Markus Poerschke",
"email": "[email protected]"
}
],
"support": {
"issues": "https://github.com/markuspoerschke/extractum/issues",
"sources": "https://github.com/markuspoerschke/extractum"
},
"require": {
"php": "^7.4 || ^8.0",
"ext-dom": "*",
"ext-json": "*",
"ml/json-ld": "^1.2",
"symfony/css-selector": "^5.1",
"symfony/dom-crawler": "^5.1",
"voku/stop-words": "^2.0"
},
"require-dev": {
"ergebnis/composer-normalize": "^2.11",
"friendsofphp/php-cs-fixer": "^3.0",
"phpmd/phpmd": "^2.9",
"phpunit/phpunit": "^9.4",
"symfony/finder": "^5.1",
"symfony/var-dumper": "^5.2",
"vimeo/psalm": "^4.1 || ^5.0"
},
"autoload": {
"psr-4": {
"Extractum\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Extractum\\Test\\": "tests/"
}
},
"config": {
"allow-plugins": {
"ergebnis/composer-normalize": true
}
}
}