Skip to content

Commit 5deb207

Browse files
authored
Merge pull request #16 from descom-es/laravel_12_update
Laravel 12 update
2 parents 4a6ff59 + b797898 commit 5deb207

File tree

3 files changed

+11
-11
lines changed

3 files changed

+11
-11
lines changed

.github/workflows/analyse.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,16 +17,16 @@ jobs:
1717
- name: Setup PHP
1818
uses: shivammathur/setup-php@v2
1919
with:
20-
php-version: 8.3
20+
php-version: 8.4
2121

2222
- name: Cache Composer packages
2323
id: composer-cache
2424
uses: actions/cache@v4
2525
with:
2626
path: vendor
27-
key: ${{ runner.os }}-php-8.3-${{ hashFiles('**/composer.json') }}
27+
key: ${{ runner.os }}-php-8.4-${{ hashFiles('**/composer.json') }}
2828
restore-keys: |
29-
${{ runner.os }}-php-8.3
29+
${{ runner.os }}-php-8.4
3030
3131
- name: Install dependencies
3232
if: steps.composer-cache.outputs.cache-hit != 'true'

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
strategy:
1515
fail-fast: true
1616
matrix:
17-
php: [8.3, 8.2]
17+
php: [8.3, 8.4]
1818

1919
name: PHP${{ matrix.php }}
2020

composer.json

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@
22
"name": "descom/redsys",
33
"description": "A PHP package to platform Redsys",
44
"type": "library",
5-
"version": "1.8.8",
5+
"version": "1.9.0",
66
"require": {
7-
"php": "^8.2",
8-
"php-http/discovery": "^1.17",
7+
"php": "^8.3",
8+
"php-http/discovery": "^1.20",
99
"psr/http-client-implementation": "*",
1010
"psr/http-factory-implementation": "*"
1111
},
@@ -29,11 +29,11 @@
2929
"minimum-stability": "dev",
3030
"prefer-stable": true,
3131
"require-dev": {
32-
"friendsofphp/php-cs-fixer": "^3.4",
33-
"illuminate/http": "^11.20",
32+
"friendsofphp/php-cs-fixer": "^3.75",
33+
"illuminate/http": "^12.0",
3434
"nyholm/psr7": "^1.8",
35-
"phpstan/phpstan": "^1.2",
36-
"phpunit/phpunit": "^9.3",
35+
"phpstan/phpstan": "^2.1",
36+
"phpunit/phpunit": "^10.5|^11.5",
3737
"symfony/http-client": "^7.0"
3838
},
3939
"autoload": {

0 commit comments

Comments
 (0)