composer.json 2.4 KB

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