Skip to content

Commit

Permalink
Merge pull request #501 from mercadopago/release/3.0.3
Browse files Browse the repository at this point in the history
add new release 3.0.3
  • Loading branch information
edmarSoaress authored Feb 23, 2024
2 parents aaaf2f2 + 8924d06 commit 869313f
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,10 @@ First time using Mercado Pago? Create your [Mercado Pago account](https://www.me
2. Install PHP SDK for MercadoPago running in command line:

```
composer require "mercadopago/dx-php:3.0.2"
composer require "mercadopago/dx-php:3.0.3"
```

> You can also run _composer require "mercadopago/dx-php:2.6.1"_ for PHP7.1 or _composer require "mercadopago/dx-php:1.12.5"_ for PHP5.6.
> You can also run _composer require "mercadopago/dx-php:2.6.2"_ for PHP7.1 or _composer require "mercadopago/dx-php:1.12.6"_ for PHP5.6.
3. Copy the access_token in the [credentials](https://www.mercadopago.com/developers/en/docs/your-integrations/credentials) section of the page and replace YOUR_ACCESS_TOKEN with it.

Expand Down
6 changes: 3 additions & 3 deletions src/MercadoPago/MercadoPagoConfig.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
class MercadoPagoConfig
{
/** @var string Mercado Pago SDK version. */
public static string $CURRENT_VERSION = "3.0.2";
public static string $CURRENT_VERSION = "3.0.3";

/** @var string Mercado Pago Base URL */
public static string $BASE_URL = "https://api.mercadopago.com";
Expand All @@ -19,10 +19,10 @@ class MercadoPagoConfig
public static string $PRODUCT_ID = "BC32A7RU643001OI3940";

/** @var string Class constant for local runtime enviroment */
const LOCAL = 'local';
public const LOCAL = 'local';

/** @var string Class constant for server runtime enviroment */
const SERVER = 'server';
public const SERVER = 'server';

/** @var string Actual enviroment the user is running at. Default is SERVER */
private static string $runtime_enviroment = self::SERVER;
Expand Down

0 comments on commit 869313f

Please sign in to comment.