Skip to content

Commit

Permalink
Changed the requirements for the PHP version and removed declare stri…
Browse files Browse the repository at this point in the history
…ct types
  • Loading branch information
Stilch committed Feb 23, 2022
1 parent 54df5d4 commit 641e9f8
Show file tree
Hide file tree
Showing 8 changed files with 2 additions and 16 deletions.
4 changes: 2 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,11 @@
"authors": [
{
"name": "PHP-FIG",
"homepage": "http://www.php-fig.org/"
"homepage": "https://www.php-fig.org/"
}
],
"require": {
"php": ">=7.2.0"
"php": "^7.2.0 || ^8.0.0"
},
"autoload": {
"psr-4": {
Expand Down
2 changes: 0 additions & 2 deletions src/MessageInterface.php
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
<?php

declare(strict_types=1);

namespace Psr\Http\Message;

/**
Expand Down
2 changes: 0 additions & 2 deletions src/RequestInterface.php
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
<?php

declare(strict_types=1);

namespace Psr\Http\Message;

/**
Expand Down
2 changes: 0 additions & 2 deletions src/ResponseInterface.php
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
<?php

declare(strict_types=1);

namespace Psr\Http\Message;

/**
Expand Down
2 changes: 0 additions & 2 deletions src/ServerRequestInterface.php
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
<?php

declare(strict_types=1);

namespace Psr\Http\Message;

/**
Expand Down
2 changes: 0 additions & 2 deletions src/StreamInterface.php
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
<?php

declare(strict_types=1);

namespace Psr\Http\Message;

/**
Expand Down
2 changes: 0 additions & 2 deletions src/UploadedFileInterface.php
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
<?php

declare(strict_types=1);

namespace Psr\Http\Message;

/**
Expand Down
2 changes: 0 additions & 2 deletions src/UriInterface.php
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
<?php

declare(strict_types=1);

namespace Psr\Http\Message;

/**
Expand Down

0 comments on commit 641e9f8

Please sign in to comment.