Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/polls.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRené Gieling <github@dartcafe.de>2020-09-21 13:34:15 +0300
committerGitHub <noreply@github.com>2020-09-21 13:34:15 +0300
commit517170d327d3db30492e1aec5420b4533b462396 (patch)
treeb867cd24dad9e6924369e1e1dfad0e99826c079d /composer.json
parent954733488fb9b2ef295b4eafca133bad07e153d5 (diff)
Doctrine fix (#1113)
## Satisfy Scrutinizer - Fixing some scrutinizer deprication warnings around doctrine - Removing type constants and usage of Doctrine/DBAL/types/types - Added doctrine/orm to composer dev-dependencies - fixed some minor issues reported by scrutinizer - update phpunit to ^8.5 ## Satisfy Travis-ci - Added PHP 7.4 to Travis-ci - Switched Distribution from Trusty to Xenial due to missing module error on Trusty - Removed and added some configuration entries due to travis-ci hints - removed external coverage test, because we don't have one - switch NC branch to stable19
Diffstat (limited to 'composer.json')
-rw-r--r--composer.json5
1 files changed, 3 insertions, 2 deletions
diff --git a/composer.json b/composer.json
index ec2787ae..95a9bcb5 100644
--- a/composer.json
+++ b/composer.json
@@ -25,10 +25,11 @@
},
"require-dev": {
"christophwurst/nextcloud": "^19.0",
- "phpunit/phpunit": "^8.2",
+ "phpunit/phpunit": "^8.5",
"league/factory-muffin": "^3.0",
"league/factory-muffin-faker": "^2.0",
- "nextcloud/coding-standard": "^0.3.0"
+ "nextcloud/coding-standard": "^0.3.0",
+ "doctrine/orm": "^2.7"
},
"scripts": {
"cs:check": "php-cs-fixer fix --dry-run --diff",