You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
54 lines
1.6 KiB
54 lines
1.6 KiB
{ |
|
"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": "jeremy.benoist@gmail.com", |
|
"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": "keyvan@keyvan.net", |
|
"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.2.0", |
|
"ext-mbstring": "*", |
|
"psr/log": "^1.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.12.15" |
|
}, |
|
"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/" } |
|
}, |
|
"config":{ |
|
"platform": { |
|
"php": "7.2.34" |
|
} |
|
} |
|
}
|
|
|