annotate composer.json @ 33:93adaad3ca65 codex

fixing date fields when null
author Luka Sitas <sitas.luka.97@gmail.com>
date Tue, 09 Sep 2025 15:55:30 -0400
parents ee8ef14e158d
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
329123c41eaf initial commit
luka
parents:
diff changeset
1 {
19
19b7a8de0019 updating namespace from typo
Luka Sitas <sitas.luka.97@gmail.com>
parents: 11
diff changeset
2 "name": "wizard/magicforger",
22
ee8ef14e158d Now able to include through composer
Luka Sitas <sitas.luka.97@gmail.com>
parents: 19
diff changeset
3 "version": "1.0.0",
0
329123c41eaf initial commit
luka
parents:
diff changeset
4 "description": "Magically makes all your CRUD in a smart and repeatable way.",
329123c41eaf initial commit
luka
parents:
diff changeset
5 "autoload": {
329123c41eaf initial commit
luka
parents:
diff changeset
6 "psr-4": {
19
19b7a8de0019 updating namespace from typo
Luka Sitas <sitas.luka.97@gmail.com>
parents: 11
diff changeset
7 "Wizard\\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": {
22
ee8ef14e158d Now able to include through composer
Luka Sitas <sitas.luka.97@gmail.com>
parents: 19
diff changeset
12 "laravel/framework": ">=12",
ee8ef14e158d Now able to include through composer
Luka Sitas <sitas.luka.97@gmail.com>
parents: 19
diff changeset
13 "doctrine/dbal": "*"
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": [
19
19b7a8de0019 updating namespace from typo
Luka Sitas <sitas.luka.97@gmail.com>
parents: 11
diff changeset
18 "Wizard\\MagicForger\\MagicForgerServiceProvider"
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
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 }