{
  "name": "aviat/query",
  "type": "library",
  "description": "Database Query Builder and Abstraction layer",
  "keywords": [
	"database",
	"query builder",
	"codeigniter",
	"mysql",
	"sqlite",
	"postgres",
	"pdo"
  ],
  "homepage": "https://git.timshomepage.net/aviat/Query",
  "license": "MIT",
  "authors": [
	{
	  "name": "Timothy J. Warren",
	  "email": "tim@timshomepage.net",
	  "homepage": "https://timshomepage.net",
	  "role": "Developer"
	}
  ],
  "config": {
	"lock": false,
	"platform": {
	  "php": "8.1"
	}
  },
  "require": {
	"php": ">=8.1",
	"ext-pdo": "*"
  },
  "require-dev": {
	"phpunit/phpunit": "^10.0.16"
  },
  "autoload": {
	"psr-4": {
	  "Query\\": "src"
	},
	"files": [
	  "src/common.php"
	]
  },
  "autoload-dev": {
	"psr-4": {
	  "Query\\Tests\\": "tests"
	}
  },
  "scripts": {
	"docs": "php tools/phpDocumentor run --sourcecode",
	"coverage": "php -dpcov.enabled=1 -dpcov.directory=. -dpcov.exclude=\"~vendor~\" ./vendor/bin/phpunit -c build",
	"pcov": "vendor/bin/phpunit -c build",
	"phpstan": "tools/vendor/bin/phpstan analyse -l 3 -c phpstan.neon src tests",
	"test": "phpunit -c build --no-coverage"
  },
  "scripts-descriptions": {
	"coverage": "Generate test coverage report",
	"test": "Run unit tests"
  }
}