Skip to content

Commit

Permalink
actualizado php a version 8.1
Browse files Browse the repository at this point in the history
  • Loading branch information
brunovt074 committed Dec 3, 2024
1 parent 7fff474 commit d8a702b
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/php.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: '7.3'
php-version: '8.1'
extensions: xdebug, soap
coverage: xdebug

Expand All @@ -25,9 +25,9 @@ jobs:
uses: actions/cache@v1.0.2
with:
path: ~/.composer/cache
key: php7.3-composer-locked-${{ hashFiles('**/composer.lock') }}
key: php8.1-composer-locked-${{ hashFiles('**/composer.lock') }}
restore-keys: |
php7.3-composer-locked-
php8.1-composer-locked-
- name: Install dependencies
run: composer install --prefer-dist --no-progress
Expand Down
8 changes: 4 additions & 4 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
}
],
"require": {
"php": "^7.3|^8.1",
"php": "^8.1",
"endroid/qr-code": "^5.0",
"ext-gd": "*",
"khanamiryan/qrcode-detector-decoder": "^2.0"
Expand All @@ -26,10 +26,10 @@
"codedungeon/phpunit-result-printer": "0.30.0"
},
"autoload": {
"classmap": [
"classmap": [
"src/"
],
"psr-4": {
],
"psr-4": {
"CryptoQr\\": "src/"
}
},
Expand Down

0 comments on commit d8a702b

Please sign in to comment.