{
	"name": "kitloong/laravel-migrations-generator",
	"description": "Generates Laravel Migrations from an existing database",
	"keywords": ["laravel", "lumen", "migration", "generator", "migrations", "artisan"],
	"license": "MIT",
	"authors": [
		{
			"name": "Kit Loong",
			"email": "kitloong1008@gmail.com"
		}
	],
	"require": {
		"php": ">=7.1.3",
		"illuminate/support": "^5.6|^6.0|^7.0|^8.0",
		"doctrine/dbal": "~2.4|^3.0"
	},
    "require-dev": {
        "orchestra/testbench": "^3.6|^4.0|^5.0|^6.0",
        "squizlabs/php_codesniffer": "^3.5",
		"mockery/mockery": "^1.0",
        "ext-pdo": "*"
    },
	"autoload": {
		"psr-4": {
            "KitLoong\\MigrationsGenerator\\": "src/KitLoong/MigrationsGenerator",
			"Xethron\\MigrationsGenerator\\": "src/Xethron/MigrationsGenerator",
			"Way\\Generators\\": "src/Way/Generators"
		}
	},
	"autoload-dev": {
		"psr-4": {
			"Tests\\": "tests/"
		}
	},
	"extra": {
		"laravel": {
			"providers": [
				"KitLoong\\MigrationsGenerator\\MigrationsGeneratorServiceProvider"
			]
		}
	},
    "minimum-stability": "dev",
    "prefer-stable": true,
    "scripts": {
        "action-env-setup": [
            "@php -r \"file_exists('.env') || copy('.env.action', '.env');\""
        ]
    }
}
