Skip to content

Commit d2223db

Browse files
committed
Update readme titles
1 parent da811b6 commit d2223db

File tree

2 files changed

+10
-10
lines changed

2 files changed

+10
-10
lines changed

README.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -9,19 +9,19 @@
99

1010
A beautiful UI for Laravel Artisan commands that provides a command palette interface to search and execute Artisan commands directly from your browser.
1111

12-
## Preview
12+
## 🖼️ Preview
1313

1414
![Preview](./preview.gif)
1515

16-
## Installation
16+
## 📦 Installation
1717

1818
You can install the package via composer:
1919

2020
```bash
2121
composer require laravel-ready/artisan-command-palette-ui
2222
```
2323

24-
## Configuration
24+
## ⚙️ Configuration
2525

2626
Publish the configuration file:
2727

@@ -31,7 +31,7 @@ php artisan vendor:publish --provider="LaravelReady\ArtisanCommandPaletteUI\Arti
3131

3232
This will create a `config/artisan-command-palette-ui.php` file where you can modify the package settings.
3333

34-
## Usage
34+
## 🚀 Usage
3535

3636
After installation, you can access the command palette UI at `/artisan-command-palette` (or the custom route prefix you defined in the config).
3737

@@ -41,32 +41,32 @@ The UI allows you to:
4141
- View command descriptions and signatures
4242
- Execute commands and see their output in real-time
4343

44-
## Security
44+
## 🔒 Security
4545

46-
By default, the command palette is protected by the `web` and `auth` middleware, meaning only authenticated users can access it.
46+
By default, the command palette is protected by the `auth` middleware, meaning only authenticated users can access it.
4747

4848
For additional security:
4949

5050
- The package is disabled in production environments by default (can be enabled in config)
5151
- You can exclude sensitive commands in the config file
5252

53-
## Frontend Development
53+
## 💻 Frontend Development
5454

5555
If you want to modify the frontend assets, you can publish the views:
5656

5757
```bash
5858
php artisan vendor:publish --provider="LaravelReady\ArtisanCommandPaletteUI\ArtisanCommandPaletteUIServiceProvider" --tag="views"
5959
```
6060

61-
## Testing
61+
## 🧪 Testing
6262

6363
To run the test suite, you can use the following command:
6464

6565
```bash
6666
composer test
6767
```
6868

69-
## License
69+
## 📄 License
7070

7171
The MIT License (MIT). Please see [License File](LICENSE.md) for more information.
7272

config/artisan-command-palette-ui.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
'route_prefix' => 'artisan-command-palette',
1515

1616
// Middleware for the command palette routes
17-
'middleware' => [],
17+
'middleware' => ['auth'],
1818

1919
// Commands to exclude from the palette
2020
'excluded_commands' => [

0 commit comments

Comments
 (0)