Skip to content

Commit 1603370

Browse files
1.2.0 (#2)
* Prevent users from editing super admins * Bump version * Fix isSuper check * Disable debug mode in testing
1 parent b1ff75f commit 1603370

File tree

7 files changed

+1117
-894
lines changed

7 files changed

+1117
-894
lines changed

.editorconfig

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
root = true
2+
3+
[*]
4+
charset = utf-8
5+
end_of_line = lf
6+
indent_size = 2
7+
indent_style = tab
8+
insert_final_newline = true
9+
trim_trailing_whitespace = true
10+
11+
[*.md]
12+
trim_trailing_whitespace = false
13+
14+
[*.{yml,yaml}]
15+
indent_size = 2
16+
indent_style = space
17+
18+
[*.php]
19+
indent_size = 4
20+
indent_style = space
21+
22+
[*.json]
23+
indent_size = 4
24+
indent_style = space

composer.json

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "trendyminds/nerf",
33
"description": "Allows certain admin-only permissions to be reduced in production environments",
4-
"version": "1.0.2",
4+
"version": "1.2.0",
55
"license": "MIT",
66
"autoload": {
77
"psr-4": {
@@ -15,12 +15,14 @@
1515
},
1616
"require": {
1717
"php": "^8.2",
18+
"spatie/laravel-ray": "^1.36",
1819
"statamic/cms": "^5.0"
1920
},
2021
"require-dev": {
22+
"laravel/pint": "^1.16",
2123
"orchestra/testbench": "^9.0",
2224
"pestphp/pest": "^2.34",
23-
"laravel/pint": "^1.16"
25+
"pestphp/pest-plugin-laravel": "^2.4"
2426
},
2527
"config": {
2628
"optimize-autoloader": true,

0 commit comments

Comments
 (0)