composer.json 1022 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  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.0.*-dev",
  18. "yangqi/htmldom": "dev-master",
  19. "dereuromark/cakephp-shim": "3.0.*-dev"
  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. "TestApp\\": "tests/TestApp"
  31. }
  32. },
  33. "support":{
  34. "source": "https://github.com/dereuromark/cakephp-tools",
  35. "issues": "https://github.com/dereuromark/cakephp-tools/issues"
  36. },
  37. "extra": {
  38. "installer-name": "Tools"
  39. },
  40. "minimum-stability": "dev"
  41. }