Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
48 changes: 48 additions & 0 deletions REUSE.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
version = 1

# REUSE compliance for MyDash.
#
# PHP files carry license + copyright metadata via PHPDoc tags
# (@license / @copyright / @author) in the main file docblock per
# ADR-014. This REUSE.toml tells `reuse lint` to accept that instead
# of requiring SPDX-* lines duplicated on every file.
#
# Non-PHP source files (Vue/JS/TS/CSS) still SHOULD carry an SPDX
# header on their first line if they have one; the annotation below
# is the fallback for files without a header.

[[annotations]]
path = "**/*.php"
SPDX-FileCopyrightText = "2024 Conduction B.V. <info@conduction.nl>"
SPDX-License-Identifier = "EUPL-1.2"

[[annotations]]
path = [
"**/*.vue",
"**/*.js",
"**/*.ts",
"**/*.css",
"**/*.scss",
"**/*.sh",
]
SPDX-FileCopyrightText = "2024 Conduction B.V. <info@conduction.nl>"
SPDX-License-Identifier = "EUPL-1.2"

# Config / data / generated files — CC0 (same treatment as many
# upstream Nextcloud apps). Adjust if a specific asset warrants a
# different licence.
[[annotations]]
path = [
"**/*.json",
"**/*.yml",
"**/*.yaml",
"**/*.xml",
"**/*.md",
"**/*.toml",
"img/**",
"l10n/**",
"composer.lock",
"package-lock.json",
]
SPDX-FileCopyrightText = "2024 Conduction B.V. <info@conduction.nl>"
SPDX-License-Identifier = "CC0-1.0"
2 changes: 1 addition & 1 deletion appinfo/info.xml
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ Vrij en open source onder de EUPL-1.2-licentie.

<dependencies>
<php min-version="8.1"/>
<nextcloud min-version="28" max-version="33"/>
<nextcloud min-version="28" max-version="34"/>
</dependencies>

<settings>
Expand Down
3 changes: 1 addition & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,7 @@
}
],
"require": {
"php": "^8.1",
"ramsey/uuid": "^4.9"
"php": "^8.1"
},
"require-dev": {
"cyclonedx/cyclonedx-php-composer": "^6.2",
Expand Down
Loading
Loading