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

Add L10 and remove L8 support

This commit is contained in:
lukinovec 2023-02-16 10:10:20 +01:00
parent 51e6dbf99d
commit 9de5e377b7
3 changed files with 5 additions and 5 deletions

View file

@ -11,7 +11,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

@ -20,11 +20,11 @@
} }
}, },
"require": { "require": {
"php": "^8.0", "php": "^8.1",
"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>