Skip to content

Commit edc022c

Browse files
committed
chore: Fixed Dockerfile.php7 xdebug version
1 parent f5c37eb commit edc022c

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ if ($validator->fails()) {
7676

7777
##### Error messages
7878

79-
To get the rows with validation errors and there errors. The validator expose `errors` method that can be used like so `$validator->errors()`.
79+
To get the rows with validation errors and their errors. The validator expose `errors` method that can be used like so `$validator->errors()`.
8080

8181
You can also customize the error messages for different validation rules and different attributes by passing a message array to the validator like so:
8282

@@ -310,4 +310,4 @@ The project run's automatic checks to make sure that the Symfony code standards
310310
So, before pushing or making any pull request run the below command:
311311

312312
* `composer test`: For running test
313-
* `composer fixlint`: For running php-cs-fixer to fix linting errors
313+
* `composer fix-lint`: For running php-cs-fixer to fix linting errors

docker/php/Dockerfile.php7

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ RUN apt-get update && apt-get install -y \
1010
zip \
1111
unzip
1212

13-
RUN pecl install xdebug \
13+
RUN pecl install xdebug-3.1.5 \
1414
&& docker-php-ext-enable xdebug
1515

1616
# Get latest Composer

0 commit comments

Comments
 (0)