| {
	"name" : "inshore/laravel-bookwhen",
	"description" : "Bookwhen API SDK providing plug & play access to the Bookwhen booking platform inside you Laravel application.",
	"type" : "package",
	"require" : {
		"inshore/bookwhen" : "^0.9.5"
	},
	"license" : "MIT",
	"autoload" : {
		"psr-4" : {
			"InShore\\Bookwhen\\" : "src/"
		}
	},
	"authors" : [{
			"name" : "Daniel Mullin",
			"email" : "[email protected] "
		}
	],
	"minimum-stability" : "dev",
	"prefer-stable": true,
	"config" : {
		"allow-plugins" : {
			"php-http/discovery" : true
		}
	},
	"extra" : {
		"laravel" : {
			"providers" : [
				"InShore\\Bookwhen\\ServiceProvider"
			],
			"aliases" : {
				"Bookwhen" : "InShore\\Bookwhen\\Facade"
			}
		}
	},
	"scripts" : {
		"phpcsfixer" : "tools/php-cs-fixer/vendor/bin/php-cs-fixer fix src",
		"phpunit" : "vendor/bin/phpunit"
	},
	"require-dev": {
		"phpunit/phpunit": "^10.1"
	}
}
 |