Skip to content

Commit 617927d

Browse files
committed
Laravel v11 Dev Upgrades
updates development dependencies and configurations
1 parent 2590c95 commit 617927d

File tree

4 files changed

+12
-10
lines changed

4 files changed

+12
-10
lines changed

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,4 @@
44
/clover.xml
55
/build
66
/vendor
7-
.phpunit.cache/test-results
7+
.phpunit.cache

composer.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,9 @@
1313
"illuminate/support": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0"
1414
},
1515
"require-dev": {
16-
"orchestra/testbench": "^4.0|^5.0|^6.0|^7.0|^8.0",
17-
"phpunit/phpunit": "^8.0|^9.0|^10.0",
18-
"nunomaduro/larastan": "^0.6|^1.0|^2.0"
16+
"orchestra/testbench": "^4.0|^5.0|^6.0|^7.0|^8.0|^9.0",
17+
"phpunit/phpunit": "^8.0|^9.0|^10.0|^11.0",
18+
"larastan/larastan": "^1.0|^2.0"
1919
},
2020
"autoload": {
2121
"psr-4": {
@@ -28,7 +28,7 @@
2828
}
2929
},
3030
"scripts": {
31-
"test": "vendor/bin/phpunit",
31+
"test": "XDEBUG_MODE=coverage vendor/bin/phpunit",
3232
"lint": "vendor/bin/phpstan analyse"
3333
},
3434
"extra": {

phpstan.neon.dist

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
includes:
2-
- ./vendor/nunomaduro/larastan/extension.neon
2+
- vendor/larastan/larastan/extension.neon
33
parameters:
44
level: 5
55
paths:

phpunit.xml

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,6 @@
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" colors="true" processIsolation="false" stopOnFailure="false" xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/10.0/phpunit.xsd" cacheDirectory=".phpunit.cache" backupStaticProperties="false">
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/11.1/phpunit.xsd" cacheDirectory=".phpunit.cache" backupStaticProperties="false">
33
<coverage includeUncoveredFiles="false">
4-
<include>
5-
<directory suffix=".php">src/</directory>
6-
</include>
74
<report>
85
<clover outputFile="build/clover.xml"/>
96
</report>
@@ -23,4 +20,9 @@
2320
<env name="DB_DATABASE" value=":memory:"/>
2421
<env name="DB_CONNECTION" value="sqlite"/>
2522
</php>
23+
<source>
24+
<include>
25+
<directory suffix=".php">src/</directory>
26+
</include>
27+
</source>
2628
</phpunit>

0 commit comments

Comments
 (0)