composer.json 835 B

123456789101112131415161718192021222324252627282930
  1. {
  2. "name": "dereuromark/cakephp-tools",
  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/cakephp-tools",
  7. "license": "MIT",
  8. "authors": [
  9. {
  10. "name": "Mark Scherer",
  11. "homepage": "http://www.dereuromark.de",
  12. "role": "Maintainer"
  13. }
  14. ],
  15. "require": {
  16. "php": ">=5.4",
  17. "composer/installers": "*",
  18. "cakephp/cakephp": ">=2.0 <3.0",
  19. "dereuromark/cakephp-shim": "^0.5.0 || ^0.6.0"
  20. },
  21. "support": {
  22. "source": "https://github.com/dereuromark/cakephp-tools"
  23. },
  24. "extra": {
  25. "installer-name": "Tools"
  26. },
  27. "suggest": {
  28. "pelago/emogrifier": "When using InlineCss lib and CSS to inline HTML transformation."
  29. }
  30. }