composer.json 707 B

123456789101112131415161718192021222324252627
  1. {
  2. "name": "jimmiw/php-time-ago",
  3. "description": "Simple module, that displays the date in a \"time ago\" format",
  4. "keywords": ["time ago", "distance of time", "time ago in words"],
  5. "homepage": "https://github.com/jimmiw/php-time-ago",
  6. "license": "MIT",
  7. "authors": [
  8. {
  9. "name": "Jimmi Westerberg",
  10. "homepage": "http://www.westsworld.dk",
  11. "role": "Developer"
  12. }
  13. ],
  14. "require": {
  15. "php": ">=4"
  16. },
  17. "require-dev": {
  18. "phpunit/phpunit": "5.*@stable",
  19. "phpunit/dbunit": "2.0.*"
  20. },
  21. "autoload": {
  22. "files": ["timeago.inc.php"]
  23. },
  24. "config": {
  25. "bin-dir": "vendor/bin/"
  26. }
  27. }