composer.json 484 B

123456789101112131415161718192021222324252627
  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. "autoload": {
  23. "psr-0": {
  24. "Carbon": "src"
  25. }
  26. }
  27. }