composer.json 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. {
  2. "name": "cakephp/core",
  3. "description": "CakePHP Framework Core classes",
  4. "type": "library",
  5. "keywords": [
  6. "cakephp",
  7. "framework",
  8. "core"
  9. ],
  10. "homepage": "https://cakephp.org",
  11. "license": "MIT",
  12. "authors": [
  13. {
  14. "name": "CakePHP Community",
  15. "homepage": "https://github.com/cakephp/core/graphs/contributors"
  16. }
  17. ],
  18. "support": {
  19. "issues": "https://github.com/cakephp/cakephp/issues",
  20. "forum": "https://stackoverflow.com/tags/cakephp",
  21. "irc": "irc://irc.freenode.org/cakephp",
  22. "source": "https://github.com/cakephp/core"
  23. },
  24. "require": {
  25. "php": ">=5.6.0",
  26. "cakephp/utility": "^3.6.0"
  27. },
  28. "suggest": {
  29. "cakephp/event": "To use PluginApplicationInterface or plugin applications.",
  30. "cakephp/cache": "To use Configure::store() and restore()."
  31. },
  32. "autoload": {
  33. "psr-4": {
  34. "Cake\\Core\\": "."
  35. },
  36. "files": [
  37. "functions.php"
  38. ]
  39. }
  40. }