Skip to content

Commit

Permalink
fix/worflow-and-imports
Browse files Browse the repository at this point in the history
  • Loading branch information
= committed Jul 11, 2024
1 parent 899369b commit 9f9f391
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 1 deletion.
8 changes: 8 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,14 @@ jobs:
- name: Checkout code
uses: actions/checkout@v2

- name: Set up PHP
uses: shivammathur/setup-php@v2
with:
php-version: '7.4' # Adjust the PHP version as needed

- name: Install Composer dependencies
run: composer install --no-progress --no-suggest --prefer-dist --optimize-autoloader

- name: Set up version file
id: setup_version
run: |
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.0.1
1.0.2
6 changes: 6 additions & 0 deletions sdk.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
<?php

require_once __DIR__ . '/vendor/autoload.php';

use Ramsey\Uuid\Uuid;
use WHMCS\Database\Capsule;
use Hackzilla\PasswordGenerator\Generator\ComputerPasswordGenerator;

class EasyPanelSDK {

function __construct($apiUrl, $authorizationToken) {
Expand Down

0 comments on commit 9f9f391

Please sign in to comment.