| {
	"name": "gavinggordon/helphp",
	"description": "A PHP CLI package that provides the developer with the means to generate PHP related files, like classes and .ini's, in a variety of different levels of both simplicity and complexity.",
	"license": "MIT",
	"keywords": [
	  	"v1.0.0",
		"php",
		"code-generation",
		"templating",
		"generation",
		"templates",
		"command",
		"CLI",
		"console",
		"helper functions",
		"helpers",
		"simplification",
		"class creation",
		"file creation",
		"psr-4 compliant"
	],
	"authors": [
		{
			"name": "Gavin G Gordon",
			"email": "[email protected] ",
			"homepage": "https://gavingordon.com",
			"role": "Developer"
		}
	],
	"version": "1.0.0",
	"minimum-stability": "dev",
	"homepage": "http://helphp.gavingordon.com",
	"support": {
		"issues": "https://github.com/gavinggordon/helphp/issues",
		"source": "https://github.com/gavinggordon/helphp"
	},
	"repositories": [
		{
			"type": "git",
			"url": "https://github.com/gavinggordon/helphp.git"
		}
	],
	"require": {
		"symfony/console": "^3.2",
		"symfony/filesystem": "^3.2",
		"symfony/dependency-injection": "^3.2",
		"symfony/config": "^3.2",
		"symfony/process": "^3.2",
		"symfony/yaml": "^3.2",
		"pimple/pimple": "~3.0",
		"spatie/array-to-xml": "^2.2"
	},
	"autoload": {
		"psr-4": {
			"GGG\\": "src/"
		}
	},
	"scripts": {
		"post-update-cmd": [
			"GGG\\InitHelper::updateConsolePackage"
		],
		"pre-autoload-dump": [
			"GGG\\InitHelper::initConsolePackage"
		],
		"post-package-install": [
			"GGG\\InitHelper::installConsolePackage"
		]
	}
}
 |