composer.json 790 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. {
  2. "name": "nesbot/carbon",
  3. "type": "library",
  4. "description": "A simple API extension for DateTime.",
  5. "keywords": [
  6. "date",
  7. "time",
  8. "DateTime"
  9. ],
  10. "homepage": "http://carbon.nesbot.com",
  11. "support": {
  12. "issues": "https://github.com/briannesbitt/Carbon/issues",
  13. "source": "https://github.com/briannesbitt/Carbon"
  14. },
  15. "license": "MIT",
  16. "authors": [
  17. {
  18. "name": "Brian Nesbitt",
  19. "email": "brian@nesbot.com",
  20. "homepage": "http://nesbot.com"
  21. }
  22. ],
  23. "require": {
  24. "php": ">=5.3.0",
  25. "symfony/translation": "~2.6|~3.0"
  26. },
  27. "require-dev": {
  28. "phpunit/phpunit": "~4.0|~5.0"
  29. },
  30. "autoload": {
  31. "psr-4": {
  32. "Carbon\\": "src/Carbon/"
  33. }
  34. },
  35. "autoload-dev": {
  36. "psr-4": {
  37. "Tests\\": "tests/"
  38. }
  39. }
  40. }