-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
51 lines (51 loc) · 1.66 KB
/
composer.json
File metadata and controls
51 lines (51 loc) · 1.66 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
{
"name": "everydatastore/everydatastorebackend",
"type": "project",
"description": "The EveryDataStoreBackend delivers the core business logic and structural foundation for the EveryDataStore low-code ECM platform.",
"homepage": "https://everydatastore.org",
"license": "BSD-3-Clause",
"require": {
"php": "^8.1",
"silverstripe/recipe-plugin": "^2.1",
"silverstripe/vendor-plugin": "^2.1",
"silverstripe/admin": "^2.4",
"silverstripe/asset-admin": "^2.4",
"silverstripe/versioned": "^2",
"silverstripe/config": "^2.2",
"silverstripe/assets": "^2.3",
"everydatastore/everydefaultfolder":"^1.2.4",
"everydatastore/everynotifytemplate":"^1.3.1",
"everydatastore/everynumbering":"^1.2.4",
"everydatastore/everyrestfulapi":"^1.2.6",
"everydatastore/everytranslator":"^1.2.6",
"everydatastore/everywidget":"^1.2.4",
"mpdf/mpdf": "^8.0",
"silverstripe/siteconfig": "^5.1",
"axllent/silverstripe-version-truncator": "^3.1"
},
"require-dev": {
"phpunit/phpunit": "^9.5"
},
"autoload": {
"psr-4": {
"EveryDataStore\\": "src/"
}
},
"extra": {
"expose": [
"everydatastore/assets",
"everydatastore/templates"
],
"resources-dir": "_resources"
},
"config": {
"process-timeout": 600,
"allow-plugins": {
"composer/installers": true,
"silverstripe/recipe-plugin": true,
"silverstripe/vendor-plugin": true
}
},
"prefer-stable": true,
"minimum-stability": "stable"
}