Mercurial > packages > framework
annotate composer.json @ 2:b44434aaa767
Moving around the components.
Made a big step in the right direction with the Builder and named joins being accessible.
| author | luka |
|---|---|
| date | Wed, 18 Jun 2025 22:28:47 -0400 |
| parents | 07e7262a8cce |
| children | 84c75d9d90be |
| rev | line source |
|---|---|
| 0 | 1 { |
| 2 "name": "wizard/framework", | |
| 3 "version": "1.0.0", | |
| 4 "description": "A reliable and repeatable base framework.", | |
| 5 "autoload": { | |
| 6 "psr-4": { | |
| 7 "Wizard\\Framework\\":"src/" | |
| 8 } | |
| 9 }, | |
| 10 "minimum-stability": "stable", | |
| 11 "require": { | |
| 12 "laravel/framework": ">=12", | |
| 13 "doctrine/dbal": "*" | |
| 14 }, | |
| 15 "extra": { | |
| 16 "laravel": { | |
| 17 "providers": [ | |
| 18 "Wizard\\Framework\\FrameworkServiceProvider" | |
| 19 ] | |
| 20 } | |
| 21 } | |
| 22 } |
