Skip to content

Commit

Permalink
Added fluent-keyboard to workspace
Browse files Browse the repository at this point in the history
  • Loading branch information
TiiFuchs committed Mar 24, 2022
1 parent fad4a03 commit 761b74b
Show file tree
Hide file tree
Showing 6 changed files with 42 additions and 1,227 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,5 @@
.env
logs/*.log
docker-compose.override.yml
.phpunit.result.cache
composer.lock
3 changes: 3 additions & 0 deletions .gitmodules
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
[submodule "packages/php-telegram-bot"]
path = packages/php-telegram-bot
url = [email protected]:php-telegram-bot/core.git
[submodule "packages/fluent-keyboard"]
path = packages/fluent-keyboard
url = [email protected]:php-telegram-bot/fluent-keyboard.git
22 changes: 19 additions & 3 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,8 @@
],
"require": {
"longman/telegram-bot": "@dev",
"vlucas/phpdotenv": "5.4.x-dev"
"php-telegram-bot/fluent-keyboard": "@dev",
"vlucas/phpdotenv": "^5.4"
},
"autoload": {
"files": [
Expand All @@ -24,10 +25,25 @@
"repositories": [
{
"type": "path",
"url": "./packages",
"url": "./packages/php-telegram-bot",
"options": {
"symlink": true
}
},
{
"type": "path",
"url": "./packages/fluent-keyboard",
"options": {
"symlink": true
}
}
],
"require-dev": {
"pestphp/pest": "^1.21"
},
"config": {
"allow-plugins": {
"pestphp/pest-plugin": true
}
]
}
}
Loading

0 comments on commit 761b74b

Please sign in to comment.