composer.json 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  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.1.0 || ~8.2.0",
  14. "psr/clock": "^1.0"
  15. },
  16. "require-dev": {
  17. "infection/infection": "^0.26",
  18. "lcobucci/coding-standard": "^9.0",
  19. "phpstan/extension-installer": "^1.2",
  20. "phpstan/phpstan": "^1.9.4",
  21. "phpstan/phpstan-deprecation-rules": "^1.1.1",
  22. "phpstan/phpstan-phpunit": "^1.3.2",
  23. "phpstan/phpstan-strict-rules": "^1.4.4",
  24. "phpunit/phpunit": "^9.5.27"
  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. "allow-plugins": {
  40. "dealerdirect/phpcodesniffer-composer-installer": true,
  41. "infection/extension-installer": true,
  42. "phpstan/extension-installer": true
  43. }
  44. },
  45. "provide": {
  46. "psr/clock-implementation": "1.0"
  47. }
  48. }