-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
41 lines (41 loc) · 997 Bytes
/
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
{
"name": "fromholdio/silverstripe-gridfield-limiter",
"type": "silverstripe-vendormodule",
"description": "Limit number of records that can be added to a SilverStripe GridField",
"license": "BSD-3-Clause",
"keywords": ["silverstripe", "gridfield", "limit"],
"homepage": "https://github.com/fromholdio/silverstripe-gridfield-limiter",
"support": {
"issues": "https://github.com/fromholdio/silverstripe-gridfield-limiter/issues"
},
"authors": [{
"name": "Luke Fromhold",
"homepage": "https://fromhold.io"
}],
"require": {
"php": "^8.1",
"silverstripe/vendor-plugin": "^2.0",
"silverstripe/framework": "^5"
},
"platform": {
"php": "8.1"
},
"autoload": {
"psr-4": {
"Fromholdio\\GridFieldLimiter\\": "src/"
}
},
"extra": {
"expose": [
"client"
]
},
"prefer-stable": true,
"minimum-stability": "dev",
"config": {
"allow-plugins": {
"composer/installers": true,
"silverstripe/vendor-plugin": true
}
}
}