Skip to content

Commit

Permalink
* Composer update
Browse files Browse the repository at this point in the history
* Fix library name typo in composer.json
  • Loading branch information
nilsteampassnet committed Nov 23, 2024
1 parent 4526a36 commit 260d607
Show file tree
Hide file tree
Showing 72 changed files with 847 additions and 703 deletions.
9 changes: 8 additions & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -126,6 +126,13 @@
"options": {
"symlink": false
}
},
{
"type": "path",
"url": "includes/libraries/teampassclasses/folderservices",
"options": {
"symlink": false
}
}
],
"require": {
Expand All @@ -149,7 +156,7 @@
"teampassclasses/oauth2controller": "dev-master",
"teampassclasses/configmanager": "dev-master",
"teampassclasses/emailservice": "dev-master",
"teampassclasses/FolderServices": "dev-master",
"teampassclasses/folderservices": "dev-master",
"illuminate/contracts": "^10.32",
"illuminate/collections": "^10.48",
"nesbot/carbon": "^2.71",
Expand Down
96 changes: 66 additions & 30 deletions composer.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion includes/config/include.php
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@

define('TP_VERSION', '3.1.2');
define("UPGRADE_MIN_DATE", "1732264740");
define('TP_VERSION_MINOR', '166');
define('TP_VERSION_MINOR', '167');
define('TP_TOOL_NAME', 'Teampass');
define('TP_ONE_DAY_SECONDS', 86400);
define('TP_ONE_WEEK_SECONDS', 604800);
Expand Down
41 changes: 0 additions & 41 deletions vendor/bjeavons/zxcvbn-php/.github/workflows/ci.yml

This file was deleted.

3 changes: 2 additions & 1 deletion vendor/bjeavons/zxcvbn-php/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,8 @@
"require-dev": {
"phpunit/phpunit": "^8.5",
"php-coveralls/php-coveralls": "*",
"squizlabs/php_codesniffer": "3.*"
"squizlabs/php_codesniffer": "3.*",
"phpstan/phpstan": "^2.0"
},
"suggest": {
"ext-gmp": "Required for optimized binomial calculations (also requires PHP >= 7.3)"
Expand Down
5 changes: 5 additions & 0 deletions vendor/bjeavons/zxcvbn-php/phpstan.neon
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
parameters:
level: 0
paths:
- src
- test
5 changes: 1 addition & 4 deletions vendor/bjeavons/zxcvbn-php/src/Matchers/BaseMatch.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@

namespace ZxcvbnPhp\Matchers;

use JetBrains\PhpStorm\ArrayShape;
use ZxcvbnPhp\Math\Binomial;
use ZxcvbnPhp\Scorer;

Expand Down Expand Up @@ -48,10 +47,8 @@ public function __construct(string $password, int $begin, int $end, string $toke
*
* @param bool $isSoleMatch
* Whether this is the only match in the password
* @return array
* Associative array with warning (string) and suggestions (array of strings)
* @return array{'warning': string, "suggestions": string[]}
*/
#[ArrayShape(['warning' => 'string', 'suggestions' => 'string[]'])]
abstract public function getFeedback(bool $isSoleMatch): array;

/**
Expand Down
Loading

0 comments on commit 260d607

Please sign in to comment.