composer.json 822 B

12345678910111213141516171819202122232425262728293031323334353637
  1. {
  2. "name": "cakephp/cakephp",
  3. "description": "The CakePHP framework",
  4. "type": "library",
  5. "keywords": ["framework"],
  6. "homepage": "http://cakephp.org",
  7. "license": "MIT",
  8. "authors": [
  9. {
  10. "name": "CakePHP Community",
  11. "homepage": "https://github.com/cakephp/cakephp/graphs/contributors"
  12. }
  13. ],
  14. "support": {
  15. "issues": "https://github.com/cakephp/cakephp/issues",
  16. "forum": "http://stackoverflow.com/tags/cakephp",
  17. "irc": "irc://irc.freenode.org/cakephp",
  18. "source": "https://github.com/cakephp/cakephp"
  19. },
  20. "require": {
  21. "php": ">=5.4.19",
  22. "ext-intl": "*",
  23. "ext-mcrypt": "*",
  24. "ext-mbstring": "*",
  25. "nesbot/Carbon": "1.8.*",
  26. "ircmaxell/password-compat": "1.0.*"
  27. },
  28. "require-dev": {
  29. "phpunit/phpunit": "*"
  30. },
  31. "autoload": {
  32. "psr-4": {
  33. "Cake\\": "src",
  34. "Cake\\Test\\": "tests"
  35. }
  36. }
  37. }