-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
43 lines (43 loc) · 1.18 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
{
"name": "putyourlightson/craft-spark-module",
"description": "A real-time, template-driven hypermedia framework for Craft.",
"version": "1.0.0-alpha.4",
"type": "yii-module",
"license": "mit",
"require": {
"php": "^8.2",
"craftcms/cms": "^5.0",
"putyourlightson/datastar-php": "1.0.3"
},
"require-dev": {
"craftcms/ecs": "dev-main",
"craftcms/phpstan": "dev-main",
"markhuot/craft-pest-core": "^2.0.4",
"nystudio107/craft-autocomplete": "^1.12"
},
"autoload": {
"psr-4": {
"putyourlightson\\spark\\": "src/"
}
},
"scripts": {
"check-cs": "ecs check --ansi",
"fix-cs": "ecs check --ansi --fix",
"phpstan": "phpstan --memory-limit=1G",
"test": "vendor/bin/pest"
},
"config": {
"allow-plugins": {
"craftcms/plugin-installer": true,
"pestphp/pest-plugin": true,
"yiisoft/yii2-composer": true
},
"optimize-autoloader": true,
"sort-packages": true
},
"support": {
"docs": "https://github.com/putyourlightson/craft-spark-module",
"source": "https://github.com/putyourlightson/craft-spark-module",
"issues": "https://github.com/putyourlightson/craft-spark-module/issues"
}
}