1
0
Fork 0
mirror of https://github.com/archtechx/livewire-access.git synced 2025-12-12 20:34:03 +00:00

Merge pull request #4 from lukinovec/add-l10-and-remove-l8-support

Add L10 and remove L8 support
This commit is contained in:
Samuel Štancl 2023-02-16 17:05:28 +01:00 committed by GitHub
commit 9aae65bd80
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 7 additions and 4 deletions

View file

@ -1,5 +1,8 @@
name: CI name: CI
env:
XDEBUG_MODE: 'coverage'
on: on:
push: push:
pull_request: pull_request:
@ -11,7 +14,7 @@ jobs:
runs-on: ubuntu-latest runs-on: ubuntu-latest
strategy: strategy:
matrix: matrix:
laravel: [8, 9] laravel: [9, 10]
steps: steps:
- uses: actions/checkout@v2 - uses: actions/checkout@v2

View file

@ -24,7 +24,7 @@
"livewire/livewire": "^2.10" "livewire/livewire": "^2.10"
}, },
"require-dev": { "require-dev": {
"orchestra/testbench": "^6.9|^7.0" "orchestra/testbench": "^7.0|^8.0"
}, },
"minimum-stability": "dev", "minimum-stability": "dev",
"prefer-stable": true "prefer-stable": true

View file

@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<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"> <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">
<coverage processUncoveredFiles="true"> <coverage>
<include> <include>
<directory suffix=".php">./src</directory> <directory suffix=".php">./src</directory>
</include> </include>