Skip to content

Commit 46de82d

Browse files
author
David Běhal
committed
Add l12 and fix docker compose
1 parent f7a3f9d commit 46de82d

File tree

4 files changed

+13
-10
lines changed

4 files changed

+13
-10
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,5 @@ composer.lock
55
.phpstorm.meta.php
66
phpunit.xml
77
.phpunit.result.cache
8+
.phpunit.cache
89
.php_cs.cache

composer.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,16 +11,16 @@
1111
"require": {
1212
"php": "^8.0",
1313
"ext-json": "*",
14-
"illuminate/queue": "^10.0|^11.0",
14+
"illuminate/queue": "^10.0|^11.0|^12.0",
1515
"php-amqplib/php-amqplib": "^v3.6"
1616
},
1717
"require-dev": {
1818
"phpunit/phpunit": "^10.0|^11.0",
1919
"mockery/mockery": "^1.0",
2020
"laravel/horizon": "^5.0",
21-
"orchestra/testbench": "^7.0|^8.0|^9.0",
21+
"orchestra/testbench": "^7.0|^8.0|^9.0|^10.0",
2222
"laravel/pint": "^1.2",
23-
"laravel/framework": "^9.0|^10.0|^11.0"
23+
"laravel/framework": "^9.0|^10.0|^11.0|^12.0"
2424
},
2525
"autoload": {
2626
"psr-4": {

docker-compose.yml

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
1-
version: '3.7'
2-
31
services:
2+
php:
3+
image: dejwcake/php8.4:1
4+
volumes:
5+
- .:/var/www/html:delegated
46

57
rabbitmq:
68
image: rabbitmq:3.8
@@ -17,8 +19,8 @@ services:
1719
- "./tests/files/rootCA.pem:/rootCA.pem:ro"
1820
- "./tests/files/rootCA.key:/rootCA.key:ro"
1921
ports:
20-
- "15671:15671"
21-
- "15672:15672"
22+
# - "15671:15671"
23+
# - "15672:15672"
2224
- "5671:5671"
2325
- "5672:5672"
2426

@@ -39,5 +41,5 @@ services:
3941
ports:
4042
- 15671:15671
4143
- 15672:15672
42-
- 5671:5671
43-
- 5672:5672
44+
# - 5671:5671
45+
# - 5672:5672

phpunit.xml.dist

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
</testsuite>
77
</testsuites>
88
<php>
9-
<env name="HOST" value="127.0.0.1"/>
9+
<env name="HOST" value="rabbitmq"/>
1010
<env name="PORT" value="5672"/>
1111
<env name="PORT_SSL" value="5671"/>
1212
<env name="RABBITMQ_SSL_CAFILE" value="./tests/files/rootCA.pem"/>

0 commit comments

Comments
 (0)