Skip to content

Commit

Permalink
1.2.0 (#2)
Browse files Browse the repository at this point in the history
* Prevent users from editing super admins

* Bump version

* Fix isSuper check

* Disable debug mode in testing
  • Loading branch information
aaronbushnell authored Jun 26, 2024
1 parent b1ff75f commit 1603370
Show file tree
Hide file tree
Showing 7 changed files with 1,117 additions and 894 deletions.
24 changes: 24 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
root = true

[*]
charset = utf-8
end_of_line = lf
indent_size = 2
indent_style = tab
insert_final_newline = true
trim_trailing_whitespace = true

[*.md]
trim_trailing_whitespace = false

[*.{yml,yaml}]
indent_size = 2
indent_style = space

[*.php]
indent_size = 4
indent_style = space

[*.json]
indent_size = 4
indent_style = space
6 changes: 4 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "trendyminds/nerf",
"description": "Allows certain admin-only permissions to be reduced in production environments",
"version": "1.0.2",
"version": "1.2.0",
"license": "MIT",
"autoload": {
"psr-4": {
Expand All @@ -15,12 +15,14 @@
},
"require": {
"php": "^8.2",
"spatie/laravel-ray": "^1.36",
"statamic/cms": "^5.0"
},
"require-dev": {
"laravel/pint": "^1.16",
"orchestra/testbench": "^9.0",
"pestphp/pest": "^2.34",
"laravel/pint": "^1.16"
"pestphp/pest-plugin-laravel": "^2.4"
},
"config": {
"optimize-autoloader": true,
Expand Down
Loading

0 comments on commit 1603370

Please sign in to comment.