-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
51 lines (51 loc) · 1.29 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": "markhuot/craft-keystone",
"description": "A modern page builder",
"license": "proprietary",
"type": "craft-plugin",
"minimum-stability": "dev",
"autoload": {
"psr-4": {
"markhuot\\keystone\\": "src/",
"markhuot\\keystone\\tests\\": "tests/"
},
"files": [
"src/helpers/event.php",
"src/helpers/data.php",
"src/helpers/base.php"
]
},
"authors": [
{
"name": "markhuot",
"email": "[email protected]"
}
],
"require-dev": {
"markhuot/craft-pest-core": "dev-main",
"phpstan/phpstan": "^1.10",
"laravel/pint": "^1.13",
"craftcms/craft": "dev-main"
},
"extra": {
"name": "Keystone",
"handle": "keystone",
"changelogUrl": "#",
"class": "markhuot\\keystone\\Keystone"
},
"scripts": {
"post-autoload-dump": ["./bin/post-clone.sh"]
},
"config": {
"allow-plugins": {
"pestphp/pest-plugin": true,
"yiisoft/yii2-composer": true,
"craftcms/plugin-installer": true
}
},
"require": {
"craftcms/cms": "^4.5.7",
"nikic/php-parser": "^4.17",
"sebastian/comparator": "^5.0@dev"
}
}