Skip to content

Commit

Permalink
release(sdk): v2.0.0-beta.1
Browse files Browse the repository at this point in the history
  • Loading branch information
NumaryBot committed Dec 19, 2023
1 parent fa16f3d commit 6c61d3b
Show file tree
Hide file tree
Showing 964 changed files with 23,939 additions and 9,334 deletions.
2 changes: 2 additions & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
# This allows generated code to be indexed correctly
*.php linguist-generated=false
38 changes: 19 additions & 19 deletions .github/workflows/speakeasy_sdk_publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,27 +2,27 @@ name: Publish
"on":
push:
branches:
- main
# paths:
# - RELEASES.md
- release/v*.*.*
- release/v*.*.*-alpha.*
- release/v*.*.*-beta.*
- release/v*.*.*-rc.*version
jobs:
Release:
name: 'Release'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Get version from gen.yaml
id: get_version
uses: mikefarah/yq@master
with:
cmd: yq '.php.version' gen.yaml
- name: Create Release
id: create_release
uses: actions/create-release@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # This token is provided by Actions, you do not need to create your own token
with:
tag_name: ${{ steps.get_version.outputs.result }}
release_name: Release ${{ steps.get_version.outputs.result }}
draft: false
prerelease: false
- uses: actions/checkout@v4
- name: Extract branch name
shell: bash
run: echo "branch=${GITHUB_HEAD_REF:-${GITHUB_REF#refs/heads/release/}}" >> $GITHUB_OUTPUT
id: extract_branch
- name: Create Release
id: create_release
uses: actions/create-release@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # This token is provided by Actions, you do not need to create your own token
with:
tag_name: ${{ steps.extract_branch.outputs.branch }}
release_name: Release ${{ steps.extract_branch.outputs.branch }}
draft: false
prerelease: false
21 changes: 21 additions & 0 deletions LICENSE
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
MIT License

Copyright (c) 2023 Formance, Inc

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
300 changes: 178 additions & 122 deletions README.md

Large diffs are not rendered by default.

11 changes: 6 additions & 5 deletions USAGE.md
Original file line number Diff line number Diff line change
@@ -1,24 +1,25 @@
<!-- Start SDK Example Usage -->


```php
<?php

declare(strict_types=1);
require_once 'vendor/autoload.php';

use \formance\stack\SDK;
use \formance\stack\Models\Shared\Security;
use formance\stack\SDK;

$sdk = SDK::builder()
->build();
$sdk = SDK::builder()->build();

try {
$response = $sdk->getVersions();
$response = $sdk->sdk->getVersions();

if ($response->getVersionsResponse !== null) {
// handle response
}
} catch (Exception $e) {
// handle exception
}

```
<!-- End SDK Example Usage -->
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "formancehq/formance-sdk-php",
"name": "formance-sdk-php",
"type": "library",
"autoload": {
"psr-4": {
Expand Down
Loading

0 comments on commit 6c61d3b

Please sign in to comment.