Skip to content

Commit

Permalink
Bumped versions to reflect guzzle 8 (#3209)
Browse files Browse the repository at this point in the history
  • Loading branch information
GrahamCampbell committed Mar 31, 2024
1 parent 31ec0ff commit f3e0083
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ RUN set -xe \
&& composer require guzzlehttp/guzzle


FROM php:7.3
FROM php:7.4

WORKDIR /guzzle

Expand Down
8 changes: 4 additions & 4 deletions docs/overview.rst
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ You can add Guzzle as a dependency using Composer:

.. code-block:: bash
composer require guzzlehttp/guzzle:^7.0
composer require guzzlehttp/guzzle:^8.0
Alternatively, you can specify Guzzle as a dependency in your project's
existing composer.json file:
Expand All @@ -48,7 +48,7 @@ existing composer.json file:
{
"require": {
"guzzlehttp/guzzle": "^7.0"
"guzzlehttp/guzzle": "^8.0"
}
}
Expand All @@ -66,13 +66,13 @@ Bleeding edge
-------------

During your development, you can keep up with the latest changes on the master
branch by setting the version requirement for Guzzle to ``^7.0@dev``.
branch by setting the version requirement for Guzzle to ``^8.0@dev``.

.. code-block:: js
{
"require": {
"guzzlehttp/guzzle": "^7.0@dev"
"guzzlehttp/guzzle": "^8.0@dev"
}
}
Expand Down
2 changes: 1 addition & 1 deletion src/ClientInterface.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ interface ClientInterface
/**
* The Guzzle major version.
*/
public const MAJOR_VERSION = 7;
public const MAJOR_VERSION = 8;

/**
* Send an HTTP request.
Expand Down

0 comments on commit f3e0083

Please sign in to comment.