composer.json 2.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  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": "dev-master"
  32. },
  33. "autoload": {
  34. "psr-4": {
  35. "Cake\\": "src"
  36. },
  37. "files": [
  38. "src/Core/functions.php",
  39. "src/Collection/functions.php",
  40. "src/I18n/functions.php",
  41. "src/Utility/bootstrap.php"
  42. ]
  43. },
  44. "autoload-dev": {
  45. "psr-4": {
  46. "Cake\\Test\\": "tests",
  47. "Company\\TestPluginThree\\Test\\": "tests/test_app/Plugin/Company/TestPluginThree/tests",
  48. "TestApp\\": "tests/test_app/TestApp",
  49. "TestPlugin\\": "tests/test_app/Plugin/TestPlugin/src",
  50. "TestPlugin\\Test\\": "tests/test_app/Plugin/TestPlugin/tests",
  51. "TestPluginTwo\\": "tests/test_app/Plugin/TestPluginTwo/src",
  52. "PluginJs\\": "tests/test_app/Plugin/PluginJs/src"
  53. }
  54. },
  55. "replace": {
  56. "cakephp/cache": "self.version",
  57. "cakephp/collection": "self.version",
  58. "cakephp/core": "self.version",
  59. "cakephp/datasource": "self.version",
  60. "cakephp/database": "self.version",
  61. "cakephp/event": "self.version",
  62. "cakephp/i18n": "self.version",
  63. "cakephp/log": "self.version",
  64. "cakephp/orm": "self.version",
  65. "cakephp/utility": "self.version",
  66. "cakephp/validation": "self.version"
  67. },
  68. "extra": {
  69. "branch-alias": {
  70. "dev-master": "3.0.x-dev"
  71. }
  72. }
  73. }