-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
40 lines (40 loc) · 1.06 KB
/
Copy pathcomposer.json
File metadata and controls
40 lines (40 loc) · 1.06 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
{
"name": "nextcloud/files_pointcloudviewer",
"description": "Point Cloud Viewer for Nextcloud",
"type": "nextcloud-app",
"license": "agpl-3.0",
"authors": [
{
"name": "Point Cloud Viewer Team",
"email": "developer@example.com"
}
],
"require": {
"php": "^8.0",
"nextcloud/app_api": "^3.0"
},
"require-dev": {
"phpunit/phpunit": "^9.5",
"nextcloud/coding-standard": "^1.0",
"psr/log": "^1.1"
},
"autoload": {
"psr-4": {
"OCA\\FilesPointCloudViewer\\": "lib/"
}
},
"autoload-dev": {
"psr-4": {
"OCA\\FilesPointCloudViewer\\Tests\\": "tests/"
}
},
"config": {
"optimize-autoloader": true,
"preferred-install": "dist"
},
"scripts": {
"test": "phpunit --configuration tests/phpunit.xml",
"test:unit": "phpunit --configuration tests/phpunit.xml tests/Unit",
"test:coverage": "phpunit --configuration tests/phpunit.xml --coverage-html coverage"
}
}