Skip to content

Commit

Permalink
update readme
Browse files Browse the repository at this point in the history
  • Loading branch information
jrmajor committed Feb 24, 2023
1 parent 9451757 commit bb66221
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ return [
* It's recommended to enable this setting in development
* to make it easy to spot mistakes.
*/
'strict' => ! app()->isProduction(),
'strict' => env('APP_ENV', 'production') !== 'production',

/*
* Determines if it should use Unicode isolation marks (FSI, PDI)
Expand All @@ -94,7 +94,7 @@ return [
## Testing

```sh
vendor/bin/phpunit --testdox # Tests
vendor/bin/phpstan analyse # Static analysis
vendor/bin/php-cs-fixer fix # Formatting
vendor/bin/phpunit # Tests
vendor/bin/phpstan analyse # Static analysis
vendor/bin/php-cs-fixer fix # Formatting
```

0 comments on commit bb66221

Please sign in to comment.