forked from Fuseteam/user_backend_sql_raw
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
37 lines (37 loc) · 783 Bytes
/
composer.json
File metadata and controls
37 lines (37 loc) · 783 Bytes
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
{
"name": "ecommunities/user_backend_sql_raw",
"description": "User management and authentication for Nextcloud through arbitrary SQL queries",
"type": "project",
"license": "AGPL-3.0-or-later",
"authors": [
{
"name": "Kevin Farley",
"email": "support@ecms.io"
},
{
"name": "Alexey Abel",
"email": "dev@abelonline.de"
}
],
"homepage": "https://github.com/eCommunities/user_backend_sql_raw",
"support": {
"issues": "https://github.com/eCommunities/user_backend_sql_raw/issues"
},
"autoload": {
"psr-4": {
"OCA\\UserBackendSqlRaw\\": "lib/"
}
},
"autoload-dev": {
"psr-4": {
"OCA\\UserBackendSqlRaw\\Tests\\": "tests/"
}
},
"require": {
"php": ">=8.1 <8.5"
},
"require-dev": {
"php": ">=8.1 <8.5",
"phpunit/phpunit": "^9"
}
}