composer.json 663 B

123456789101112131415161718192021222324
  1. {
  2. "name": "cakephp/database",
  3. "description": "Flexible and powerful Database abstraction library with a familiar PDO-like API",
  4. "license": "MIT",
  5. "authors": [
  6. {
  7. "name": "CakePHP Community",
  8. "homepage": "http://cakephp.org"
  9. }
  10. ],
  11. "require": {
  12. "cakephp/core": "~3.0"
  13. },
  14. "suggest": {
  15. "cakephp/log": "Require this if you want to use the built-in query logger",
  16. "cakephp/cache": "Require this if you decide to use the schema caching feature"
  17. },
  18. "autoload": {
  19. "psr-4": {
  20. "Cake\\Database\\": "."
  21. }
  22. },
  23. "minimum-stability": "beta"
  24. }