Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
Add information about new CLI options.
  • Loading branch information
chrisdicarlo authored Oct 7, 2024
1 parent be78dd2 commit 04d694a
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,21 @@ The command will scan your Php code under `app` and your Blade views under `reso

![Sample Output](output-sample.png)

### Disabling progress

To disable progress bars (e.g. in CI), pass the `--no-progress` flag when running the command:
```bash
php artisan config:check --no-progress
```

### Specifying the file type to check

To skip checking of Php or Blade files, pass `--no-php` or `--no-blade` respectively:
```bash
php artisan config:check --no-php
php artisan config:check --no-blade
```

## Testing

```bash
Expand Down

0 comments on commit 04d694a

Please sign in to comment.