Skip to content

Commit

Permalink
Merge pull request #43 from wmde/php-8.1
Browse files Browse the repository at this point in the history
Make dependencies compatible with PHP 8.1
  • Loading branch information
gbirke authored May 30, 2022
2 parents 4ece88c + 3c6bed8 commit 3b88ab0
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 7 deletions.
11 changes: 8 additions & 3 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,16 +7,16 @@

"doctrine/orm": "~2.7",
"gedmo/doctrine-extensions": "^3.0",
"psr/log": "~1.0",
"psr/log": "^1.0|^2.0|^3.0",

"wmde/email-address": "~1.0",
"wmde/fun-validators": "~4.0"
},
"require-dev": {
"symfony/cache": "^5.3",
"phpunit/phpunit": "~9.5.1",
"wmde/fundraising-phpcs": "~3.0",
"phpstan/phpstan": "~1.0"
"wmde/fundraising-phpcs": "~7.0",
"phpstan/phpstan": "~1.7"
},
"repositories": [
{
Expand Down Expand Up @@ -44,5 +44,10 @@
"branch-alias": {
"dev-master": "0.1.x-dev"
}
},
"config": {
"allow-plugins": {
"composer/package-versions-deprecated": true
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@
namespace WMDE\Fundraising\SubscriptionContext\Tests\Integration\DataAccess;

use Doctrine\ORM\EntityManager;
use Doctrine\ORM\EntityRepository;
use Doctrine\ORM\ORMException;
use Doctrine\Persistence\ObjectRepository;
use PHPUnit\Framework\TestCase;
Expand All @@ -16,9 +15,6 @@

/**
* @covers \WMDE\Fundraising\SubscriptionContext\DataAccess\DoctrineSubscriptionRepository
*
* @license GPL-2.0-or-later
* @author Gabriel Birke < [email protected] >
*/
class DoctrineSubscriptionRepositoryTest extends TestCase {

Expand Down

0 comments on commit 3b88ab0

Please sign in to comment.