Skip to content

Commit 77774a7

Browse files
author
Alcides Ramos
committed
feat: update dependencies
1 parent aff104d commit 77774a7

4 files changed

Lines changed: 857 additions & 168 deletions

File tree

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,4 @@
11
vendor/*
2+
.idea
3+
.phpunit.result.cache
24
.coverage

composer.json

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,7 @@
3838
}
3939
},
4040
"require-dev": {
41+
"brianium/paratest": "^7.8",
4142
"nunomaduro/mock-final-classes": "^1.2",
4243
"php-parallel-lint/php-console-highlighter": "^1.0",
4344
"php-parallel-lint/php-parallel-lint": "^1.3",
@@ -54,7 +55,10 @@
5455
"fix-style": "phpcbf -p --colors --standard=phpcs.xml app/ tests/",
5556
"phpstan": "phpstan analyse --ansi --memory-limit=1G --configuration=phpstan.neon",
5657
"phpmd": "phpmd app/,tests/ ansi cleancode,codesize,controversial,design,naming,unusedcode",
57-
"tests": "XDEBUG_MODE=off phpunit --configuration phpunit.xml --coverage-text --colors --testdox --order-by=random --random-order-seed=$(head -200 /dev/urandom | cksum | cut -f1 -d \" \")"
58+
"test": "XDEBUG_MODE=off phpunit --colors --testdox --order-by=random --random-order-seed=$(head -200 /dev/urandom | cksum | cut -f1 -d \" \")",
59+
"coverage": "XDEBUG_MODE=coverage phpunit --colors --coverage-html=.coverage --coverage-text --testdox --order-by=random --random-order-seed=$(head -200 /dev/urandom | cksum | cut -f1 -d \" \")",
60+
"paratest": "XDEBUG_MODE=off paratest --colors --order-by=random --random-order-seed=$(head -200 /dev/urandom | cksum | cut -f1 -d \" \")",
61+
"paracoverage": "XDEBUG_MODE=coverage paratest --colors --coverage-html=.coverage --coverage-text --order-by=random --random-order-seed=$(head -200 /dev/urandom | cksum | cut -f1 -d \" \")"
5862
},
5963
"minimum-stability": "stable",
6064
"prefer-stable": true

0 commit comments

Comments
 (0)