{
	"name": "myth/auth",
	"type": "library",
	"description": "Flexible authentication/authorization system for CodeIgniter 4.",
	"keywords": [
		"codeigniter",
		"authentication",
		"authorization"
	],
	"homepage": "https://github.com/lonnieezell/myth-auth",
	"license": "MIT",
	"authors": [
		{
			"name": "Lonnie Ezell",
			"email": "lonnieje@gmail.com",
			"homepage": "http://newmythmedia.com",
			"role": "Developer"
		}
	],
	"require": {
		"php": "^7.3 || ^8.0"
	},
	"provide": {
		"codeigniter4/authentication-implementation": "1.0"
	},
	"require-dev": {
		"codeigniter4/codeigniter4": "dev-develop",
		"codeigniter4/codeigniter4-standard": "^1.0",
		"fakerphp/faker": "^1.9",
		"friendsofphp/php-cs-fixer": "^3.0",
		"mockery/mockery": "^1.0",
		"nexusphp/cs-config": "^3.1",
		"nexusphp/tachycardia": "^1.0",
		"php-coveralls/php-coveralls": "^2.4",
		"phpstan/phpstan": "^0.12",
		"phpunit/phpunit": "^9.2"
	},
	"autoload": {
		"psr-4": {
			"Myth\\Auth\\": "src"
		},
		"exclude-from-classmap": [
			"**/Database/Migrations/**"
		]
	},
	"autoload-dev": {
		"psr-4": {
			"Tests\\Support\\": "tests/_support"
		}
	},
	"repositories": [
		{
			"type": "vcs",
			"url": "https://github.com/codeigniter4/CodeIgniter4"
		}
	],
	"minimum-stability": "dev",
	"prefer-stable": true,
	"scripts": {
		"analyze": "phpstan analyze",
		"mutate": "infection --threads=2 --skip-initial-tests --coverage=build/phpunit",
		"style": "php-cs-fixer fix --verbose --ansi",
		"test": "phpunit"
	}
}
