composer.json 795 B

1234567891011121314151617181920212223242526272829303132
  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": "http://cakephp.lighthouseapp.com/",
  16. "forum": "http://ask.cakephp.org/",
  17. "irc": "irc://irc.freenode.org/cakephp",
  18. "source": "https://github.com/cakephp/cakephp/"
  19. },
  20. "require": {
  21. "php": ">=5.2"
  22. },
  23. "autoload": {
  24. "psr-0": {
  25. "Cake": "Cake/"
  26. }
  27. },
  28. "minimum-stability": "dev",
  29. "bin": [
  30. "Cake/Console/cake"
  31. ]
  32. }