composer.json 441 B

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