-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
60 lines (60 loc) · 1.56 KB
/
Copy pathcomposer.json
File metadata and controls
60 lines (60 loc) · 1.56 KB
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
51
52
53
54
55
56
57
58
59
60
{
"name": "jrrdnx/craft-ip-restrictor",
"description": "Restrict what IP addresses can access the Craft control panel and front-end",
"type": "craft-plugin",
"version": "2.0.0-alpha.1",
"keywords": [
"cms",
"craftcms",
"ip",
"restrict"
],
"license": "MIT",
"authors": [
{
"name": "Jarrod D Nix",
"homepage": "https://jarrodnix.dev/"
}
],
"support": {
"issues": "https://github.com/jrrdnx/craft-ip-restrictor/issues",
"docs": "https://jarrodnix.dev/plugins/ip-restrictor/v2"
},
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"php": "^8.5",
"craftcms/cms": "^6.0.0",
"s1lentium/iptools": "^1.2.0"
},
"require-dev": {
"craftcms/ecs": "dev-main",
"craftcms/phpstan": "dev-main",
"craftcms/rector": "dev-main"
},
"autoload": {
"psr-4": {
"jrrdnx\\iprestrictor\\": "src/"
}
},
"scripts": {
"check-cs": "ecs check --ansi",
"fix-cs": "ecs check --ansi --fix",
"phpstan": "phpstan --memory-limit=1G"
},
"extra": {
"name": "IP Restrictor",
"handle": "ip-restrictor",
"hasCpSettings": true,
"class": "jrrdnx\\iprestrictor\\IpRestrictor",
"documentationUrl": "https://jarrodnix.dev/plugins/ip-restrictor/v2"
},
"config": {
"platform": {
"php": "8.5"
},
"allow-plugins": {
"craftcms/plugin-installer": true
}
}
}