annotate composer.json @ 15:f19c023bda04 main-dev

Updated the Controller stub
author Luka Sitas <sitas.luka.97@gmail.com>
date Wed, 26 Feb 2025 19:08:36 -0500
parents 3426c7e91c24
children 19b7a8de0019
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": {
11
3426c7e91c24 Modifying generaters and replacers
luka
parents: 1
diff changeset
12 "laravel/framework": ">=10.3",
3426c7e91c24 Modifying generaters and replacers
luka
parents: 1
diff changeset
13 "doctrine/dbal": "^3.6"
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
14 },
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 "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
16 "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
17 "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
18 "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
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 }
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
21 }
0
329123c41eaf initial commit
luka
parents:
diff changeset
22 }