composer.json 981 B

12345678910111213141516171819202122232425262728293031323334353637383940
  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/plugin-installer": "*",
  18. "cakephp/cakephp": "3.0.*-dev",
  19. "yangqi/htmldom": "dev-master"
  20. },
  21. "autoload": {
  22. "psr-4": {
  23. "Tools\\": "src"
  24. }
  25. },
  26. "autoload-dev": {
  27. "psr-4": {
  28. "Tools\\Test\\": "tests",
  29. "Cake\\Test\\": "vendor/cakephp/cakephp/tests"
  30. }
  31. },
  32. "support":{
  33. "source": "https://github.com/dereuromark/cakephp-tools",
  34. "issues": "https://github.com/dereuromark/cakephp-tools/issues"
  35. },
  36. "extra": {
  37. "installer-name": "Tools"
  38. },
  39. "minimum-stability": "dev"
  40. }