forked from spicywebau/craft-neo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
70 lines (70 loc) · 1.72 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "spicyweb/craft-neo",
"description": "A Matrix-like field type that uses existing fields",
"version": "4.0.3",
"type": "craft-plugin",
"keywords": [
"cms",
"craftcms",
"plugin",
"neo",
"matrix",
"field"
],
"license": "proprietary",
"authors": [
{
"name": "Spicy Web",
"homepage": "https://github.com/spicywebau"
}
],
"support": {
"issues": "https://github.com/spicywebau/craft-neo/issues",
"source": "https://github.com/spicywebau/craft-neo",
"docs": "https://github.com/spicywebau/craft-neo/blob/4.0.3/README.md",
"rss": "https://github.com/spicywebau/craft-neo/commits/4.x.atom"
},
"require": {
"craftcms/cms": "^4.5.0",
"php": "^8.0.2"
},
"autoload": {
"psr-4": {
"benf\\neo\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"spicyweb\\neotests\\": "tests/"
}
},
"extra": {
"handle": "neo",
"name": "Neo",
"schemaVersion": "4.0.0",
"class": "benf\\neo\\Plugin",
"changelogUrl": "https://github.com/spicywebau/craft-neo/blob/4.x/CHANGELOG.md",
"downloadUrl": "https://github.com/spicywebau/craft-neo/archive/refs/tags/4.0.3.zip"
},
"config": {
"allow-plugins": {
"yiisoft/yii2-composer": true,
"craftcms/plugin-installer": true
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"require-dev": {
"craftcms/rector": "dev-main",
"craftcms/ecs": "dev-main",
"codeception/codeception": "^4.0",
"codeception/module-phpbrowser": "^1.0.2",
"codeception/module-yii2": "^1.1.5",
"codeception/module-asserts": "*",
"vlucas/phpdotenv": "^3.0"
},
"scripts": {
"check-cs": "ecs check --ansi",
"fix-cs": "ecs check --ansi --fix"
}
}