annotate composer.json @ 3:e107504fa22c

New assets related to BS5
author luka
date Mon, 23 Jun 2025 20:20:31 -0400
parents 07e7262a8cce
children 84c75d9d90be
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
07e7262a8cce Initial commit for the framwork base.
luka
parents:
diff changeset
1 {
07e7262a8cce Initial commit for the framwork base.
luka
parents:
diff changeset
2 "name": "wizard/framework",
07e7262a8cce Initial commit for the framwork base.
luka
parents:
diff changeset
3 "version": "1.0.0",
07e7262a8cce Initial commit for the framwork base.
luka
parents:
diff changeset
4 "description": "A reliable and repeatable base framework.",
07e7262a8cce Initial commit for the framwork base.
luka
parents:
diff changeset
5 "autoload": {
07e7262a8cce Initial commit for the framwork base.
luka
parents:
diff changeset
6 "psr-4": {
07e7262a8cce Initial commit for the framwork base.
luka
parents:
diff changeset
7 "Wizard\\Framework\\":"src/"
07e7262a8cce Initial commit for the framwork base.
luka
parents:
diff changeset
8 }
07e7262a8cce Initial commit for the framwork base.
luka
parents:
diff changeset
9 },
07e7262a8cce Initial commit for the framwork base.
luka
parents:
diff changeset
10 "minimum-stability": "stable",
07e7262a8cce Initial commit for the framwork base.
luka
parents:
diff changeset
11 "require": {
07e7262a8cce Initial commit for the framwork base.
luka
parents:
diff changeset
12 "laravel/framework": ">=12",
07e7262a8cce Initial commit for the framwork base.
luka
parents:
diff changeset
13 "doctrine/dbal": "*"
07e7262a8cce Initial commit for the framwork base.
luka
parents:
diff changeset
14 },
07e7262a8cce Initial commit for the framwork base.
luka
parents:
diff changeset
15 "extra": {
07e7262a8cce Initial commit for the framwork base.
luka
parents:
diff changeset
16 "laravel": {
07e7262a8cce Initial commit for the framwork base.
luka
parents:
diff changeset
17 "providers": [
07e7262a8cce Initial commit for the framwork base.
luka
parents:
diff changeset
18 "Wizard\\Framework\\FrameworkServiceProvider"
07e7262a8cce Initial commit for the framwork base.
luka
parents:
diff changeset
19 ]
07e7262a8cce Initial commit for the framwork base.
luka
parents:
diff changeset
20 }
07e7262a8cce Initial commit for the framwork base.
luka
parents:
diff changeset
21 }
07e7262a8cce Initial commit for the framwork base.
luka
parents:
diff changeset
22 }