Mercurial > packages > auth
diff composer.json @ 0:90e38de8f2ba
Initial Commit
| author | luka |
|---|---|
| date | Wed, 13 Aug 2025 22:17:20 -0400 |
| parents | |
| children | a2a3059de103 |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/composer.json Wed Aug 13 22:17:20 2025 -0400 @@ -0,0 +1,40 @@ +{ + "name": "wizzard/auth", + "description": "Minimal Laravel authentication scaffolding with Blade and Bootstrap.", + "keywords": ["wizard", "auth"], + "license": "MIT", + "authors": [ + { + } + ], + "require": { + "php": "^8.2.0", + "illuminate/console": "^11.0|^12.0", + "illuminate/filesystem": "^11.0|^12.0", + "illuminate/support": "^11.0|^12.0", + "illuminate/validation": "^11.0|^12.0", + "symfony/console": "^7.0" + }, + "require-dev": { + "laravel/framework": "^11.0|^12.0", + "orchestra/testbench-core": "^9.0|^10.0", + "phpstan/phpstan": "^2.0" + }, + "autoload": { + "psr-4": { + "Laravel\\Breeze\\": "src/" + } + }, + "extra": { + "laravel": { + "providers": [ + "Wizard\\Auth\\AuthServiceProvider" + ] + } + }, + "config": { + "sort-packages": true + }, + "minimum-stability": "dev", + "prefer-stable": true +}
