Skip to content

Commit 9aae65b

Browse files
authored
Merge pull request #4 from lukinovec/add-l10-and-remove-l8-support
Add L10 and remove L8 support
2 parents 51e6dbf + 769a1bd commit 9aae65b

File tree

3 files changed

+7
-4
lines changed

3 files changed

+7
-4
lines changed

.github/workflows/ci.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
name: CI
22

3+
env:
4+
XDEBUG_MODE: 'coverage'
5+
36
on:
47
push:
58
pull_request:
@@ -11,7 +14,7 @@ jobs:
1114
runs-on: ubuntu-latest
1215
strategy:
1316
matrix:
14-
laravel: [8, 9]
17+
laravel: [9, 10]
1518

1619
steps:
1720
- uses: actions/checkout@v2

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
"livewire/livewire": "^2.10"
2525
},
2626
"require-dev": {
27-
"orchestra/testbench": "^6.9|^7.0"
27+
"orchestra/testbench": "^7.0|^8.0"
2828
},
2929
"minimum-stability": "dev",
3030
"prefer-stable": true

phpunit.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?xml version="1.0" encoding="UTF-8"?>
2-
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" backupGlobals="false" backupStaticAttributes="false" bootstrap="vendor/autoload.php" colors="true" convertErrorsToExceptions="true" convertNoticesToExceptions="true" convertWarningsToExceptions="true" processIsolation="false" stopOnFailure="false" xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.3/phpunit.xsd">
3-
<coverage processUncoveredFiles="true">
2+
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" backupGlobals="false" bootstrap="vendor/autoload.php" colors="true" processIsolation="false" stopOnFailure="false" xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/10.0/phpunit.xsd" cacheDirectory=".phpunit.cache" backupStaticProperties="false">
3+
<coverage>
44
<include>
55
<directory suffix=".php">./src</directory>
66
</include>

0 commit comments

Comments
 (0)