Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add php8 check+change dependencies:use psr/container package #1

Open
wants to merge 14 commits into
base: master
Choose a base branch
from
4 changes: 2 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,9 @@
}
},
"require": {
"php": "^7.0",
"php": "^7.0 || ^8.0",
"doctrine/orm": "^2.4",
"container-interop/container-interop": "^1.0"
"psr/container": "^1.0 || ^2.0"
},
"require-dev": {
"facile-it/facile-coding-standard": "dev-master",
Expand Down
2 changes: 1 addition & 1 deletion src/Factory/MetadataConfigFactory.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
namespace Facile\DoctrineDDM\Factory;

use Facile\DoctrineDDM\Configuration;
use Interop\Container\ContainerInterface;
use Psr\Container\ContainerInterface;

class MetadataConfigFactory
{
Expand Down
2 changes: 1 addition & 1 deletion src/Factory/MetadataListenerFactory.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

use Facile\DoctrineDDM\Configuration\Metadata;
use Facile\DoctrineDDM\MetadataListener;
use Interop\Container\ContainerInterface;
use Psr\Container\ContainerInterface;

/**
* Class MetadataListenerFactory.
Expand Down