-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
38 lines (38 loc) · 1.08 KB
/
composer.json
File metadata and controls
38 lines (38 loc) · 1.08 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
{
"name": "dashlink/dashlink",
"description": "Dashboard widget for external website links",
"type": "project",
"license": "AGPL-3.0-or-later",
"authors": [
{
"name": "Your Name",
"email": "your@email.com"
}
],
"require": {
"php": ">=8.1",
"enshrined/svg-sanitize": "^0.19"
},
"require-dev": {
"phpunit/phpunit": "^9.5",
"nextcloud/coding-standard": "^1.0"
},
"autoload": {
"psr-4": {
"OCA\\DashLink\\": "lib/"
}
},
"autoload-dev": {
"psr-4": {
"OCA\\DashLink\\Tests\\": "tests/"
}
},
"scripts": {
"lint": "find . -name \\*.php -not -path './vendor/*' -print0 | xargs -0 -n1 php -l",
"cs:check": "php-cs-fixer fix --dry-run --diff",
"cs:fix": "php-cs-fixer fix",
"test:unit": "phpunit --configuration phpunit.xml --testsuite unit",
"test:integration": "phpunit --configuration phpunit.xml --testsuite integration",
"test": "phpunit --configuration phpunit.xml"
}
}