composer.json 1.0 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. {
  2. "name": "cakephp/database",
  3. "description": "Flexible and powerful Database abstraction library with a familiar PDO-like API",
  4. "type": "library",
  5. "keywords": [
  6. "cakephp",
  7. "database",
  8. "abstraction",
  9. "database abstraction",
  10. "pdo"
  11. ],
  12. "homepage": "https://cakephp.org",
  13. "license": "MIT",
  14. "authors": [
  15. {
  16. "name": "CakePHP Community",
  17. "homepage": "https://github.com/cakephp/database/graphs/contributors"
  18. }
  19. ],
  20. "support": {
  21. "issues": "https://github.com/cakephp/cakephp/issues",
  22. "forum": "https://stackoverflow.com/tags/cakephp",
  23. "irc": "irc://irc.freenode.org/cakephp",
  24. "source": "https://github.com/cakephp/database"
  25. },
  26. "require": {
  27. "php": ">=5.6.0",
  28. "cakephp/cache": "^3.6.0",
  29. "cakephp/core": "^3.6.0",
  30. "cakephp/datasource": "^3.6.0",
  31. "cakephp/log": "^3.6.0"
  32. },
  33. "autoload": {
  34. "psr-4": {
  35. "Cake\\Database\\": "."
  36. }
  37. }
  38. }