This project manages its dependencies using Composer. Learn more
composer.json 1.67 KiB
	"name": "monday-factory/database-model-generator",
	"type": "library",
	"description": "",
	"keywords": ["MondayFactory", "database", "generator"],
	"homepage": "https://gitlab.mondayfactory.cz/mondayfactory/database-model-generator",
	"license": ["MIT"],
	"support": {
		"issues": "https://gitlab.mondayfactory.cz/mondayfactory/database-model-generator/issues"
	"authors": [
			"name": "Petr Besir Horáček",
			"homepage": "https://mondayfactory.cz"
	"autoload": {
		"psr-4": {
			"MondayFactory\\DatabaseModelGenerator\\": "src"
	"repositories": {
		"code-checker": {
			"type": "vcs",
			"url": "ssh://git@gitlab.mondayfactory.cz:2222/mondayfactory/php-code-checker.git"
		"database-model": {
			"type": "vcs",
			"url": "ssh://git@gitlab.mondayfactory.cz:2222/mondayfactory/database-model.git"
	"require": {
		"php": "^8.0",
	"require-dev": {
	"bin": ["src/bin/database-model-generator"],
	"scripts": {
		"app:phpstan": "vendor/bin/phpstan analyse src -c phpstan.neon --level 7",
		"app:phpcs": "vendor/bin/phpcs --standard=vendor/monday-factory/php-code-checker/ruleset.xml --extensions=php,phpt --tab-width=4 --ignore=temp -sp src",
		"app:phpcbf": "vendor/bin/phpcbf --report=diff --standard=vendor/monday-factory/php-code-checker/ruleset.xml --extensions=php,phpt --tab-width=4 --ignore=temp -p src",
		"app:all": [
			"@app:phpstan",
			"@app:phpcs"