File tree 4 files changed +22
-17
lines changed
4 files changed +22
-17
lines changed Original file line number Diff line number Diff line change @@ -11,14 +11,26 @@ jobs:
11
11
# Disable testing on windows for now...
12
12
# os: [ubuntu-latest, windows-latest]
13
13
os : [ubuntu-latest]
14
- php : [8.0, 8.1, 8.2]
15
- laravel : [8.*, 9.*, 10.*]
14
+ php : [8.0, 8.1, 8.2, 8.3 ]
15
+ laravel : [8.*, 9.*, 10.*, 11.* ]
16
16
stability : [prefer-stable]
17
17
exclude :
18
18
- laravel : 8.*
19
19
php : 8.2
20
+ - laravel : 8.*
21
+ php : 8.3
22
+ - laravel : 9.*
23
+ php : 8.1
24
+ - laravel : 9.*
25
+ php : 8.2
26
+ - laravel : 9.*
27
+ php : 8.3
20
28
- laravel : 10.*
21
29
php : 8.0
30
+ - laravel : 11.*
31
+ php : 8.0
32
+ - laravel : 11.*
33
+ php : 8.1
22
34
23
35
name : P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.stability }} - ${{ matrix.os }}
24
36
Original file line number Diff line number Diff line change 1
1
The MIT License (MIT)
2
2
3
- Copyright (c) 2016 Ahmet Özışık
3
+ Copyright (c) 2024 Swiftmade OÜ
4
4
5
5
Permission is hereby granted, free of charge, to any person obtaining a copy
6
6
of this software and associated documentation files (the "Software"), to deal
Original file line number Diff line number Diff line change 11
11
"minimum-stability" : " stable" ,
12
12
"require" : {
13
13
"php" : " ^8.0" ,
14
- "laravel/framework" : " ^8.0|^9.0|^10.0" ,
15
- "ultrono /markdown" : " ^14 .0"
14
+ "laravel/framework" : " ^8.0|^9.0|^10.0|^11.0 " ,
15
+ "graham-campbell /markdown" : " ^15 .0"
16
16
},
17
17
"require-dev" : {
18
- "phpunit/phpunit" : " ^9.0" ,
19
- "laravel/laravel" : " 7.*| 8.*|9.*|10.*" ,
18
+ "phpunit/phpunit" : " ^9.0|^10.0 " ,
19
+ "laravel/laravel" : " 8.*|9.*|10.*|11 .*" ,
20
20
"mockery/mockery" : " ^1.3" ,
21
21
"friendsofphp/php-cs-fixer" : " ^3.13"
22
22
},
Original file line number Diff line number Diff line change 1
1
<?xml version =" 1.0" encoding =" UTF-8" ?>
2
- <phpunit backupGlobals =" false"
3
- backupStaticAttributes =" false"
4
- bootstrap =" vendor/autoload.php"
5
- colors =" true"
6
- convertErrorsToExceptions =" true"
7
- convertNoticesToExceptions =" true"
8
- convertWarningsToExceptions =" true"
9
- processIsolation =" false"
10
- stopOnFailure =" false"
11
- >
2
+ <phpunit backupGlobals =" false" backupStaticAttributes =" false" bootstrap =" vendor/autoload.php" colors =" true" convertErrorsToExceptions =" true" convertNoticesToExceptions =" true" convertWarningsToExceptions =" true" processIsolation =" false" stopOnFailure =" false" >
12
3
<testsuites >
13
4
<testsuite name =" Package Test Suite" >
14
5
<directory suffix =" .php" >./tests/Integration</directory >
15
6
</testsuite >
16
7
</testsuites >
17
8
<php >
18
9
<env name =" APP_ENV" value =" testing" />
10
+ <env name =" CACHE_STORE" value =" array" />
11
+ <env name =" DATABASE_URL" value =" sqlite:///:memory:" />
19
12
</php >
20
13
</phpunit >
You can’t perform that action at this time.
0 commit comments