Skip to content

Commit

Permalink
Initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
deawx committed Aug 26, 2024
0 parents commit 022d7e7
Show file tree
Hide file tree
Showing 13 changed files with 2,248 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
# Auto detect text files and perform LF normalization
* text=auto
5 changes: 5 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@

.env
.lock
.idea
/vendor
34 changes: 34 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
<div align="center">
<a href="https://medoo.in" target="_blank"><img src="https://cyberthai.net/smalllogo.png"></a><br>
# Cyberthaicore for cyberthai project to accelerate development
</div>

# PHP Simple linebot API

> Cyberthai Easycore PHP Simple linebot manager
# API documentation

> https://developers.line.biz/en/reference/messaging-api/
## Features ที่มี

- **User** - จัดการผู้ใช้งาน.
- **Message** - จัดการข้อความ.
- **Webhook** - จัดการ Webhook.
- **Richmenu** - จัดการ Richmenu.

- ## Requirement

- **PHP 8.0+** และติดตั้ง Composer ด้วยหละ.
- ext-curl
- ext-openssl

## TODO: Add

- **Content** - สำหรับรับเนื้อหาและแสดงข้อมูล ที่ผู้ใช้ส่งให้บอท
- **Audience** - จัดการ กลุ่มเป้าหมาย.
- **Insight** - ดูข้อมูลเชิงลึก.
- **Oauth2** - จัดการ Channel access token.
- **Room** - จัดการ Multi-person chats.
- **Group** - จัดการ Group chats.
34 changes: 34 additions & 0 deletions composer.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
{
"name": "deawx/linebot",
"description": "Cyberthai EasycorePHP - Simple linebot manager",
"keywords": [
"cyberthai",
"projects",
"deawx",
"msdos43",
"89P13"
],
"type": "project",
"license": "MIT",
"version": "1.0.1",
"autoload": {
"psr-4": {
"cyberthai\\Linebot\\": "src/"
}
},
"require": {
"php": "^8.0",
"ext-curl": "*",
"ext-openssl": "*",
"guzzlehttp/guzzle": "^7.9"
},
"authors": [
{
"name": "Tirapong Chaiyakun",
"email": "[email protected]",
"homepage": "https://www.cyberthai.net"
}
],
"minimum-stability": "dev",
"prefer-stable": true
}
Loading

0 comments on commit 022d7e7

Please sign in to comment.