composer.json 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. {
  2. "name": "aaemnnosttv/wp-sqlite-db",
  3. "description": "SQLite drop-in database driver for WordPress",
  4. "type": "wordpress-dropin",
  5. "license": "GPL-2.0-or-later",
  6. "authors": [
  7. {
  8. "name": "Evan Mattson",
  9. "email": "me@aaemnnost.tv",
  10. "role": "Developer"
  11. },
  12. {
  13. "name": "Kojima Toshiyasu",
  14. "homepage": "https://profiles.wordpress.org/kjmtsh",
  15. "role": "Author of SQLite Integration"
  16. }
  17. ],
  18. "autoload-dev": {
  19. "psr-4": {
  20. "Tests\\": "tests/src"
  21. }
  22. },
  23. "require": {
  24. "php": ">=5.6",
  25. "ext-PDO": "*",
  26. "composer/installers": "^1.0 || ^2.0"
  27. },
  28. "require-dev": {
  29. "phpunit/phpunit": "^5 || ^6 || ^7 || ^8 || ^9",
  30. "roots/wordpress": "^6",
  31. "wp-cli/core-command": "^2",
  32. "wp-phpunit/wp-phpunit": "^6",
  33. "yoast/phpunit-polyfills": "^1"
  34. },
  35. "scripts": {
  36. "test": "phpunit"
  37. },
  38. "config": {
  39. "allow-plugins": {
  40. "roots/wordpress-core-installer": true,
  41. "composer/installers": true
  42. }
  43. }
  44. }