Skip to content
This repository has been archived by the owner on Mar 4, 2022. It is now read-only.

Commit

Permalink
Documentation update
Browse files Browse the repository at this point in the history
  • Loading branch information
rsaestrela committed Feb 3, 2022
1 parent 37af894 commit 895a6c4
Show file tree
Hide file tree
Showing 6 changed files with 13 additions and 48 deletions.
7 changes: 1 addition & 6 deletions .github/workflows/build-release.yml
Original file line number Diff line number Diff line change
@@ -1,11 +1,6 @@
name: build-release
on:
push:
branches:
- main
paths:
- version.json

workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
Expand Down
12 changes: 7 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,20 +1,22 @@
# Checkout.com PHP SDK
# Checkout.com PHP SDK beta

![build-status](https://github.com/checkout/checkout-sdk-php-beta/workflows/build-main/badge.svg)
[![GitHub license](https://img.shields.io/github/license/checkout/checkout-sdk-php-beta.svg)](https://github.com/checkout/checkout-sdk-php-beta/blob/master/LICENSE.md)
This is a temporary Checkout PHP SDK project that will be archived and transferred to the [official repository](https://github.com/checkout/checkout-sdk-php) once it reaches stable.

![build-main](https://github.com/checkout/checkout-sdk-php-beta/workflows/build-main/badge.svg)
[![GitHub license](https://img.shields.io/github/license/checkout/checkout-sdk-php-beta.svg)](https://github.com/checkout/checkout-sdk-php-beta/blob/main/LICENSE.md)
[![GitHub release](https://img.shields.io/github/release/checkout/checkout-sdk-php-beta.svg)](https://GitHub.com/checkout/checkout-sdk-php-beta/releases/)

## Getting started

Packages and sources are available from [Packagist](https://packagist.org/packages/checkout/checkout-sdk-php).
Packages and sources are available from [Packagist](https://packagist.org/packages/checkout/checkout-sdk-php-beta).

#### Composer

```json

"require": {
"php": ">=7.4",
"checkout/checkout-sdk-php": "2.0.0-beta1"
"checkout/checkout-sdk-php-beta": "2.0.0-beta1"
}
```

Expand Down
4 changes: 2 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "checkout/checkout-sdk-php",
"name": "checkout/checkout-sdk-php-beta",
"description": "Checkout.com SDK for PHP",
"homepage": "https://github.com/checkout/checkout-sdk-php-beta",
"type": "library",
Expand All @@ -21,7 +21,7 @@
"authors": [
{
"name": "Checkout.com",
"homepage": "https://github.com/checkout/checkout-sdk-php/graphs/contributors",
"homepage": "https://github.com/checkout/checkout-sdk-php-beta/graphs/contributors",
"email": "integrations@checkout.com"
}
],
Expand Down
2 changes: 1 addition & 1 deletion phpunit.xml.dist
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
</include>
</coverage>
<testsuites>
<testsuite name="checkout-sdk-php Test Suite">
<testsuite name="checkout-sdk-php-beta Test Suite">
<directory>./test/Checkout/</directory>
</testsuite>
</testsuites>
Expand Down
34 changes: 0 additions & 34 deletions phpunit.xml.dist.bak

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,8 @@ public function shouldFullCaptureCardPayment(): void
*/
public function shouldPartiallyCaptureCardPayment(): void
{

$this->markTestSkipped("unstable");
$paymentResponse = $this->makeCardPayment();

$captureRequest = new CaptureRequest();
Expand Down

0 comments on commit 895a6c4

Please sign in to comment.