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

  1. {
  2. "name": "brennen/mw-category-readability",
  3. "description": "A small web application to display readability of pages from a MediaWiki category.",
  4. "keywords": ["mediawiki", "readability"],
  5. "homepage": "https://p1k3.com/",
  6. "license": "Public Domain",
  7. "authors": [
  8. {
  9. "name": "Brennen Bearnes",
  10. "email": "mediawiki@chaff.p1k3.com",
  11. "homepage": "https://p1k3.com/"
  12. }
  13. ],
  14. "require": {
  15. "php": ">=5.5.0",
  16. "slim/slim": "^3.1",
  17. "slim/php-view": "^2.0",
  18. "monolog/monolog": "^1.17",
  19. "davechild/textstatistics": "1.*",
  20. "oojs/oojs-ui": "^0.26.4"
  21. },
  22. "require-dev": {
  23. "phpunit/phpunit": ">=4.8 < 6.0"
  24. },
  25. "autoload": {
  26. "psr-4": {"MwCategoryReadability\\": "src/"}
  27. },
  28. "autoload-dev": {
  29. "psr-4": {
  30. "Tests\\": "tests/"
  31. }
  32. },
  33. "config": {
  34. "process-timeout" : 0
  35. },
  36. "scripts": {
  37. "start": "php -S localhost:8080 -t public",
  38. "test": "phpunit"
  39. }
  40. }