File tree 3 files changed +14
-9
lines changed
3 files changed +14
-9
lines changed Original file line number Diff line number Diff line change @@ -3,6 +3,7 @@ composer.lock
3
3
vendor
4
4
tests /temp
5
5
.idea
6
+ .phpunit.cache
6
7
.phpunit.result.cache
7
8
.php-cs-fixer.cache
8
9
tests /CreatePermissionCustomTables.php
Original file line number Diff line number Diff line change 23
23
"homepage" : " https://github.com/spatie/laravel-permission" ,
24
24
"require" : {
25
25
"php" : " ^8.0" ,
26
- "illuminate/auth" : " ^8.12|^9.0|^10.0" ,
27
- "illuminate/container" : " ^8.12|^9.0|^10.0" ,
28
- "illuminate/contracts" : " ^8.12|^9.0|^10.0" ,
29
- "illuminate/database" : " ^8.12|^9.0|^10.0"
26
+ "illuminate/auth" : " ^8.12|^9.0|^10.0|^11.0 " ,
27
+ "illuminate/container" : " ^8.12|^9.0|^10.0|^11.0 " ,
28
+ "illuminate/contracts" : " ^8.12|^9.0|^10.0|^11.0 " ,
29
+ "illuminate/database" : " ^8.12|^9.0|^10.0|^11.0 "
30
30
},
31
31
"require-dev" : {
32
32
"laravel/passport" : " ^11.0" ,
33
- "orchestra/testbench" : " ^6.23|^7.0|^8.0" ,
34
- "phpunit/phpunit" : " ^9.4"
33
+ "orchestra/testbench" : " ^6.23|^7.0|^8.0|^9.0 " ,
34
+ "phpunit/phpunit" : " ^9.4|^10.1 "
35
35
},
36
36
"minimum-stability" : " dev" ,
37
37
"prefer-stable" : true ,
Original file line number Diff line number Diff line change 1
1
<?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" >
3
- <coverage >
2
+ <phpunit xmlns : xsi =" http://www.w3.org/2001/XMLSchema-instance"
3
+ bootstrap =" vendor/autoload.php"
4
+ colors =" true"
5
+ xsi : noNamespaceSchemaLocation =" https://schema.phpunit.de/10.4/phpunit.xsd"
6
+ >
7
+ <source >
4
8
<include >
5
9
<directory suffix =" .php" >src/</directory >
6
10
</include >
7
- </coverage >
11
+ </source >
8
12
<testsuites >
9
13
<testsuite name =" Permissions Test Suite" >
10
14
<directory >tests</directory >
You can’t perform that action at this time.
0 commit comments