-
Notifications
You must be signed in to change notification settings - Fork 63
/
composer.json
71 lines (71 loc) · 1.77 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
71
{
"name": "spicyweb/craft-neo",
"description": "A Matrix-like field type with block hierarchy",
"version": "5.2.15",
"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/5.2.15/README.md",
"rss": "https://github.com/spicywebau/craft-neo/commits/5.x.atom"
},
"require": {
"craftcms/cms": "^5.3.0",
"php": "^8.2"
},
"autoload": {
"psr-4": {
"benf\\neo\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"spicyweb\\neotests\\": "tests/"
}
},
"extra": {
"handle": "neo",
"name": "Neo",
"schemaVersion": "5.1.0.1",
"class": "benf\\neo\\Plugin",
"changelogUrl": "https://github.com/spicywebau/craft-neo/blob/5.x/CHANGELOG.md",
"downloadUrl": "https://github.com/spicywebau/craft-neo/archive/refs/tags/5.2.15.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": "^5.0.11",
"codeception/module-asserts": "^3.0.0",
"codeception/module-phpbrowser": "^3.0.0",
"codeception/module-rest": "^3.3.2",
"codeception/module-yii2": "^1.1.9",
"vlucas/phpdotenv": "^5.0"
},
"scripts": {
"check-cs": "ecs check --ansi",
"fix-cs": "ecs check --ansi --fix"
}
}