Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update .gitignore, adjust test namespaces, update SDK_VERSION and CHANGELOG.md to version 1.1.4 #57

Merged
merged 5 commits into from
Nov 23, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,5 @@
/composer.lock
/.php-cs-fixer.cache
/.phpunit.result.cache
/html-coverage
/html-coverage
/.idea
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,18 @@
# Changelog

## [1.1.5](https://github.com/Open-Pix/php-sdk/compare/v1.1.4...v1.1.5) (2024-11-25)

### Partners Resource

* Partners Resource has been added...

## [1.1.4](https://github.com/Open-Pix/php-sdk/compare/v1.1.3...v1.1.4) (2024-11-19)

### Webhook IPs

* Added a method to retrieve the IPs used by Webhooks to send notifications [#56](https://github.com/woovibr/php-sdk/pull/56)


## [1.1.3](https://github.com/Open-Pix/php-sdk/compare/v1.1.2...v1.1.3) (2024-01-04)


Expand Down
2 changes: 1 addition & 1 deletion src/Client.php
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
class Client
{
// {x-release-please-start-version}
public const SDK_VERSION = "1.1.3";
public const SDK_VERSION = "1.1.5";
// {x-release-please-end}

public const BASE_URI = "https://api.openpix.com.br";
Expand Down
2 changes: 1 addition & 1 deletion tests/Resources/ChargesTest.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

namespace Tests;
namespace Tests\Resources;

use OpenPix\PhpSdk\Request;
use OpenPix\PhpSdk\RequestTransport;
Expand Down
2 changes: 1 addition & 1 deletion tests/Resources/PaymentsTest.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

namespace Tests;
namespace Tests\Resources;

use OpenPix\PhpSdk\Request;
use OpenPix\PhpSdk\RequestTransport;
Expand Down
2 changes: 1 addition & 1 deletion tests/Resources/RefundsTest.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

namespace Tests;
namespace Tests\Resources;

use OpenPix\PhpSdk\Request;
use OpenPix\PhpSdk\RequestTransport;
Expand Down
2 changes: 1 addition & 1 deletion tests/Resources/SubscriptionsTest.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

namespace Tests;
namespace Tests\Resources;

use OpenPix\PhpSdk\Request;
use OpenPix\PhpSdk\RequestTransport;
Expand Down
2 changes: 1 addition & 1 deletion tests/Resources/TransactionsTest.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

namespace Tests;
namespace Tests\Resources;

use DateTimeImmutable;
use OpenPix\PhpSdk\Request;
Expand Down
2 changes: 1 addition & 1 deletion tests/Resources/WebhooksTest.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

namespace Tests;
namespace Tests\Resources;

use OpenPix\PhpSdk\Request;
use OpenPix\PhpSdk\RequestTransport;
Expand Down
Loading