-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
executable file
·51 lines (51 loc) · 1.51 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
51
{
"name": "craftpulse/craft-tick-box",
"description": "Tick box list with search functionality",
"type": "craft-plugin",
"version": "1.1.2",
"keywords": [
"craft",
"cms",
"craftcms",
"craft-plugin",
"tick box list"
],
"support": {
"docs": "https://github.com/percipioglobal/craft-tick-box/blob/master/README.md",
"issues": "https://github.com/percipioglobal/craft-tick-box/issues"
},
"license": "MIT",
"authors": [
{
"name": "percipio.london",
"homepage": "https://percipio.london"
}
],
"require": {
"php": "^8.0.2",
"craftcms/cms": "^4.0.0",
"nystudio107/craft-plugin-vite": "^4.0.0"
},
"require-dev": {
"craftcms/phpstan": "dev-main",
"codeception/codeception": "^5.0",
"vlucas/phpdotenv": "^3.0"
},
"autoload": {
"psr-4": {
"percipiolondon\\checkboxsearchlist\\": "src/"
}
},
"scripts": {
"phpstan": "phpstan --memory-limit=1G"
},
"extra": {
"name": "Tick Box",
"handle": "tick-box",
"developer": "percipio.london",
"developerUrl": "https://percipio.london",
"documentationUrl": "https://github.com/percipioglobal/craft-tick-box/blob/master/README.md",
"changelogUrl": "https://raw.githubusercontent.com/percipioglobal/craft-tick-box/master/CHANGELOG.md",
"class": "percipiolondon\\checkboxsearchlist\\CheckboxSearchList"
}
}