forked from andreskrey/readability.php
-
Notifications
You must be signed in to change notification settings - Fork 38
Expand file tree
/
Copy pathcomposer.json
More file actions
47 lines (47 loc) · 1.28 KB
/
Copy pathcomposer.json
File metadata and controls
47 lines (47 loc) · 1.28 KB
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
{
"name": "fivefilters/readability.php",
"type": "library",
"description": "A PHP port of Mozilla's Readability.js",
"keywords": ["readability", "html"],
"homepage": "https://github.com/fivefilters/readability.php",
"license": "Apache-2.0",
"authors": [
{
"name": "Andres Rey",
"email": "andreskrey@gmail.com",
"role": "Original Developer"
},
{
"name": "Keyvan Minoukadeh",
"email": "keyvan@fivefilters.org",
"homepage": "https://www.fivefilters.org",
"role": "Developer/Maintainer"
}
],
"autoload": {
"psr-4": {
"fivefilters\\Readability\\": "src/"
}
},
"autoload-dev": {
"psr-4": {"fivefilters\\Readability\\Test\\": "test"}
},
"require": {
"php": ">=8.4",
"ext-dom": "*",
"ext-mbstring": "*",
"psr/log": "^1.0 || ^2.0 || ^3.0",
"rowbot/url": "^3.1.7 || ^4.0"
},
"suggest": {
"ext-uri": "Native WHATWG URL parsing, used automatically on PHP 8.5+ instead of rowbot/url"
},
"require-dev": {
"phpunit/phpunit": "^12.0",
"vimeo/psalm": "^6"
},
"scripts": {
"test": "phpunit",
"analyse": "psalm"
}
}