-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
80 lines (80 loc) · 2.04 KB
/
Copy pathcomposer.json
File metadata and controls
80 lines (80 loc) · 2.04 KB
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
72
73
74
75
76
77
78
79
80
{
"name": "nimbuscms/storefront",
"description": "A public, themed storefront for NimbusCMS: renders the Inventory item master as a shoppable catalog (categories, filter, sort, search, availability), with a cart + checkout via Commerce. An official plugin.",
"type": "nimbuscms-plugin",
"keywords": [
"nimbuscms",
"nimbuscms-plugin",
"storefront",
"shop",
"ecommerce",
"catalog",
"cms"
],
"license": "MIT",
"authors": [
{
"name": "DanMat"
}
],
"require": {
"php": ">=8.2",
"ext-json": "*",
"nimbuscms/nimbus": "dev-main",
"nimbuscms/inventory": "dev-main",
"nimbuscms/commerce": "dev-main"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.95",
"phpstan/phpstan": "^2.2",
"phpunit/phpunit": "^11.0"
},
"repositories": [
{
"type": "vcs",
"url": "https://github.com/NimbusCMS/nimbus"
},
{
"type": "vcs",
"url": "https://github.com/NimbusCMS/plugin-inventory"
},
{
"type": "vcs",
"url": "https://github.com/NimbusCMS/plugin-commerce"
}
],
"autoload": {
"psr-4": {
"NimbusCMS\\Storefront\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"NimbusCMS\\Storefront\\Tests\\": "tests/"
}
},
"extra": {
"nimbus": {
"id": "nimbuscms.storefront",
"plugin": "NimbusCMS\\Storefront\\StorefrontPlugin"
}
},
"scripts": {
"test": "phpunit",
"analyse": "phpstan analyse --memory-limit=512M",
"check": [
"@analyse",
"@test"
],
"format": "php-cs-fixer fix",
"format:check": "php-cs-fixer fix --dry-run --diff"
},
"config": {
"sort-packages": true,
"platform": {
"php": "8.2.0"
}
},
"minimum-stability": "dev",
"prefer-stable": true
}