composer.json 1.33 KB

{
	"name" : "cakephp/app",
	"description" : "CakePHP skeleton app",
	"homepage" : "http://cakephp.org",
	"type" : "project",
	"license" : "MIT",
	"require" : {
		"php" : ">=5.6",
		"cakephp/cakephp" : "3.7.*",
		"mobiledetect/mobiledetectlib" : "2.*",
		"cakephp/migrations" : "~1.0",
		"cakephp/plugin-installer" : "*",
		"cakephp/debug_kit" : "^3.17.0",
		"aferrandini/phpqrcode" : "1.0.1",
		"setasign/fpdf" : "1.8.1",
		"daoandco/cakephp-dompdf" : "^1.2"
	},
	"require-dev" : {
		"psy/psysh" : "@stable",
		"cakephp/bake" : "~1.1",
		"phpunit/phpunit" : "^5.7",
		"bamarni/composer-bin-plugin" : "^1.2"
	},
	"suggest" : {
		"phpunit/phpunit" : "Allows automated tests to be run without system-wide install.",
		"cakephp/cakephp-codesniffer" : "Allows to check the code against the coding standards used in CakePHP."
	},
	"autoload" : {
		"psr-4" : {
			"App\\" : "src"
		},
		"files" : [
			"vendor/setasign/fpdf/fpdf.php"
		]
	},
	"autoload-dev" : {
		"psr-4" : {
			"App\\Test\\" : "tests",
			"Cake\\Test\\" : "./vendor/cakephp/cakephp/tests"
		}
	},
	"scripts" : {
		"post-install-cmd" : "App\\Console\\Installer::postInstall",
		"post-create-project-cmd" : "App\\Console\\Installer::postInstall",
		"post-autoload-dump" : "Cake\\Composer\\Installer\\PluginInstaller::postAutoloadDump"
	},
	"minimum-stability" : "stable",
	"prefer-stable" : true
}