composer.json 953 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. {
  2. "name": "freshrss.org/freshrss",
  3. "description": "A free, self-hostable aggregator",
  4. "type": "project",
  5. "homepage": "https://freshrss.org/",
  6. "license": "AGPL-3.0",
  7. "support": {
  8. "docs": "https://freshrss.github.io/FreshRSS/",
  9. "issues": "https://github.com/FreshRSS/FreshRSS/issues",
  10. "source": "https://github.com/FreshRSS/FreshRSS/"
  11. },
  12. "keywords": [
  13. "news",
  14. "aggregator",
  15. "RSS",
  16. "Atom",
  17. "WebSub"
  18. ],
  19. "require": {
  20. "php": ">=7.0.0"
  21. },
  22. "require-dev": {
  23. "phpunit/phpunit": "^9",
  24. "squizlabs/php_codesniffer": "^3.6"
  25. },
  26. "scripts": {
  27. "phpcs": "phpcs . -p -s",
  28. "phpcbf": "phpcbf . -p -s",
  29. "phpunit": "phpunit --bootstrap ./tests/bootstrap.php --verbose ./tests",
  30. "test": [
  31. "@phpunit",
  32. "@phpcs"
  33. ],
  34. "fix": [
  35. "@phpcbf"
  36. ]
  37. }
  38. }