Skip to content

Commit 6b6bfcb

Browse files
committed
Support for PHP 8.3.
1 parent f55c812 commit 6b6bfcb

File tree

3 files changed

+7
-25
lines changed

3 files changed

+7
-25
lines changed

.github/workflows/run-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
fail-fast: true
1414
matrix:
1515
os: [ubuntu-22.04]
16-
php: [8.2, 8.1]
16+
php: [8.3, 8.2, 8.1]
1717
laravel: [10.*]
1818
stability: [prefer-lowest, prefer-stable]
1919
include:

composer.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
}
1717
],
1818
"require": {
19-
"php": "^8.1|^8.2",
19+
"php": "^8.1|^8.2|^8.3",
2020
"illuminate/process": "^10.0",
2121
"spatie/laravel-package-tools": "^1.13.0",
2222
"spatie/temporary-directory": "^2.1"
@@ -26,11 +26,11 @@
2626
},
2727
"require-dev": {
2828
"laravel/pint": "^1.0",
29-
"nunomaduro/collision": "^6.0",
29+
"nunomaduro/collision": "^7.0",
3030
"orchestra/testbench": "^8.0",
31-
"pestphp/pest": "^1.21",
32-
"pestphp/pest-plugin-laravel": "^1.1",
33-
"phpunit/phpunit": "^9.5"
31+
"pestphp/pest": "^2.0",
32+
"pestphp/pest-plugin-laravel": "^2.0",
33+
"phpunit/phpunit": "^10.4"
3434
},
3535
"autoload": {
3636
"psr-4": {

phpunit.xml.dist

Lines changed: 1 addition & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -3,37 +3,19 @@
33
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
44
xsi:noNamespaceSchemaLocation="vendor/phpunit/phpunit/phpunit.xsd"
55
backupGlobals="false"
6-
backupStaticAttributes="false"
76
bootstrap="vendor/autoload.php"
87
colors="true"
9-
convertErrorsToExceptions="true"
10-
convertNoticesToExceptions="true"
11-
convertWarningsToExceptions="true"
128
processIsolation="false"
139
stopOnFailure="false"
1410
executionOrder="random"
1511
failOnWarning="true"
1612
failOnRisky="true"
1713
failOnEmptyTestSuite="true"
1814
beStrictAboutOutputDuringTests="true"
19-
verbose="true"
2015
>
2116
<testsuites>
2217
<testsuite name="ProtoneMedia Test Suite">
2318
<directory>tests</directory>
2419
</testsuite>
2520
</testsuites>
26-
<coverage>
27-
<include>
28-
<directory suffix=".php">./src</directory>
29-
</include>
30-
<report>
31-
<html outputDirectory="build/coverage"/>
32-
<text outputFile="build/coverage.txt"/>
33-
<clover outputFile="build/logs/clover.xml"/>
34-
</report>
35-
</coverage>
36-
<logging>
37-
<junit outputFile="build/report.junit.xml"/>
38-
</logging>
39-
</phpunit>
21+
</phpunit>

0 commit comments

Comments
 (0)