comparison composer.json @ 1:ca36acd2bef2

Have a base going, there is definitly a lot wrong with some of the files and the general structure but overall, it's a starting point
author luka
date Sat, 24 Jun 2023 01:08:01 -0400
parents 329123c41eaf
children 3426c7e91c24
comparison
equal deleted inserted replaced
0:329123c41eaf 1:ca36acd2bef2
2 "name": "wizzard/magicforger", 2 "name": "wizzard/magicforger",
3 "description": "Magically makes all your CRUD in a smart and repeatable way.", 3 "description": "Magically makes all your CRUD in a smart and repeatable way.",
4 "version": "dev-default", 4 "version": "dev-default",
5 "autoload": { 5 "autoload": {
6 "psr-4": { 6 "psr-4": {
7 "Wizzard\\Magicforger\\": "src/" 7 "Wizzard\\MagicForger\\":"src/"
8 } 8 }
9 }, 9 },
10 "minimum-stability": "stable", 10 "minimum-stability": "stable",
11 "require": { 11 "require": {
12 "laravel/framework": ">=10.3" 12 "laravel/framework": ">=10.3"
13 } 13 },
14 "extra": {
15 "laravel": {
16 "providers": [
17 "Wizzard\\MagicForger\\MagicForgerServiceProvider"
18 ]
19 }
20 }
14 } 21 }