composer.json 821 B

1234567891011121314151617181920212223242526272829303132333435
  1. {
  2. "name": "dereuromark/tools-cakephp",
  3. "type": "cakephp-plugin",
  4. "description": "A CakePHP plugin containing lots of useful and reusable tools",
  5. "keywords": ["cakephp", "plugin", "tools", "utils", "helpers", "components", "behaviors", "datasources"],
  6. "homepage": "https://github.com/dereuromark/tools",
  7. "license": "MIT",
  8. "authors": [
  9. {
  10. "name": "Mark Scherer",
  11. "role": "Author",
  12. "homepage": "http://www.dereuromark.de/"
  13. }
  14. ],
  15. "require":{
  16. "php": ">=5.4",
  17. "composer/installers": "*"
  18. },
  19. "require-dev": {
  20. "cakephp/cakephp": "3.0.*-dev",
  21. "cakephp/app": "dev-master"
  22. },
  23. "autoload": {
  24. "psr-4": {
  25. "Tools\\": "."
  26. }
  27. },
  28. "support":{
  29. "source": "https://github.com/dereuromark/tools",
  30. "issues": "https://github.com/dereuromark/tools/issues"
  31. },
  32. "extra": {
  33. "installer-name": "Tools"
  34. }
  35. }