Skip to content

Commit 5f6c04a

Browse files
Merge pull request #13 from laravel-frontend-presets/master
fix composer
2 parents 422521b + c42e400 commit 5f6c04a

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ After initializing a fresh instance of Laravel (and making all the necessary con
5252
1. `Cd` to your Laravel app
5353
2. Type in your terminal: `composer require laravel/ui`
5454
3. Install this preset via `composer require laravel-frontend-presets/material`. No need to register the service provider. Laravel 9.x & up can auto detect the package.
55-
4. Run `php artisan ui material` command to install the Argon preset. This will install all the necessary assets and also the custom auth views, it will also add the auth route in `routes/web.php`
55+
4. Run `php artisan ui material` command to install the Material preset. This will install all the necessary assets and also the custom auth views, it will also add the auth route in `routes/web.php`
5656
(NOTE: If you run this command several times, be sure to clean up the duplicate Auth entries in routes/web.php)
5757
5. In your terminal run `composer dump-autoload`
5858
6. Run `php artisan migrate:fresh --seed` to create basic users table

composer.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
},
1111
"autoload": {
1212
"psr-4": {
13-
"LaravelFrontendPresets\\ArgonPreset\\": "src/"
13+
"LaravelFrontendPresets\\MaterialPreset\\": "src/"
1414
}
1515
},
1616
"extra": {
@@ -20,4 +20,4 @@
2020
]
2121
}
2222
}
23-
}
23+
}

0 commit comments

Comments
 (0)