-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
54 lines (54 loc) · 1.41 KB
/
Copy pathcomposer.json
File metadata and controls
54 lines (54 loc) · 1.41 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
{
"name": "webtigers/tiger-core",
"description": "Tiger platform Core \u2014 kernel + multi-tenant substrate (org/user/org_user/ACL) on TigerZF",
"type": "library",
"keywords": [
"tiger",
"saas",
"multi-tenant",
"zf1",
"tigerzf"
],
"homepage": "https://github.com/WebTigers/tiger-core/",
"license": "BSD-3-Clause",
"require": {
"php": ">=8.1",
"paragonie/sodium_compat": "^1.21 || ^2.0",
"webtigers/tigerzf": "^1.32.2"
},
"suggest": {
"aws/aws-sdk-php": "S3 media storage (Tiger_Media_Storage_S3) + Rekognition moderation + CloudWatch logging",
"google/cloud-storage": "GCS media storage adapter (planned)",
"microsoft/azure-storage-blob": "Azure Blob media storage adapter (planned)"
},
"autoload": {
"psr-0": {
"Tiger_": "library/"
},
"files": [
"functions.php"
]
},
"include-path": [
"library/"
],
"bin": [
"bin/tiger"
],
"config": {
"sort-packages": true
},
"require-dev": {
"phpunit/phpunit": "^10.5 || ^11.5 || ^12.0"
},
"scripts": {
"test": "phpunit",
"test:unit": "phpunit --testsuite unit",
"test:integration": "phpunit --testsuite integration"
},
"autoload-dev": {
"psr-4": {
"Tiger\\Tests\\": "tests/"
}
}
}