-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
47 lines (47 loc) · 1.34 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
{
"name": "putyourlightson/craft-datastar",
"description": "A real-time, template-driven hypermedia framework for Craft.",
"version": "1.0.0-beta.2",
"type": "craft-plugin",
"license": "mit",
"require": {
"php": "^8.2",
"craftcms/cms": "^5.0",
"putyourlightson/craft-datastar-module": "^1.0.0-beta.2"
},
"require-dev": {
"craftcms/ecs": "dev-main",
"craftcms/phpstan": "dev-main",
"nystudio107/craft-autocomplete": "^1.12"
},
"autoload": {
"psr-4": {
"putyourlightson\\datastar\\plugin\\": "src/"
}
},
"extra": {
"handle": "datastar",
"name": "Datastar",
"developer": "PutYourLightsOn",
"developerUrl": "https://putyourlightson.com/",
"documentationUrl": "https://putyourlightson.com/plugins/datastar",
"changelogUrl": "https://raw.githubusercontent.com/putyourlightson/craft-datastar/develop/CHANGELOG.md",
"class": "putyourlightson\\datastar\\plugin\\Plugin"
},
"scripts": {
"check-cs": "ecs check --ansi",
"fix-cs": "ecs check --ansi --fix",
"phpstan": "phpstan --memory-limit=1G"
},
"config": {
"allow-plugins": {
"craftcms/plugin-installer": true,
"pestphp/pest-plugin": true,
"yiisoft/yii2-composer": true
},
"optimize-autoloader": true,
"sort-packages": true
},
"minimum-stability": "alpha",
"prefer-stable": true
}