Base for a static organization website

composer.json 1002B

1234567891011121314151617181920212223242526272829303132333435
  1. {
  2. "name": "cakephp/debug_kit",
  3. "description": "CakePHP Debug Kit",
  4. "type": "cakephp-plugin",
  5. "keywords": ["cakephp", "debug", "kit"],
  6. "homepage": "https://github.com/cakephp/debug_kit",
  7. "license": "MIT",
  8. "authors": [
  9. {
  10. "name": "Mark Story",
  11. "homepage": "http://mark-story.com",
  12. "role": "Author"
  13. },
  14. {
  15. "name": "CakePHP Community",
  16. "homepage": "https://github.com/cakephp/debug_kit/graphs/contributors"
  17. }
  18. ],
  19. "support": {
  20. "issues": "https://github.com/cakephp/debug_kit/issues",
  21. "forum": "http://stackoverflow.com/tags/cakephp",
  22. "irc": "irc://irc.freenode.org/cakephp",
  23. "source": "https://github.com/cakephp/debug_kit"
  24. },
  25. "require": {
  26. "php": ">=5.3.0",
  27. "composer/installers": "*"
  28. },
  29. "extra": {
  30. "branch-alias": {
  31. "dev-master": "2.2.x-dev"
  32. },
  33. "installer-name": "DebugKit"
  34. }
  35. }