composer.json 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  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.16",
  22. "ext-intl": "*",
  23. "ext-mbstring": "*",
  24. "nesbot/Carbon": "1.13.*",
  25. "ircmaxell/password-compat": "1.0.*",
  26. "aura/intl": "1.1.*",
  27. "psr/log": "1.0"
  28. },
  29. "require-dev": {
  30. "phpunit/phpunit": "*",
  31. "cakephp/cakephp-codesniffer": "*"
  32. },
  33. "autoload": {
  34. "psr-4": {
  35. "Cake\\": "src"
  36. },
  37. "files": [
  38. "src/Core/functions.php",
  39. "src/Collection/functions.php"
  40. ]
  41. },
  42. "autoload-dev": {
  43. "psr-4": {
  44. "Cake\\Test\\": "tests"
  45. }
  46. },
  47. "replace": {
  48. "cakephp/collection": "self.version",
  49. "cakephp/event": "self.version",
  50. "cakephp/validation": "self.version",
  51. "cakephp/utility": "self.version",
  52. "cakephp/core": "self.version",
  53. "cakephp/datasource": "self.version",
  54. "cakephp/cache": "self.version",
  55. "cakephp/log": "self.version"
  56. }
  57. }