Skip to content

Commit 6b36e45

Browse files
authored
Update dependencies for laravel 10 (#6)
1 parent 46cfa80 commit 6b36e45

File tree

3 files changed

+8
-7
lines changed

3 files changed

+8
-7
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,6 @@ composer.lock
44
docs
55
vendor
66
coverage
7+
.phpunit.cache
78
.phpunit.result.cache
89
.DS_Store

composer.json

+5-5
Original file line numberDiff line numberDiff line change
@@ -19,14 +19,14 @@
1919
}
2020
],
2121
"require": {
22-
"php": "^7.2|^8.0",
22+
"php": "^8.0",
2323
"ext-zip": "*",
24-
"illuminate/contracts": "^6.0|^7.0|^8.0|^9.0",
25-
"illuminate/support": "^6.0|^7.0|^8.0|^9.0"
24+
"illuminate/contracts": "^8.0|^9.0|^10.0",
25+
"illuminate/support": "^8.0|^9.0|^10.0"
2626
},
2727
"require-dev": {
28-
"orchestra/testbench": "^4.0|^5.0|^6.0|^7.0",
29-
"phpunit/phpunit": "^8.0|^9.0"
28+
"orchestra/testbench": "^6.0|^7.0|^8.0",
29+
"phpunit/phpunit": "^8.0|^9.0|^10.0"
3030
},
3131
"autoload": {
3232
"psr-4": {

phpunit.xml.dist

+2-2
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" bootstrap="vendor/autoload.php" backupGlobals="false" backupStaticAttributes="false" colors="true" verbose="true" convertErrorsToExceptions="true" convertNoticesToExceptions="true" convertWarningsToExceptions="true" processIsolation="false" stopOnFailure="false" xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.3/phpunit.xsd">
2+
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" bootstrap="vendor/autoload.php" backupGlobals="false" colors="true" processIsolation="false" stopOnFailure="false" xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/10.0/phpunit.xsd" cacheDirectory=".phpunit.cache" backupStaticProperties="false">
33
<coverage>
44
<include>
55
<directory suffix=".php">src/</directory>
@@ -19,6 +19,6 @@
1919
<junit outputFile="build/report.junit.xml"/>
2020
</logging>
2121
<php>
22-
<server name="XDEBUG_MODE" value="coverage" />
22+
<server name="XDEBUG_MODE" value="coverage"/>
2323
</php>
2424
</phpunit>

0 commit comments

Comments
 (0)