-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
10 changed files
with
109 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,2 @@ | ||
.vitepress | ||
.vitepress/cache | ||
.vitepress/dist |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
import {defineConfig} from 'vitepress' | ||
|
||
// https://vitepress.dev/reference/site-config | ||
export default defineConfig({ | ||
title: "LiquipediaClient", | ||
description: "The Liquipedia PHP Client documentation", | ||
lastUpdated: true, | ||
themeConfig: { | ||
editLink: { | ||
pattern: 'https://github.com/npldevfr/liquipedia-client/-/tree/main/docs/:path', | ||
}, | ||
search: { | ||
provider: 'local' | ||
}, | ||
logo: { | ||
dark: '../../images/dark.png', | ||
light: '../../images/light.png' | ||
}, | ||
// nav: [ | ||
// {text: 'Home', link: '/'}, | ||
// {text: 'Examples', link: '/markdown-examples'} | ||
// ], | ||
sidebar: [ | ||
{ | ||
text: 'Introduction', | ||
items: [ | ||
{text: 'What is LiquipediaClient?', link: '/guide/what-is-liquipedia-client'}, | ||
{text: 'Getting Started', link: '/guide/getting-started'}, | ||
] | ||
}, | ||
{ | ||
text: 'Endpoints (Coming Soon)', | ||
items: [] | ||
}, | ||
{ | ||
text: 'Query Builder', | ||
items: [ | ||
{text: 'Methods', link: '/query-builder/methods'}, | ||
] | ||
} | ||
], | ||
|
||
socialLinks: [ | ||
{icon: 'github', link: 'https://github.com/npldevfr/liquipedia-client'}, | ||
] | ||
} | ||
}) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
:root { | ||
|
||
--vp-button-brand-bg: #094a81; | ||
--vp-button-brand-hover-bg: #0c5a9b; | ||
--vp-c-brand-1: #0d84e7; | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
import DefaultTheme from 'vitepress/theme' | ||
import './custom.css' | ||
|
||
|
||
export default DefaultTheme |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
--- | ||
outline: deep | ||
--- | ||
|
||
# Getting Started | ||
|
||
## Installation | ||
|
||
The Liquipedia PHP Client can be installed via [Composer](https://getcomposer.org/). | ||
|
||
> Note: Requires PHP 8.2 or higher. | ||
|
||
```bash | ||
composer require npldevfr/liquipedia-client | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
--- | ||
outline: deep | ||
--- | ||
|
||
# What is Liquipedia PHP Client? | ||
|
||
The Liquipedia PHP Client serves as a PHP software development kit (SDK) designed to simplify and enhance the utilization of the latest Liquipedia v3 API through custom methods and endpoints. |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters