-
-
Notifications
You must be signed in to change notification settings - Fork 38
/
Copy pathcomposer.json
55 lines (55 loc) · 1.77 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
55
{
"name": "j0k3r/php-readability",
"type": "library",
"description": "Automatic article extraction from HTML",
"keywords": ["article extraction","content extraction","extraction","article","content","html"],
"license": "Apache-2.0",
"authors": [{
"name": "Jeremy Benoist",
"email": "[email protected]",
"homepage": "http://www.j0k3r.net",
"role": "Developer"
},{
"name": "DitherSky",
"homepage": "https://github.com/Dither",
"role": "Developer (https://github.com/Dither/full-text-rss)"
},{
"name": "Keyvan Minoukadeh",
"email": "[email protected]",
"homepage": "http://keyvan.net",
"role": "Developer (ported original JS code to PHP)"
},{
"name": "Arc90",
"homepage": "http://arc90.com",
"role": "Developer (original JS version)"
}],
"require": {
"php": ">=7.4.0",
"ext-mbstring": "*",
"psr/log": "^1.0.1 || ^2.0 || ^3.0",
"masterminds/html5": "^2.7"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.0",
"monolog/monolog": "^1.24|^2.1",
"symfony/phpunit-bridge": "^4.4|^5.3|^6.0",
"phpstan/phpstan": "^1.3",
"phpstan/phpstan-phpunit": "^1.0",
"rector/rector": "^0.15.0"
},
"suggest": {
"ext-tidy": "Used to clean up given HTML and to avoid problems with bad HTML structure."
},
"autoload": {
"psr-4": { "Readability\\": "src/" }
},
"autoload-dev": {
"psr-4": { "Tests\\Readability\\": "tests/" }
},
"scripts": {
"fix": "php-cs-fixer fix --verbose --diff",
"phpstan": "phpstan analyze --memory-limit 512M",
"rector": "rector process",
"test": "simple-phpunit -v"
}
}