This repository was archived by the owner on Dec 11, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
58 lines (58 loc) · 1.41 KB
/
composer.json
File metadata and controls
58 lines (58 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
55
56
57
58
{
"name": "sciactive/tilmeld-server",
"description": "Nymph user and group management with access controls.",
"version": "1.2.0",
"time": "2021-01-11",
"type": "library",
"scripts": {
"lint": "phpcs -vs --extensions=php --ignore=vendor/* --runtime-set ignore_warnings_on_exit 1 .",
"format": "phpcbf -vs --extensions=php --ignore=vendor/* --runtime-set ignore_warnings_on_exit 1 ."
},
"keywords": [
"users",
"user management",
"user manager",
"groups",
"group management",
"group manager",
"acl",
"access control",
"nymph"
],
"homepage": "http://tilmeld.org/",
"license": "Apache-2.0",
"authors": [
{
"name": "Hunter Perrin",
"email": "hperrin@gmail.com",
"homepage": "https://github.com/hperrin",
"role": "Developer"
}
],
"support": {
"issues": "https://github.com/sciactive/tilmeld-server/issues",
"wiki": "https://github.com/sciactive/nymph/wiki",
"source": "https://github.com/sciactive/tilmeld-server"
},
"archive": {
"exclude": ["**/.*"]
},
"autoload": {
"psr-0": {
"Tilmeld\\": "src/"
},
"psr-4": {
"Tilmeld\\": "src/"
}
},
"require": {
"sciactive/hookphp": "^2.0",
"sciactive/nymph-server": "^3.3",
"sciactive/umailphp": "^2.4",
"respect/validation": "^1.1",
"lcobucci/jwt": "^3.2"
},
"require-dev": {
"squizlabs/php_codesniffer": "3.*"
}
}