File tree Expand file tree Collapse file tree 5 files changed +31
-38
lines changed Expand file tree Collapse file tree 5 files changed +31
-38
lines changed Original file line number Diff line number Diff line change @@ -13,12 +13,12 @@ jobs:
13
13
strategy :
14
14
fail-fast : true
15
15
matrix :
16
- php : ['8.0 ', '8.1 ', '8.2 ']
17
- stability : ['prefer-lowest', prefer-stable]
18
- laravel : ['^9 .0', '^10 .0']
16
+ php : ['8.1 ', '8.2 ', '8.3 ']
17
+ stability : ['prefer-lowest', ' prefer-stable' ]
18
+ laravel : ['^10 .0', '^11 .0']
19
19
exclude :
20
- - php : ' 8.0 '
21
- laravel : ' ^10 .0'
20
+ - php : ' 8.1 '
21
+ laravel : ' ^11 .0'
22
22
23
23
name : ' PHP ${{ matrix.php }} - Laravel: ${{matrix.laravel}} - ${{ matrix.stability }}'
24
24
50
50
run : ./vendor/bin/pint --test
51
51
52
52
- name : Execute tests
53
- run : sleep 10 && vendor/bin/phpunit --verbose
53
+ run : sleep 10 && vendor/bin/phpunit
Original file line number Diff line number Diff line change
1
+ # Changelog
2
+
3
+ All notable changes to this project will be documented in this file.
4
+
5
+ ## [ unreleased] ( https://github.com/vyuldashev/laravel-queue-rabbitmq/compare/v13.3.0...master )
6
+
7
+ ## [ 14.0.0]
8
+ - First release compatible with Laravel 11
Original file line number Diff line number Diff line change 11
11
"require" : {
12
12
"php" : " ^8.0" ,
13
13
"ext-json" : " *" ,
14
- "illuminate/queue" : " ^9 .0|^10 .0" ,
14
+ "illuminate/queue" : " ^10 .0|^11 .0" ,
15
15
"php-amqplib/php-amqplib" : " ^v3.6"
16
16
},
17
17
"require-dev" : {
18
- "phpunit/phpunit" : " ^9.3 " ,
18
+ "phpunit/phpunit" : " ^10.0|^11.0 " ,
19
19
"mockery/mockery" : " ^1.0" ,
20
20
"laravel/horizon" : " ^5.0" ,
21
- "orchestra/testbench" : " ^7.0|^8.0" ,
21
+ "orchestra/testbench" : " ^7.0|^8.0|^9.0 " ,
22
22
"laravel/pint" : " ^1.2" ,
23
- "laravel/framework" : " ^9.0|^10.0"
23
+ "laravel/framework" : " ^9.0|^10.0|^11.0 "
24
24
},
25
25
"autoload" : {
26
26
"psr-4" : {
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" backupGlobals =" false" backupStaticAttributes =" false"
3
- beStrictAboutTestsThatDoNotTestAnything =" false" bootstrap =" vendor/autoload.php" colors =" true"
4
- convertErrorsToExceptions =" true" convertNoticesToExceptions =" true" convertWarningsToExceptions =" true"
5
- processIsolation =" false" stopOnError =" false" stopOnFailure =" false" verbose =" true"
6
- xsi : noNamespaceSchemaLocation =" https://schema.phpunit.de/9.3/phpunit.xsd" >
7
- <coverage >
8
- <include >
9
- <directory suffix =" .php" >src/</directory >
10
- </include >
11
- <report >
12
- <html outputDirectory =" build/coverage" />
13
- </report >
14
- </coverage >
15
- <testsuites >
16
- <testsuite name =" Package Test Suite" >
17
- <directory suffix =" .php" >./tests/</directory >
18
- </testsuite >
19
- </testsuites >
20
- <php >
21
- <env name =" HOST" value =" 127.0.0.1" />
22
- <env name =" PORT" value =" 5672" />
23
- <env name =" PORT_SSL" value =" 5671" />
24
- <env name =" RABBITMQ_SSL_CAFILE" value =" ./tests/files/rootCA.pem" />
25
- </php >
26
- <logging />
2
+ <phpunit xmlns : xsi =" http://www.w3.org/2001/XMLSchema-instance" backupGlobals =" false" beStrictAboutTestsThatDoNotTestAnything =" false" bootstrap =" vendor/autoload.php" colors =" true" processIsolation =" false" stopOnError =" false" stopOnFailure =" false" xsi : noNamespaceSchemaLocation =" https://schema.phpunit.de/11.0/phpunit.xsd" cacheDirectory =" .phpunit.cache" backupStaticProperties =" false" >
3
+ <testsuites >
4
+ <testsuite name =" Package Test Suite" >
5
+ <directory suffix =" Test.php" >./tests/</directory >
6
+ </testsuite >
7
+ </testsuites >
8
+ <php >
9
+ <env name =" HOST" value =" 127.0.0.1" />
10
+ <env name =" PORT" value =" 5672" />
11
+ <env name =" PORT_SSL" value =" 5671" />
12
+ <env name =" RABBITMQ_SSL_CAFILE" value =" ./tests/files/rootCA.pem" />
13
+ </php >
14
+ <logging />
27
15
</phpunit >
Original file line number Diff line number Diff line change 4
4
5
5
use PhpAmqpLib \Connection \AMQPSSLConnection ;
6
6
7
- /**
8
- * @group functional
9
- */
10
7
class SslQueueTest extends TestCase
11
8
{
12
9
public function setUp (): void
You can’t perform that action at this time.
0 commit comments