Skip to content

Commit c71ecc5

Browse files
authored
Merge pull request #32 from weierophinney/fix/bump-php-version-to-fix-dependency-issues
Bump minimum supported PHP version to 7.4 on v2 releases
2 parents 2ae3732 + 6009776 commit c71ecc5

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

composer.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
}
1313
],
1414
"require": {
15-
"php": ">=7.2.0"
15+
"php": ">=7.4.0"
1616
},
1717
"autoload": {
1818
"psr-4": {

src/ContainerExceptionInterface.php

+3-1
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,11 @@
22

33
namespace Psr\Container;
44

5+
use Throwable;
6+
57
/**
68
* Base interface representing a generic exception in a container.
79
*/
8-
interface ContainerExceptionInterface
10+
interface ContainerExceptionInterface extends Throwable
911
{
1012
}

0 commit comments

Comments
 (0)