composer.json 461 B

123456789101112131415161718192021222324252627
  1. {
  2. "name": "stella-maris/clock",
  3. "description": "A pre-release of the proposed PSR-20 Clock-Interface",
  4. "keywords": [
  5. "clock",
  6. "psr20",
  7. "datetime",
  8. "point in time"
  9. ],
  10. "homepage": "https://gitlab.com/stella-maris/clock",
  11. "license": "MIT",
  12. "authors": [
  13. {
  14. "name": "Andreas Heigl",
  15. "role": "Maintainer"
  16. }
  17. ],
  18. "require": {
  19. "php": "^7.0|^8.0",
  20. "psr/clock": "^1.0"
  21. },
  22. "autoload": {
  23. "psr-4": {
  24. "StellaMaris\\Clock\\": "src"
  25. }
  26. }
  27. }