Skip to content

Commit

Permalink
update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
juliangut committed Mar 7, 2020
1 parent ef05cf8 commit 899cddb
Show file tree
Hide file tree
Showing 4 changed files with 23 additions and 16 deletions.
6 changes: 6 additions & 0 deletions .phplint.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
path: ./
jobs: 10
cache: .phplint.cache
exclude:
- build
- vendor
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ env:
php:
- 7.2
- 7.3
- 7.4snapshot
- 7.4
- nightly

matrix:
Expand Down
29 changes: 15 additions & 14 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,26 +23,27 @@
"prefer-stable": true,
"require": {
"php": "^7.1",
"phpgears/event": "~0.3.2",
"phpgears/event": "~0.3.3",
"phpgears/identity": "~0.2"
},
"require-dev": {
"brainmaestro/composer-git-hooks": "^2.1",
"friendsofphp/php-cs-fixer": "^2.0",
"brainmaestro/composer-git-hooks": "^2.8",
"friendsofphp/php-cs-fixer": "^2.16",
"hashids/hashids": "^3.0",
"infection/infection": "^0.9",
"infection/infection": "^0.13|^0.15",
"overtrue/phplint": "^1.2",
"pascaldevink/shortuuid": "^2.1",
"phpmd/phpmd": "^2.0",
"phpstan/extension-installer": "^1.0",
"phpstan/phpstan": "~0.11.12",
"phpstan/phpstan-deprecation-rules": "~0.11.2",
"phpstan/phpstan-strict-rules": "~0.11.1",
"phpunit/phpunit": "^7.0|^8.0",
"povils/phpmnd": "^2.0",
"phpmd/phpmd": "^2.8",
"phpstan/extension-installer": "^1.0.3",
"phpstan/phpstan": "^0.12",
"phpstan/phpstan-deprecation-rules": "^0.12",
"phpstan/phpstan-strict-rules": "^0.12",
"phpunit/phpunit": "^7.5|^8.0",
"povils/phpmnd": "^2.1",
"roave/security-advisories": "dev-master",
"sebastian/phpcpd": "^4.0",
"squizlabs/php_codesniffer": "^3.0",
"thecodingmachine/phpstan-strict-rules": "^0.11.2"
"squizlabs/php_codesniffer": "^3.5",
"thecodingmachine/phpstan-strict-rules": "^0.12"
},
"suggest": {
"hashids/hashids": "for hashed UUID based identities",
Expand All @@ -68,7 +69,7 @@
"cghooks": "cghooks",
"post-install-cmd": "cghooks add --ignore-lock",
"post-update-cmd": "cghooks update",
"lint-php": "php -l src && php -l tests",
"lint-php": "phplint --configuration=.phplint.yml",
"lint-phpcs": "phpcs --standard=PSR2 src tests",
"lint-phpcs-fixer": "php-cs-fixer fix --config=.php_cs --dry-run --verbose",
"fix-phpcs": "php-cs-fixer fix --config=.php_cs --verbose",
Expand Down
2 changes: 1 addition & 1 deletion src/EventBehaviour.php
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
trait EventBehaviour
{
/**
* @var \ArrayObject
* @var \ArrayObject<string, Event>|null
*/
private $recordedEvents;

Expand Down

0 comments on commit 899cddb

Please sign in to comment.