composer.json 735 B

12345678910111213141516171819202122232425262728293031323334353637
  1. {
  2. "name": "lcobucci/clock",
  3. "description": "Yet another clock abstraction",
  4. "type": "library",
  5. "license": "MIT",
  6. "authors": [
  7. {
  8. "name": "Luís Cobucci",
  9. "email": "lcobucci@gmail.com"
  10. }
  11. ],
  12. "require": {
  13. "php": "^7.1"
  14. },
  15. "require-dev": {
  16. "phpunit/phpunit": "^6.1"
  17. },
  18. "autoload": {
  19. "psr-4": {
  20. "Lcobucci\\Clock\\": "src"
  21. }
  22. },
  23. "autoload-dev": {
  24. "psr-4": {
  25. "Lcobucci\\Clock\\": "src"
  26. }
  27. },
  28. "config": {
  29. "preferred-install": "dist",
  30. "sort-packages": true
  31. },
  32. "extra": {
  33. "branch-alias": {
  34. "dev-master": "1.1-dev"
  35. }
  36. }
  37. }