Skip to content

Commit 72ea7ab

Browse files
committed
Updated the dependencies
1 parent d99ab18 commit 72ea7ab

File tree

6 files changed

+3033
-16
lines changed

6 files changed

+3033
-16
lines changed

.gitignore

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,5 @@
22
/.env
33
/vendor
44
/example.php
5-
/composer.lock
65
/.telegram-bot
76
/.phpunit.result.cache

composer.json

Lines changed: 16 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,12 @@
22
"name": "telegram-bot-php/core",
33
"description": "A PHP library that makes using Telegram Bot API much easier.",
44
"keywords": [
5+
"php",
56
"telegram",
67
"bot",
78
"core",
8-
"php"
9+
"update-handler",
10+
"library"
911
],
1012
"license": "MIT",
1113
"homepage": "https://github.com/telegram-bot-php/core",
@@ -16,19 +18,26 @@
1618
"authors": [
1719
{
1820
"name": "Shahrad Elahi",
19-
"email": "shahrad@litehex.com",
20-
"role": "developer"
21+
"email": "shahrad@litehex.com"
22+
},
23+
{
24+
"name": "LiteHex Team",
25+
"email": "opensource@litehex.com"
2126
}
2227
],
2328
"minimum-stability": "dev",
2429
"prefer-stable": true,
30+
"scripts": {
31+
"install-dependencies": "composer install --prefer-source",
32+
"phpunit-test": "vendor/bin/phpunit --colors=always --configuration phpunit.xml"
33+
},
2534
"require": {
2635
"php": ">=8.0",
2736
"ext-json": "*",
2837
"ext-curl": "*",
2938
"ext-mbstring": "*",
3039
"symfony/dotenv": "^v6.1.0",
31-
"shahradelahi/easy-http": "^v1.2.0"
40+
"shahradelahi/easy-http": "~v1.3.0"
3241
},
3342
"require-dev": {
3443
"phpunit/phpunit": "^9.5.20",
@@ -44,8 +53,8 @@
4453
"TelegramBotTest\\": "tests/"
4554
}
4655
},
47-
"scripts": {
48-
"install-dependencies": "composer install --prefer-source",
49-
"phpunit-test": "vendor/bin/phpunit --colors=always --configuration phpunit.xml"
56+
"config": {
57+
"sort-packages": true,
58+
"optimize-autoloader": true
5059
}
5160
}

0 commit comments

Comments
 (0)