-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
executable file
·50 lines (50 loc) · 1.13 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
48
49
50
{
"name": "beebmx/kirby-policy",
"version": "1.0.7",
"description": "Kirby Blueprint Policies for Kirby 4",
"license": "MIT",
"type": "kirby-plugin",
"keywords": [
"kirby", "kirby-4", "security", "policy", "policies"
],
"authors": [
{
"name": "Fernando Gutierrez",
"homepage": "https://beeb.mx"
}
],
"require": {
"php": "^8.2",
"getkirby/composer-installer": "^1.1"
},
"require-dev": {
"getkirby/cms": "^4.2",
"laravel/pint": "^1.10",
"pestphp/pest": "^2.0",
"spatie/ray": "^1.40"
},
"config": {
"optimize-autoloader": true,
"preferred-install": "dist",
"sort-packages": true,
"allow-plugins": {
"getkirby/composer-installer": true,
"pestphp/pest-plugin": true
}
},
"autoload": {
"psr-4": {
"Beebmx\\KirbyPolicy\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"scripts": {
"test": "vendor/bin/pest"
},
"minimum-stability": "dev",
"prefer-stable": true
}