Skip to content

Commit

Permalink
More strict versions in require section
Browse files Browse the repository at this point in the history
  • Loading branch information
luzrain committed Dec 19, 2023
1 parent cfe1a62 commit 0d450c1
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion 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)
![Symfony ^6.3|^7.0](https://img.shields.io/badge/Symfony-^6.3|^7.0-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
10 changes: 5 additions & 5 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,15 +14,15 @@
"require": {
"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|^7.0",
"symfony/console": "^6.3|^7.0",
"symfony/dependency-injection": "^6.3|^7.0",
"symfony/http-kernel": "^6.3|^7.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.20",
"phpunit/phpunit": "^10.2",
"symfony/framework-bundle": ">=6.3",
"symfony/framework-bundle": "^7.0",
"vimeo/psalm": "^5.13"
},
"autoload": {
Expand Down

0 comments on commit 0d450c1

Please sign in to comment.