Skip to content

Commit

Permalink
Fixed and improved readme file
Browse files Browse the repository at this point in the history
  • Loading branch information
aimeos committed Mar 15, 2024
1 parent ae8651f commit fbc25e7
Showing 1 changed file with 5 additions and 7 deletions.
12 changes: 5 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -228,7 +228,7 @@ Then, add these lines to the composer.json of the **Laravel skeleton application
"scripts": {
"post-update-cmd": [
"@php artisan vendor:publish --tag=laravel-assets --ansi --force",
"@php artisan vendor:publish --tag=public --ansi"
"@php artisan vendor:publish --tag=public --ansi",
"\\Aimeos\\Shop\\Composer::join"
],
...
Expand All @@ -243,7 +243,7 @@ In the last step you must now execute these artisan commands to get a working
or updated Aimeos installation:

```bash
php artisan vendor:publish --tag=config --tag=public"
php artisan vendor:publish --tag=config --tag=public
php artisan migrate
php artisan aimeos:setup --option=setup/default/demo:1
```
Expand All @@ -256,12 +256,10 @@ installed, leave out the `--option=setup/default/demo:1` option.
You have to set up one of Laravel's authentication starter kits. Laravel Breeze
is the easiest one but you can also use Jetstream.

### Laravel 9 & 10
```bash
composer require laravel/breeze
php artisan breeze:install
npm install && npm run build
npm install && npm run build # if not executed automatically by the previous command
```

Laravel Breeze will ask you a few questions, the most important one is the type of stack you
Expand Down Expand Up @@ -359,8 +357,8 @@ php artisan serve

Point your browser to the list page of the shop using:

2024.x+: http://127.0.0.1:8000/shop/search
2023.x: http://127.0.0.1:8000/shop
* 2023.x: http://127.0.0.1:8000/shop
* 2024.x+: http://127.0.0.1:8000/shop/search

**Note:** Integrating the Aimeos package adds some routes like `/shop` or `/admin` to your
Laravel installation but the **home page stays untouched!** If you want to add Aimeos to
Expand Down

0 comments on commit fbc25e7

Please sign in to comment.