composer.json 2.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  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.5.9",
  22. "ext-intl": "*",
  23. "ext-mbstring": "*",
  24. "cakephp/chronos": "*",
  25. "aura/intl": "1.1.*",
  26. "psr/log": "1.0"
  27. },
  28. "suggest": {
  29. "ext-openssl": "To use Security::encrypt() or have secure CSRF token generation."
  30. },
  31. "require-dev": {
  32. "phpunit/phpunit": "*",
  33. "cakephp/cakephp-codesniffer": "dev-master"
  34. },
  35. "autoload": {
  36. "psr-4": {
  37. "Cake\\": "src"
  38. },
  39. "files": [
  40. "src/Core/functions.php",
  41. "src/Collection/functions.php",
  42. "src/I18n/functions.php",
  43. "src/Utility/bootstrap.php"
  44. ]
  45. },
  46. "autoload-dev": {
  47. "psr-4": {
  48. "Cake\\Test\\": "tests",
  49. "Company\\TestPluginThree\\Test\\": "tests/test_app/Plugin/Company/TestPluginThree/tests",
  50. "TestApp\\": "tests/test_app/TestApp",
  51. "TestPlugin\\": "tests/test_app/Plugin/TestPlugin/src",
  52. "TestPlugin\\Test\\": "tests/test_app/Plugin/TestPlugin/tests",
  53. "TestPluginTwo\\": "tests/test_app/Plugin/TestPluginTwo/src",
  54. "PluginJs\\": "tests/test_app/Plugin/PluginJs/src"
  55. }
  56. },
  57. "replace": {
  58. "cakephp/cache": "self.version",
  59. "cakephp/collection": "self.version",
  60. "cakephp/core": "self.version",
  61. "cakephp/datasource": "self.version",
  62. "cakephp/database": "self.version",
  63. "cakephp/event": "self.version",
  64. "cakephp/filesystem": "self.version",
  65. "cakephp/i18n": "self.version",
  66. "cakephp/log": "self.version",
  67. "cakephp/orm": "self.version",
  68. "cakephp/utility": "self.version",
  69. "cakephp/validation": "self.version"
  70. }
  71. }