-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
47 lines (47 loc) · 1.16 KB
/
composer.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
{
"name": "trendyminds/nerf",
"description": "Allows certain admin-only permissions to be reduced in production environments",
"version": "1.2.0",
"license": "MIT",
"autoload": {
"psr-4": {
"Trendyminds\\Nerf\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Trendyminds\\Nerf\\Tests\\": "tests"
}
},
"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",
"pestphp/pest-plugin-laravel": "^2.4"
},
"config": {
"optimize-autoloader": true,
"preferred-install": "dist",
"sort-packages": true,
"allow-plugins": {
"pixelfear/composer-dist-plugin": true,
"pestphp/pest-plugin": true
}
},
"extra": {
"statamic": {
"name": "Nerf",
"description": "Nerf addon"
},
"laravel": {
"providers": [
"Trendyminds\\Nerf\\ServiceProvider"
]
}
}
}