Skip to content

Commit

Permalink
fix: First releast
Browse files Browse the repository at this point in the history
  • Loading branch information
seebeen committed Sep 24, 2023
1 parent a598427 commit 023c6ac
Show file tree
Hide file tree
Showing 7 changed files with 269,063 additions and 0 deletions.
7 changes: 7 additions & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
.github export-ignore
.editorconfig export-ignore
.gitattributes export-ignore
.gitignore export-ignore
.phpcs.xml export-ignore
CHANGELOG.md export-ignore
composer.lock export-ignore
4 changes: 4 additions & 0 deletions .github/renovate.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": ["config:base"]
}
25 changes: 25 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: Release
on:
workflow_dispatch:
push:
branches:
- master
jobs:
release:
name: Release
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 0
token: ${{ secrets.OBLAK_BOT_TOKEN }}
- name: Publish a composer package
uses: better-php-actions/publish-composer-package@v1
with:
package_slug: 'whmcs-stubs'
package_name: 'WHMCS Stubs'
with_gpg: true
gpg_key: ${{ secrets.GPG_PRIVATE_KEY }}
gpg_passphrase: ${{ secrets.GPG_PASSPHRASE }}
release_token: ${{ secrets.OBLAK_BOT_TOKEN }}
Empty file added .gitignore
Empty file.
7 changes: 7 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
<div align="center">

# WHMCS Stubs

</div>

A collection of base classes that will help you to create your own WHMCS modules.
29 changes: 29 additions & 0 deletions composer.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
{
"name": "oblak/whmcs-stubs",
"description": "WHMCS Stubs for your IDE",
"version": "7.10.1",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Sibin Grasic",
"email": "[email protected]",
"homepage": "https://oblak.host"
}
],
"keywords": [
"JetBrains",
"PHPStorm",
"stubs",
"autocomplete",
"type",
"inference",
"code",
"inspection",
"whmcs",
"dev"
],
"support": {
"issues": "https://github.com/oblakhost/whmcs-stubs"
}
}
Loading

0 comments on commit 023c6ac

Please sign in to comment.