Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 097deb9

Browse files
author
DKravtsov
committedNov 21, 2021
updated packages
1 parent 1e529a8 commit 097deb9

File tree

13 files changed

+1004
-831
lines changed

13 files changed

+1004
-831
lines changed
 

‎app/Exceptions/Handler.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,14 +12,14 @@ class Handler extends ExceptionHandler
1212
/**
1313
* A list of the exception types that are not reported.
1414
*
15-
* @var array
15+
* @var string[]
1616
*/
1717
protected $dontReport = [];
1818

1919
/**
2020
* A list of the inputs that are never flashed for validation exceptions.
2121
*
22-
* @var array
22+
* @var string[]
2323
*/
2424
protected $dontFlash = [
2525
'current_password',

‎app/Models/User.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ class User extends Authenticatable
1818
/**
1919
* The attributes that are mass assignable.
2020
*
21-
* @var array
21+
* @var string[]
2222
*/
2323
protected $fillable = [
2424
'name',

‎composer.json

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@
3939
"require-dev": {
4040
"bamarni/composer-bin-plugin": "^1.4",
4141
"barryvdh/laravel-ide-helper": "^2.10",
42-
"ergebnis/composer-normalize": "^2.13",
42+
"ergebnis/composer-normalize": "^2.15",
4343
"facade/ignition": "^2.5",
4444
"fakerphp/faker": "^1.9",
4545
"laravel/sail": "^1.0",
@@ -84,10 +84,7 @@
8484
"PHPMD\\": "tools/06_phpmd/vendor/phpmd/phpmd/src/bin",
8585
"PhpCsFixer\\": "tools/03_ecs/vendor/symplify/easy-coding-standard/vendor/friendsofphp/php-cs-fixer/src",
8686
"Symplify\\CodingStandard\\": "tools/03_ecs/vendor/symplify/easy-coding-standard/vendor/symplify/coding-standard/src",
87-
"Symplify\\RuleDocGenerator\\": "tools/03_ecs/vendor/symplify/easy-coding-standard/vendor/symplify/rule-doc-generator-contracts/src",
88-
"PHPStan\\PhpDoc\\PHPUnit\\": "tools/02_phpstan/vendor/phpstan/phpstan-phpunit/src/PhpDoc/PHPUnit",
89-
"PHPStan\\Rules\\PHPUnit\\": "tools/02_phpstan/vendor/phpstan/phpstan-phpunit/src/Rules/PHPUnit",
90-
"PHPStan\\Type\\PHPUnit\\": "tools/02_phpstan/vendor/phpstan/phpstan-phpunit/src/Type/PHPUnit"
87+
"Symplify\\RuleDocGenerator\\": "tools/03_ecs/vendor/symplify/easy-coding-standard/vendor/symplify/rule-doc-generator-contracts/src"
9188
}
9289
},
9390
"minimum-stability": "dev",

‎composer.lock

Lines changed: 260 additions & 224 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎tools/01_phpunit/composer.lock

Lines changed: 74 additions & 57 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎tools/02_phpstan/composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"require": {},
55
"require-dev": {
66
"laravel/framework": "^8.54",
7-
"nunomaduro/larastan": "0.7.*",
7+
"nunomaduro/larastan": "1.0.*",
88
"roave/security-advisories": "dev-latest"
99
},
1010
"config": {

‎tools/02_phpstan/composer.lock

Lines changed: 211 additions & 195 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎tools/03_ecs/composer.lock

Lines changed: 46 additions & 29 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎tools/04_php-coveralls/composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"description": "",
44
"require": {},
55
"require-dev": {
6-
"php-coveralls/php-coveralls": "2.4.*",
6+
"php-coveralls/php-coveralls": "2.5.*",
77
"roave/security-advisories": "dev-latest"
88
},
99
"config": {

‎tools/04_php-coveralls/composer.lock

Lines changed: 138 additions & 100 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎tools/05_phpinsights/composer.lock

Lines changed: 141 additions & 123 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎tools/06_phpmd/composer.lock

Lines changed: 75 additions & 58 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎tools/07_phpmetrics/composer.lock

Lines changed: 52 additions & 35 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)
Please sign in to comment.