Skip to content

Commit f3fba16

Browse files
committed
Initial commit
0 parents  commit f3fba16

21 files changed

+8424
-0
lines changed

.gitignore

+41
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
2+
# Created by https://www.toptal.com/developers/gitignore/api/laravel,composer
3+
# Edit at https://www.toptal.com/developers/gitignore?templates=laravel,composer
4+
5+
### Composer ###
6+
composer.phar
7+
/vendor/
8+
9+
# Commit your application's lock file https://getcomposer.org/doc/01-basic-usage.md#commit-your-composer-lock-file-to-version-control
10+
# You may choose to ignore a library lock file http://getcomposer.org/doc/02-libraries.md#lock-file
11+
# composer.lock
12+
13+
### Laravel ###
14+
node_modules/
15+
npm-debug.log
16+
yarn-error.log
17+
18+
# Laravel 4 specific
19+
bootstrap/compiled.php
20+
app/storage/
21+
22+
# Laravel 5 & Lumen specific
23+
public/storage
24+
public/hot
25+
26+
# Laravel 5 & Lumen specific with changed public path
27+
public_html/storage
28+
public_html/hot
29+
30+
storage/*.key
31+
.env
32+
Homestead.yaml
33+
Homestead.json
34+
/.vagrant
35+
.phpunit.result.cache
36+
37+
# Laravel IDE helper
38+
*.meta.*
39+
_ide_*
40+
41+
# End of https://www.toptal.com/developers/gitignore/api/laravel,composer

.styleci.yml

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
preset: laravel

bin/expose

8.31 MB
Binary file not shown.

changelog.md

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
# Changelog
2+
3+
All notable changes to `LaravelTelegramBot` will be documented in this file.
4+
5+
## Version 1.0
6+
7+
### Added
8+
- Everything

composer.json

+42
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
{
2+
"name": "tii/laravel-telegram-bot",
3+
"description": "Integrates PHP Telegram Bot into Laravel.",
4+
"license": "license",
5+
"authors": [
6+
{
7+
"name": "Tii",
8+
"email": "[email protected]"
9+
}
10+
],
11+
"homepage": "https://github.com/tii/laravel-telegram-bot",
12+
"keywords": ["laravel", "telegram", "bot"],
13+
"require": {
14+
"illuminate/support": "~7|~8",
15+
"longman/telegram-bot": "^0.73.0"
16+
},
17+
"require-dev": {
18+
"phpunit/phpunit": "~9.0",
19+
"orchestra/testbench": "~5|~6",
20+
"symfony/process": "^5.3"
21+
},
22+
"autoload": {
23+
"psr-4": {
24+
"Tii\\LaravelTelegramBot\\": "src/"
25+
}
26+
},
27+
"autoload-dev": {
28+
"psr-4": {
29+
"Tii\\LaravelTelegramBot\\Tests\\": "tests"
30+
}
31+
},
32+
"extra": {
33+
"laravel": {
34+
"providers": [
35+
"Tii\\LaravelTelegramBot\\TelegramBotServiceProvider"
36+
]
37+
}
38+
},
39+
"bin": [
40+
"bin/expose"
41+
]
42+
}

0 commit comments

Comments
 (0)