A small Slim application for returning a list of pages in a MediaWiki category, ordered by Dale-Chall readability scores.
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.
 
 

41 lines
1.0 KiB

{
"name": "brennen/mw-category-readability",
"description": "A small web application to display readability of pages from a MediaWiki category.",
"keywords": ["mediawiki", "readability"],
"homepage": "https://p1k3.com/",
"license": "Public Domain",
"authors": [
{
"name": "Brennen Bearnes",
"email": "mediawiki@chaff.p1k3.com",
"homepage": "https://p1k3.com/"
}
],
"require": {
"php": ">=5.5.0",
"slim/slim": "^3.1",
"slim/php-view": "^2.0",
"monolog/monolog": "^1.17",
"davechild/textstatistics": "1.*",
"oojs/oojs-ui": "^0.26.4"
},
"require-dev": {
"phpunit/phpunit": ">=4.8 < 6.0"
},
"autoload": {
"psr-4": {"MwCategoryReadability\\": "src/"}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"config": {
"process-timeout" : 0
},
"scripts": {
"start": "php -S localhost:8080 -t public",
"test": "phpunit"
}
}