composer.json 539 B

123456789101112131415161718192021222324252627282930
  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": "https://github.com/briannesbitt/Carbon",
  11. "license": "MIT",
  12. "authors": [
  13. {
  14. "name": "Brian Nesbitt",
  15. "email": "brian@nesbot.com",
  16. "homepage": "http://nesbot.com"
  17. }
  18. ],
  19. "require": {
  20. "php": ">=5.3.0"
  21. },
  22. "require-dev": {
  23. "phpunit/phpunit": "3.7.*"
  24. },
  25. "autoload": {
  26. "psr-0": {
  27. "Carbon": "src"
  28. }
  29. }
  30. }