Skip to content

Commit 900c928

Browse files
authored
Merge pull request #20 from arthurkirkosa/l10
Allow Laravel 10
2 parents f18d36e + 4525bd7 commit 900c928

File tree

3 files changed

+9
-8
lines changed

3 files changed

+9
-8
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
/.phpunit.cache
12
build
23
composer.lock
34
vendor

composer.json

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -23,16 +23,16 @@
2323
}
2424
],
2525
"require": {
26-
"php": "^8.0",
27-
"illuminate/contracts": "^8.37|^9.0"
26+
"php": "^8.0|^8.1",
27+
"illuminate/contracts": "^8.37|^9.0|^10.0"
2828
},
2929
"require-dev": {
30-
"brianium/paratest": "^6.2",
31-
"nunomaduro/collision": "^5.3|^6.1",
32-
"orchestra/testbench": "^6.15|^7.0",
33-
"phpunit/phpunit": "^9.3",
30+
"brianium/paratest": "^6.2|^7.0.6",
31+
"nunomaduro/collision": "^5.3|^6.1|^7.0",
32+
"orchestra/testbench": "^6.15|^7.0|^8.0",
33+
"phpunit/phpunit": "^9.3|^10.0",
3434
"spatie/laravel-ray": "^1.9",
35-
"vimeo/psalm": "^4.4"
35+
"vimeo/psalm": "^4.4|^5.6"
3636
},
3737
"autoload": {
3838
"psr-4": {

phpunit.xml.dist

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

0 commit comments

Comments
 (0)