Skip to content

Commit

Permalink
Support for major versions higher than in require section
Browse files Browse the repository at this point in the history
  • Loading branch information
luzrain committed Dec 19, 2023
1 parent 43503e1 commit cfe1a62
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Symfony bundle for Telegram Bot API
[![PHP ^8.2](https://img.shields.io/badge/PHP-^8.2-777bb3.svg?style=flat)](https://www.php.net/releases/8.2/en.php)
![Symfony ^6.3](https://img.shields.io/badge/Symfony-^6.3-374151.svg?style=flat)
[![PHP >=8.2](https://img.shields.io/badge/PHP->=8.2-777bb3.svg?style=flat)](https://www.php.net/releases/8.2/en.php)
![Symfony >=6.3](https://img.shields.io/badge/Symfony->=6.3-374151.svg?style=flat)
[![Tests Status](https://img.shields.io/github/actions/workflow/status/luzrain/telegram-bot-bundle/tests.yaml?branch=master)](../../actions/workflows/tests.yaml)

A symfony bundle for [luzrain/telegram-bot-api](https://github.com/luzrain/telegram-bot-api) library.
Expand Down
12 changes: 6 additions & 6 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,17 +12,17 @@
}
],
"require": {
"php": "^8.2",
"php": ">=8.2",
"luzrain/telegram-bot-api": "^2.1.1",
"symfony/config": "^6.3",
"symfony/console": "^6.3",
"symfony/dependency-injection": "^6.3",
"symfony/http-kernel": "^6.3"
"symfony/config": ">=6.3",
"symfony/console": ">=6.3",
"symfony/dependency-injection": ">=6.3",
"symfony/http-kernel": ">=6.3"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.20",
"phpunit/phpunit": "^10.2",
"symfony/framework-bundle": "^6.3",
"symfony/framework-bundle": ">=6.3",
"vimeo/psalm": "^5.13"
},
"autoload": {
Expand Down

0 comments on commit cfe1a62

Please sign in to comment.