diff composer.json @ 0:07e7262a8cce

Initial commit for the framwork base.
author luka
date Mon, 09 Jun 2025 22:38:09 -0400
parents
children 84c75d9d90be
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/composer.json	Mon Jun 09 22:38:09 2025 -0400
@@ -0,0 +1,22 @@
+{
+    "name": "wizard/framework",
+		"version": "1.0.0",
+    "description": "A reliable and repeatable base framework.",
+    "autoload": {
+        "psr-4": {
+						"Wizard\\Framework\\":"src/"
+        }
+    },
+    "minimum-stability": "stable",
+    "require": {
+        "laravel/framework": ">=12",
+        "doctrine/dbal": "*"
+    },
+		"extra": {
+    	"laravel": {
+    	    "providers": [
+						"Wizard\\Framework\\FrameworkServiceProvider"
+    	    ]
+    	}
+		}
+}