composer.json 1.3 KB

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