composer.json 1.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  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.1",
  18. "dereuromark/cakephp-shim": "~1.0"
  19. },
  20. "require-dev":{
  21. "mobiledetect/mobiledetectlib": "2.*"
  22. },
  23. "autoload": {
  24. "psr-4": {
  25. "Tools\\": "src"
  26. }
  27. },
  28. "autoload-dev": {
  29. "psr-4": {
  30. "Tools\\Test\\": "tests",
  31. "Cake\\Test\\": "vendor/cakephp/cakephp/tests",
  32. "TestApp\\": "tests/TestApp"
  33. }
  34. },
  35. "suggest": {
  36. "yangqi/htmldom": "For HtmlDom usage"
  37. },
  38. "support":{
  39. "source": "https://github.com/dereuromark/cakephp-tools",
  40. "issues": "https://github.com/dereuromark/cakephp-tools/issues"
  41. }
  42. }