Skip to content

Commit 70e9fe0

Browse files
authored
Merge pull request #98 from iazaran/update-xdebug
Update Xdebug
2 parents 306b070 + a1d98e9 commit 70e9fe0

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ Export a specific table from DB to a CSV file
8787
Consider a route for your form like `/blog/create`; now use `blog-create` as an ID for form, and `blog-create-submit` for submit button ID. All form's buttons need to have constant `form-button` class.
8888

8989
#### Use Xdebug:
90-
Xdebug installed via Docker, so it is ready to use, just need to start debug in your IDE or start listen to the Xdebug.
90+
Xdebug installed via Docker, so it is ready to use, just need to start debug in your IDE or start listening to the Xdebug.
9191

9292
#### RESTful API sample
9393

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
}
2626
},
2727
"require": {
28-
"php": ">=8.1",
28+
"php": ">=8.3",
2929
"ext-pdo": "*",
3030
"ext-json": "*",
3131
"ext-gd": "*",

composer.lock

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docker-compose.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ services:
9191
- MYSQL_USER=mvc_user
9292
- MYSQL_PASSWORD=mvc_Pass995!
9393
ports:
94-
- '3306:3306'
94+
- '3307:3306'
9595
networks:
9696
- php-mvc-network
9797

docker/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ RUN pecl install grpc \
1818
&& docker-php-ext-enable grpc
1919
RUN pecl install protobuf \
2020
&& docker-php-ext-enable protobuf
21-
RUN pecl install xdebug-3.3.0alpha3 \
21+
RUN pecl install xdebug \
2222
&& docker-php-ext-enable xdebug
2323

2424
RUN curl -sS https://getcomposer.org/installer | php -- --install-dir=/usr/local/bin --filename=composer

0 commit comments

Comments
 (0)