{
	"name": "johnbillion/extended-cpts",
	"description": "A library which provides extended functionality to WordPress custom post types and taxonomies.",
	"homepage": "https://github.com/johnbillion/extended-cpts/",
	"license": "GPL-2.0+",
	"authors": [
		{
			"name": "John Blackbourn",
			"homepage": "https://johnblackbourn.com/"
		}
	],
	"config": {
		"sort-packages": true,
		"preferred-install": "dist",
		"allow-plugins": {
			"dealerdirect/phpcodesniffer-composer-installer": true,
			"roots/wordpress-core-installer": true
		}
	},
	"extra": {
		"branch-alias": {
			"dev-develop": "5.0-dev"
		},
		"wordpress-install-dir": "tests/wordpress"
	},
	"require": {
		"php": ">= 7.4.0",
		"johnbillion/args": "^0.9.0"
	},
	"require-dev": {
		"automattic/phpcs-neutron-standard": "1.7.0",
		"dealerdirect/phpcodesniffer-composer-installer": "^0.7",
		"johnbillion/falsey-assertequals-detector": "*",
		"lucatume/wp-browser": "^3.0",
		"phpcompatibility/phpcompatibility-wp": "^2",
		"phpstan/phpstan": "^1.0",
		"phpstan/phpstan-phpunit": "^1.0",
		"phpunit/phpunit": "^9",
		"roots/wordpress": "^5.8.0",
		"szepeviktor/phpstan-wordpress": "^1.0",
		"vlucas/phpdotenv": "^3",
		"wp-cli/core-command": "^2",
		"wp-cli/db-command": "^2",
		"wp-coding-standards/wpcs": "2.3.0"
	},
	"scripts": {
		"post-update-cmd": [
			"@php -r \"! file_exists( 'tests/.env' ) && copy( 'tests/.env.dist', 'tests/.env' );\""
		],
		"test:cs": [
			"phpcs -nps --colors --report-code --report-summary --report-width=80 --cache=tests/cache/phpcs --basepath='./' ."
		],
		"test:analyze": [
			"phpstan analyze"
		],
		"test:integration": [
			"codecept run integration"
		],
		"test": [
			"@test:cs",
			"@test:analyze",
			"@test:integration"
		]
	},
	"autoload": {
		"psr-4": {
			"ExtCPTs\\": "src",
			"ExtCPTs\\Tests\\": "tests/integration"
		},
		"files": [
			"functions.php"
		]
	},
	"suggest": {
		"seravo/wp-custom-bulk-actions": "Custom Bulk Actions",
		"wpackagist-plugin/rewrite-testing": "Rewrite Rule Testing"
	}
}
