Skip to content

Commit 02daca5

Browse files
committed
Update readme, fix composer.json
1 parent 696e31f commit 02daca5

File tree

2 files changed

+11
-9
lines changed

2 files changed

+11
-9
lines changed

README.md

+11-7
Original file line numberDiff line numberDiff line change
@@ -14,25 +14,29 @@ Adds a notification panel to your Laravel Spark Kiosk, allowing you to send noti
1414

1515
This package comes with predefined views and routes to use with your existing Spark installation.
1616

17-
In order to install into your Spark application:
17+
In order to install the Spark Kiosk Notifications Package into your Spark application:
1818

19-
**1. Add the following to providers array in `config\app.php`**
19+
**1. Add this composer package to your composer.json using the command below**
20+
21+
`composer require vmitchell85/spark-kiosk-notify`
22+
23+
**2. Add the following to providers array in `config\app.php`**
2024

2125
`vmitchell85\SparkKioskNotify\SparkKioskNotifyServiceProvider::class,`
2226

23-
**2. Publish the Spark resources (views, VueJS components):**
27+
**3. Publish the Spark resources (views, VueJS components):**
2428

2529
`php artisan vendor:publish --provider="vmitchell85\SparkKioskNotify\SparkKioskNotifyServiceProvider"`
2630

27-
**3. Add the javascript components to your bootstrap.js file**
31+
**4. Add the javascript components to your bootstrap.js file**
2832

2933
Add `require('./SparkKioskNotify/notifications.js');` to your `resources/assets/js/components/bootstrap.js` file.
3034

31-
**4. Compile the Javascript components**
35+
**5. Compile the Javascript components**
3236

3337
`gulp`
3438

35-
**5. Add the HTML snippets**
39+
**6. Add the HTML snippets**
3640

3741
File: `resources/views/vendor/spark/kiosk.blade.php`
3842

@@ -55,7 +59,7 @@ Inside the `<!-- Tab Panels -->` section, place the code to load the notificatio
5559
</div>
5660
```
5761

58-
**6. Try it out**
62+
**7. Try it out**
5963

6064
Log into your Spark application and access the new notifications tab located at:
6165

composer.json

-2
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,6 @@
1515
}
1616
],
1717
"homepage" : "https://github.com/vmitchell85/spark-kiosk-notify",
18-
"version": "1.0.0",
19-
"minimum-stability": "stable",
2018
"require": {},
2119
"autoload": {
2220
"psr-4" : {

0 commit comments

Comments
 (0)