Skip to content

Commit eb6e8bf

Browse files
committed
Update dependencies and supported PHP versions.
1 parent b6c7323 commit eb6e8bf

File tree

3 files changed

+7
-13
lines changed

3 files changed

+7
-13
lines changed

.github/workflows/unit.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@ jobs:
1616
fail-fast: false
1717
matrix:
1818
php-version:
19-
- "8.2"
2019
- "8.3"
20+
- "8.4"
2121

2222
steps:
2323
- name: "Checkout"
@@ -26,11 +26,11 @@ jobs:
2626
- name: "Install PHP with extensions"
2727
uses: "shivammathur/setup-php@v2"
2828
with:
29-
php-version: "${{ matrix.php-version }}"
30-
php_extensions: "xdebug"
29+
php-version: "${{ matrix.php-version }}"
30+
extensions: "xdebug"
3131

3232
- name: "Cache dependencies installed with Composer"
33-
uses: "actions/cache@v2"
33+
uses: "actions/cache@v4"
3434
with:
3535
path: "~/.composer/cache"
3636
key: "php${{ matrix.php-version }}-composer-${{ matrix.dependencies }}-${{ hashFiles('**/composer.json') }}"

README.md

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@
77
<th>Legal</th>
88
<th>Release</th>
99
<th>Tests</th>
10-
<th>Code</th>
1110
</tr>
1211
</thead>
1312
<tbody>
@@ -25,9 +24,6 @@
2524
<a href="https://github.com/SetBased/php-exception/actions/workflows/unit.yml"><img src="https://github.com/SetBased/php-exception/actions/workflows/unit.yml/badge.svg" alt="Build Status"/></a><br/>
2625
<a href="https://codecov.io/gh/SetBased/php-exception"><img src="https://codecov.io/gh/SetBased/php-exception/branch/master/graph/badge.svg" alt="Code Coverage"/></a>
2726
</td>
28-
<td>
29-
<a href="https://scrutinizer-ci.com/g/SetBased/php-exception/?branch=master"><img src="https://scrutinizer-ci.com/g/SetBased/php-exception/badges/quality-score.png?b=master" alt="Scrutinizer Code Quality"/></a>
30-
</td>
3127
</tr>
3228
</tbody>
3329
</table>

composer.json

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -7,13 +7,11 @@
77
],
88
"license": "MIT",
99
"require": {
10-
"php": ">=8.2"
10+
"php": ">=8.3"
1111
},
12-
"minimum-stability": "dev",
13-
"prefer-stable": true,
1412
"require-dev": {
15-
"phing/phing": "^3.0.0-RC6",
16-
"phpunit/phpunit": "^10.5.10"
13+
"phing/phing": "^3.0.1",
14+
"phpunit/phpunit": "^11.0"
1715
},
1816
"autoload": {
1917
"psr-4": {

0 commit comments

Comments
 (0)