{
|
|
"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"
|
|
}
|
|
|
|
}
|