Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(deps): update all non-major dependencies #155

Merged
merged 3 commits into from
Nov 26, 2024
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
2 changes: 1 addition & 1 deletion Dockerfile.Nextcloud
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
ARG NEXTCLOUD_VERSION=30.0.0
ARG NEXTCLOUD_VERSION=30.0.2
ARG INSTALL_XDEBUG=1

FROM nextcloud:${NEXTCLOUD_VERSION}
Expand Down
9 changes: 5 additions & 4 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,12 @@
"coduo/php-humanizer": "^5.0"
},
"require-dev": {
"nextcloud/ocp": "v30.0.0",
"nextcloud/ocp": "v30.0.2",
"psalm/phar": "5.26.1",
"nextcloud/coding-standard": "v1.3.1",
"phpunit/phpunit": "10.5.36",
"symfony/console": "6.4.12"
"nextcloud/coding-standard": "v1.3.2",
"phpunit/phpunit": "10.5.38",
"symfony/console": "6.4.13",
"colinodell/psr-testlogger": "1.0.0"
},
"autoload": {
"psr-4": {
Expand Down
2 changes: 1 addition & 1 deletion tests/unittests/ScanServiceTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
use OCP\SystemTag\TagNotFoundException;
use PHPUnit\Framework\TestCase;
use Psr\Log\LoggerInterface;
use Psr\Log\Test\TestLogger;
use ColinODell\PsrTestLogger\TestLogger;

class ScanServiceTest extends TestCase {
private LoggerInterface $logger;
Expand Down
2 changes: 1 addition & 1 deletion tests/unittests/TagServiceTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
use OCP\SystemTag\ISystemTagManager;
use OCP\SystemTag\ISystemTagObjectMapper;
use PHPUnit\Framework\TestCase;
use Psr\Log\Test\TestLogger;
use ColinODell\PsrTestLogger\TestLogger;

class TagServiceTest extends TestCase {
public static int $OBJECT_ID_1 = 1;
Expand Down
2 changes: 1 addition & 1 deletion tests/unittests/VerdictServiceTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
use OCP\IAppConfig;
use PHPUnit\Framework\TestCase;
use Psr\Log\LoggerInterface;
use Psr\Log\Test\TestLogger;
use ColinODell\PsrTestLogger\TestLogger;
use VaasSdk\Authentication\ResourceOwnerPasswordGrantAuthenticator;

class VerdictServiceTest extends TestCase {
Expand Down
Loading