composer.json 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  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. "role": "Author",
  12. "homepage": "http://www.dereuromark.de"
  13. }
  14. ],
  15. "require":{
  16. "php": ">=5.4",
  17. "cakephp/cakephp": "^3.2",
  18. "dereuromark/cakephp-shim": "^1.0"
  19. },
  20. "require-dev":{
  21. "mobiledetect/mobiledetectlib": "2.*",
  22. "fig-r/psr2r-sniffer": "dev-master"
  23. },
  24. "autoload": {
  25. "psr-4": {
  26. "Tools\\": "src"
  27. }
  28. },
  29. "autoload-dev": {
  30. "psr-4": {
  31. "Tools\\Test\\": "tests",
  32. "Cake\\Test\\": "vendor/cakephp/cakephp/tests",
  33. "TestApp\\": "tests/TestApp"
  34. }
  35. },
  36. "suggest": {
  37. "yangqi/htmldom": "For HtmlDom usage"
  38. },
  39. "support":{
  40. "source": "https://github.com/dereuromark/cakephp-tools",
  41. "issues": "https://github.com/dereuromark/cakephp-tools/issues"
  42. }
  43. }