composer.json 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  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. },
  32. "suggest": {
  33. "cakephp/log": "Require this if you want to use the built-in query logger"
  34. },
  35. "autoload": {
  36. "psr-4": {
  37. "Cake\\Database\\": "."
  38. }
  39. }
  40. }