Skip to content

Commit

Permalink
Merge pull request #11 from micromagicman/develop
Browse files Browse the repository at this point in the history
v2.0.0
  • Loading branch information
micromagicman committed Apr 8, 2024
2 parents 3b2d7cd + f5f4eee commit dfd8f09
Show file tree
Hide file tree
Showing 4 changed files with 1,779 additions and 1,249 deletions.
5 changes: 5 additions & 0 deletions .github/workflows/laravel-telegram-webapp-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,10 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: '8.2'
- name: Validate composer.json and composer.lock
run: composer validate --strict
- name: Cache Composer packages
Expand All @@ -31,6 +35,7 @@ jobs:
env:
XDEBUG_MODE: coverage
with:
version: '11.0.10'
configuration: phpunit.xml
php_extensions: xdebug
args: tests --coverage-clover ./coverage.xml
Expand Down
7 changes: 7 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,13 @@ Laravel package that allows you to process commands from Telegram MiniApp with u
[Telegram MiniApp developer documentation](https://core.telegram.org/bots/webapps), as well as obtaining information
about the Telegram user who sent the request

## Requirements

| Laravel | micromagicman/laravel-telegram-webapp |
|---------|---------------------------------------|
| 10.x | 1.x.x |
| 11.x | 2.x.x |

## Install

### Via composer
Expand Down
14 changes: 7 additions & 7 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,16 +27,16 @@
}
],
"require": {
"php": ">=8.1",
"illuminate/support": "^10.28",
"illuminate/routing": "^10.28"
"php": ">=8.2",
"illuminate/support": "^11.0",
"illuminate/routing": "^11.0"
},
"require-dev": {
"ext-dom": "*",
"phpunit/phpunit": "^10.4",
"orchestra/testbench": "^8.14",
"nunomaduro/collision": "^7.8",
"phpunit/php-code-coverage": "^10.1"
"phpunit/phpunit": "11.0.10",
"orchestra/testbench": "^9.0.0",
"nunomaduro/collision": "^8.0",
"phpunit/php-code-coverage": "^11.0.0"
},
"extra": {
"laravel": {
Expand Down
Loading

0 comments on commit dfd8f09

Please sign in to comment.