view composer.json @ 36:76584181267a ls_dev_2025_09

Got factories working in a basic way, not sure how complex tables will handle it though
author Luka Sitas <sitas.luka.97@gmail.com>
date Sat, 20 Sep 2025 17:14:29 -0400
parents ee8ef14e158d
children
line wrap: on
line source

{
    "name": "wizard/magicforger",
		"version": "1.0.0",
    "description": "Magically makes all your CRUD in a smart and repeatable way.",
    "autoload": {
        "psr-4": {
						"Wizard\\MagicForger\\":"src/"
        }
    },
    "minimum-stability": "stable",
    "require": {
        "laravel/framework": ">=12",
        "doctrine/dbal": "*"
    },
		"extra": {
    	"laravel": {
    	    "providers": [
						"Wizard\\MagicForger\\MagicForgerServiceProvider"
    	    ]
    	}
		}
}