-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* add PHP 8.2 to Actions * increase ubuntu version on pipelines * Counting Dispatched Messages (#295) * feat(assertions): adding assertions to count messages. * docs(changelog): breaking lines. * docs(testing): adding new functions in testing section. * docs(testing): fixing dispatch method. * Laravel 10 support --------- Co-authored-by: Tarsísio Xavier and Leonardo Lemos
- Loading branch information
1 parent
cf190b6
commit aa1307e
Showing
7 changed files
with
127 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,13 @@ | ||
FROM php:8.1-fpm-alpine | ||
FROM php:8.2-fpm-alpine | ||
|
||
COPY --from=composer:latest /usr/bin/composer /usr/bin/composer | ||
RUN apk --no-cache --update add libmemcached-dev zlib-dev libpng-dev libjpeg-turbo-dev freetype-dev libxml2-dev | ||
|
||
COPY --from=mlocati/php-extension-installer /usr/bin/install-php-extensions /usr/local/bin/ | ||
|
||
RUN docker-php-ext-configure gd --with-freetype --with-jpeg \ | ||
&& docker-php-ext-install -j$(nproc) gd sockets fileinfo dom xml simplexml pcntl | ||
&& docker-php-ext-install -j$(nproc) gd fileinfo dom xml simplexml pcntl | ||
|
||
RUN install-php-extensions sockets | ||
|
||
RUN mv "$PHP_INI_DIR/php.ini-development" "$PHP_INI_DIR/php.ini" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,7 +8,7 @@ | |
{ | ||
"name": "Kauan Sousa", | ||
"email": "[email protected]", | ||
"role": "Maintainer" | ||
"role": "Author" | ||
}, | ||
{ | ||
"name": "Leonardo Lemos", | ||
|
@@ -21,14 +21,14 @@ | |
"ext-json": "*", | ||
"ext-sockets": "*", | ||
"php-amqplib/php-amqplib": "^3.1", | ||
"laravel/framework": "^6.20.12|^7.30.4|>=8.22.1|>=9.2", | ||
"laravel/framework": "^6.20.12|^7.30.4|>=8.22.1|>=9.2|^10.0", | ||
"webpatser/laravel-uuid": "^4.0" | ||
}, | ||
"require-dev": { | ||
"ext-curl": "*", | ||
"phpunit/phpunit": "^9.5", | ||
"squizlabs/php_codesniffer": "^2.5", | ||
"orchestra/testbench": "^4.18|^6.21", | ||
"orchestra/testbench": "^4.18|^6.21|^8.0", | ||
"mockery/mockery": "^1.3" | ||
}, | ||
"autoload": { | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters