-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
44 lines (44 loc) · 855 Bytes
/
Copy pathcomposer.json
File metadata and controls
44 lines (44 loc) · 855 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
38
39
40
41
42
43
44
{
"name": "nextcloud/flashcards",
"description": "Create your own flashcards on Nextcloud and optimize your learning experience.",
"license": "AGPL-3.0-or-later",
"authors": [
{
"name": "Elizabeth Danzberger",
"email": "elizabeth@elzody.dev"
}
],
"autoload": {
"psr-4": {
"OCA\\Flashcards\\": "lib/"
}
},
"extra": {
"bamarni-bin": {
"bin-links": true,
"forward-command": true
}
},
"scripts": {
"fmt": "npx prettier --write .",
"lint": "vendor/bin/phplint lib/"
},
"require": {
"php": "^8.2",
"nextcloud/ocp": "dev-master"
},
"require-dev": {
"bamarni/composer-bin-plugin": "^1.9",
"roave/security-advisories": "dev-latest"
},
"config": {
"allow-plugins": {
"bamarni/composer-bin-plugin": true
},
"optimize-autoloader": true,
"sort-packages": true,
"platform": {
"php": "8.2"
}
}
}