composer.json 996 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. {
  2. "name": "lcobucci/clock",
  3. "description": "Yet another clock abstraction",
  4. "license": "MIT",
  5. "type": "library",
  6. "authors": [
  7. {
  8. "name": "Luís Cobucci",
  9. "email": "lcobucci@gmail.com"
  10. }
  11. ],
  12. "require": {
  13. "php": "^8.0",
  14. "stella-maris/clock": "^0.1.4"
  15. },
  16. "require-dev": {
  17. "infection/infection": "^0.26",
  18. "lcobucci/coding-standard": "^8.0",
  19. "phpstan/extension-installer": "^1.1",
  20. "phpstan/phpstan": "^0.12",
  21. "phpstan/phpstan-deprecation-rules": "^0.12",
  22. "phpstan/phpstan-phpunit": "^0.12",
  23. "phpstan/phpstan-strict-rules": "^0.12",
  24. "phpunit/phpunit": "^9.5"
  25. },
  26. "autoload": {
  27. "psr-4": {
  28. "Lcobucci\\Clock\\": "src"
  29. }
  30. },
  31. "autoload-dev": {
  32. "psr-4": {
  33. "Lcobucci\\Clock\\": "test"
  34. }
  35. },
  36. "config": {
  37. "preferred-install": "dist",
  38. "sort-packages": true
  39. }
  40. }