composer.json 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. {
  2. "name": "cakephp/datasource",
  3. "description": "Provides connection managing and traits for Entities and Queries that can be reused for different datastores",
  4. "type": "library",
  5. "keywords": [
  6. "cakephp",
  7. "datasource",
  8. "connection management",
  9. "entity",
  10. "query"
  11. ],
  12. "homepage": "https://cakephp.org",
  13. "license": "MIT",
  14. "authors": [
  15. {
  16. "name": "CakePHP Community",
  17. "homepage": "https://github.com/cakephp/datasource/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/datasource"
  25. },
  26. "require": {
  27. "php": ">=5.6.0",
  28. "cakephp/core": "^3.6.0"
  29. },
  30. "suggest": {
  31. "cakephp/utility": "If you decide to use EntityTrait.",
  32. "cakephp/collection": "If you decide to use ResultSetInterface.",
  33. "cakephp/cache": "If you decide to use Query caching."
  34. },
  35. "autoload": {
  36. "psr-4": {
  37. "Cake\\Datasource\\": "."
  38. }
  39. }
  40. }