From: =?utf-8?q?David_Pr=C3=A9vot?= <taffit@debian.org>
Date: Sun, 22 Mar 2020 11:07:42 -1000
Subject: Embed interop-container (almost void and already deprecated) copy
 for tests

---
 Interop/Container/ContainerInterface.php           | 15 +++++++++++++++
 Interop/Container/Exception/ContainerException.php | 15 +++++++++++++++
 Interop/Container/Exception/NotFoundException.php  | 15 +++++++++++++++
 3 files changed, 45 insertions(+)
 create mode 100644 Interop/Container/ContainerInterface.php
 create mode 100644 Interop/Container/Exception/ContainerException.php
 create mode 100644 Interop/Container/Exception/NotFoundException.php

diff --git a/Interop/Container/ContainerInterface.php b/Interop/Container/ContainerInterface.php
new file mode 100644
index 0000000..a75468f
--- /dev/null
+++ b/Interop/Container/ContainerInterface.php
@@ -0,0 +1,15 @@
+<?php
+/**
+ * @license http://www.opensource.org/licenses/mit-license.php MIT (see the LICENSE file)
+ */
+
+namespace Interop\Container;
+
+use Psr\Container\ContainerInterface as PsrContainerInterface;
+
+/**
+ * Describes the interface of a container that exposes methods to read its entries.
+ */
+interface ContainerInterface extends PsrContainerInterface
+{
+}
diff --git a/Interop/Container/Exception/ContainerException.php b/Interop/Container/Exception/ContainerException.php
new file mode 100644
index 0000000..3964061
--- /dev/null
+++ b/Interop/Container/Exception/ContainerException.php
@@ -0,0 +1,15 @@
+<?php
+/**
+ * @license http://www.opensource.org/licenses/mit-license.php MIT (see the LICENSE file)
+ */
+
+namespace Interop\Container\Exception;
+
+use Psr\Container\ContainerExceptionInterface as PsrContainerException;
+
+/**
+ * Base interface representing a generic exception in a container.
+ */
+interface ContainerException extends PsrContainerException
+{
+}
diff --git a/Interop/Container/Exception/NotFoundException.php b/Interop/Container/Exception/NotFoundException.php
new file mode 100644
index 0000000..031b3ab
--- /dev/null
+++ b/Interop/Container/Exception/NotFoundException.php
@@ -0,0 +1,15 @@
+<?php
+/**
+ * @license http://www.opensource.org/licenses/mit-license.php MIT (see the LICENSE file)
+ */
+
+namespace Interop\Container\Exception;
+
+use Psr\Container\NotFoundExceptionInterface as PsrNotFoundException;
+
+/**
+ * No entry was found in the container.
+ */
+interface NotFoundException extends ContainerException, PsrNotFoundException
+{
+}
