annotate composer.json @ 2:cf9993c5c7df

Updated .vimrc for some helper commands. updated the Base Generator Brought the controller generator into the package created an example generator, but it needs some work.
author luka
date Sun, 25 Jun 2023 14:45:15 -0400
parents ca36acd2bef2
children 3426c7e91c24
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
329123c41eaf initial commit
luka
parents:
diff changeset
1 {
329123c41eaf initial commit
luka
parents:
diff changeset
2 "name": "wizzard/magicforger",
329123c41eaf initial commit
luka
parents:
diff changeset
3 "description": "Magically makes all your CRUD in a smart and repeatable way.",
329123c41eaf initial commit
luka
parents:
diff changeset
4 "version": "dev-default",
329123c41eaf initial commit
luka
parents:
diff changeset
5 "autoload": {
329123c41eaf initial commit
luka
parents:
diff changeset
6 "psr-4": {
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
luka
parents: 0
diff changeset
7 "Wizzard\\MagicForger\\":"src/"
0
329123c41eaf initial commit
luka
parents:
diff changeset
8 }
329123c41eaf initial commit
luka
parents:
diff changeset
9 },
329123c41eaf initial commit
luka
parents:
diff changeset
10 "minimum-stability": "stable",
329123c41eaf initial commit
luka
parents:
diff changeset
11 "require": {
329123c41eaf initial commit
luka
parents:
diff changeset
12 "laravel/framework": ">=10.3"
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
luka
parents: 0
diff changeset
13 },
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
luka
parents: 0
diff changeset
14 "extra": {
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
luka
parents: 0
diff changeset
15 "laravel": {
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
luka
parents: 0
diff changeset
16 "providers": [
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
luka
parents: 0
diff changeset
17 "Wizzard\\MagicForger\\MagicForgerServiceProvider"
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
luka
parents: 0
diff changeset
18 ]
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
luka
parents: 0
diff changeset
19 }
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
luka
parents: 0
diff changeset
20 }
0
329123c41eaf initial commit
luka
parents:
diff changeset
21 }