Skip to content

Commit c394120

Browse files
authored
Merge pull request #881 from nextcloud/backport/879/stable31
[stable31] Upgrade psalm to version 6
2 parents 7bfabc6 + a9a7ac8 commit c394120

File tree

14 files changed

+3183
-3915
lines changed

14 files changed

+3183
-3915
lines changed

.github/dependabot.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,11 @@
33
version: 2
44
updates:
55
- package-ecosystem: composer
6-
directory: "/"
6+
directories:
7+
- /
8+
- /vendor-bin/cs-fixer
9+
- /vendor-bin/phpunit
10+
- /vendor-bin/psalm
711
schedule:
812
interval: weekly
913
day: saturday

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,10 @@
22
# SPDX-License-Identifier: AGPL-3.0-or-later
33
.idea
44
*.iml
5-
/vendor/
5+
vendor/
66
/build/
77
node_modules/
88
/.php_cs.cache
99
js/*hot-update.*
1010
/.php-cs-fixer.cache
11+
.phpunit.result.cache

.nextcloudignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@
1414
/package.json
1515
/src/
1616
/tests
17+
/vendor-bin
1718
/node_modules
1819
/phpunit.xml
1920
/phpunit.integration.xml

REUSE.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,13 +12,13 @@ SPDX-FileCopyrightText = "2022-2024 Nextcloud translators"
1212
SPDX-License-Identifier = "AGPL-3.0-or-later"
1313

1414
[[annotations]]
15-
path = [".tx/config", "composer.json", "composer.lock", "package-lock.json", "package.json"]
15+
path = [".tx/config", "composer.json", "composer.lock", "package-lock.json", "package.json", "tests/psalm-baseline.xml"]
1616
precedence = "aggregate"
1717
SPDX-FileCopyrightText = "2022 Nextcloud GmbH and Nextcloud contributors"
1818
SPDX-License-Identifier = "AGPL-3.0-or-later"
1919

2020
[[annotations]]
21-
path = ["vendor-bin/cs-fixer/composer.json", "vendor-bin/cs-fixer/composer.lock", "vendor-bin/psalm/composer.json", "vendor-bin/psalm/composer.lock"]
21+
path = ["vendor-bin/cs-fixer/composer.json", "vendor-bin/cs-fixer/composer.lock", "vendor-bin/phpunit/composer.json", "vendor-bin/phpunit/composer.lock", "vendor-bin/psalm/composer.json", "vendor-bin/psalm/composer.lock"]
2222
precedence = "aggregate"
2323
SPDX-FileCopyrightText = "2024 Nextcloud GmbH and Nextcloud contributors"
2424
SPDX-License-Identifier = "AGPL-3.0-or-later"

composer.json

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,6 @@
3232
}
3333
},
3434
"require-dev": {
35-
"phpunit/phpunit": "^9.5",
36-
"vimeo/psalm": "^5.6",
3735
"doctrine/dbal": "^3",
3836
"deepdiver/zipstreamer": "^2.0",
3937
"nextcloud/ocp": "dev-stable31",

0 commit comments

Comments
 (0)