Skip to content

Commit

Permalink
Merge pull request #1 from inxy-payments/v0.0.1
Browse files Browse the repository at this point in the history
add signature sdk
  • Loading branch information
apvalkov committed May 23, 2024
2 parents c2e5b0a + a8d315a commit ffa73a9
Show file tree
Hide file tree
Showing 18 changed files with 2,260 additions and 1 deletion.
30 changes: 30 additions & 0 deletions .github/workflows/tests.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
name: Run PHPUnit Tests

on:
pull_request:
branches: [ "master" ]

jobs:
run_tests:
name: Run PHPUnit Tests
runs-on: ubuntu-latest

strategy:
matrix:
php_version: [ 8.0 ]
branch: [ master ]

steps:
- name: Checkout code
uses: actions/checkout@v4

- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php_version }}

- name: Install Composer dependencies
run: composer install -q --no-scripts --prefer-dist

- name: Run PHPUnit tests
run: vendor/bin/phpunit tests
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# inxy-payments/signature-sdk-php Documentation
# Documentation

## Introduction

Expand Down
29 changes: 29 additions & 0 deletions composer.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
{
"name": "inxy-payments/signature-sdk-php",
"description": "Signature SDK",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "apvalkov",
"email": "a.valkov@inxy.com"
}
],
"autoload": {
"psr-4": {
"INXY\\Payments\\Signature\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"INXY\\Payments\\Signature\\Tests\\": "tests/"
}
},
"require": {
"php": "^8.0",
"ext-openssl": "*"
},
"require-dev": {
"phpunit/phpunit": "^9"
}
}
Loading

0 comments on commit ffa73a9

Please sign in to comment.