Skip to content

Commit

Permalink
Merge pull request #32 from weierophinney/fix/bump-php-version-to-fix…
Browse files Browse the repository at this point in the history
…-dependency-issues

Bump minimum supported PHP version to 7.4 on v2 releases
  • Loading branch information
Jean85 authored Nov 5, 2021
2 parents 2ae3732 + 6009776 commit c71ecc5
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
}
],
"require": {
"php": ">=7.2.0"
"php": ">=7.4.0"
},
"autoload": {
"psr-4": {
Expand Down
4 changes: 3 additions & 1 deletion src/ContainerExceptionInterface.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,11 @@

namespace Psr\Container;

use Throwable;

/**
* Base interface representing a generic exception in a container.
*/
interface ContainerExceptionInterface
interface ContainerExceptionInterface extends Throwable
{
}

0 comments on commit c71ecc5

Please sign in to comment.