-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathcomposer.json
More file actions
36 lines (36 loc) · 985 Bytes
/
Copy pathcomposer.json
File metadata and controls
36 lines (36 loc) · 985 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
{
"name": "nextcloud/drawio",
"description": "Diagramming (draw.io) integration for Nextcloud - dev tooling",
"type": "project",
"license": "AGPL-3.0-or-later",
"config": {
"platform": {
"php": "8.2.27"
},
"sort-packages": true
},
"autoload": {
"psr-4": {
"OCA\\Drawio\\": "lib/"
}
},
"autoload-dev": {
"psr-4": {
"OCP\\": "vendor/nextcloud/ocp/OCP"
}
},
"require-dev": {
"guzzlehttp/guzzle": "^7.9",
"nextcloud/ocp": "dev-stable33",
"phpunit/phpunit": "^10.5",
"vimeo/psalm": "^6.0"
},
"scripts": {
"lint": "find lib appinfo templates tests -name \"*.php\" -print0 | xargs -0 -n1 php -l",
"psalm": "psalm --no-cache --threads=1",
"test:unit": "phpunit --testsuite unit",
"test:e2e": "phpunit --testsuite e2e"
},
"minimum-stability": "dev",
"prefer-stable": true
}