Skip to content

Commit

Permalink
Merge pull request #98 from iazaran/update-xdebug
Browse files Browse the repository at this point in the history
Update Xdebug
  • Loading branch information
iazaran authored Jan 2, 2024
2 parents 306b070 + a1d98e9 commit 70e9fe0
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ Export a specific table from DB to a CSV file
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.

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

#### RESTful API sample

Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
}
},
"require": {
"php": ">=8.1",
"php": ">=8.3",
"ext-pdo": "*",
"ext-json": "*",
"ext-gd": "*",
Expand Down
4 changes: 2 additions & 2 deletions composer.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ services:
- MYSQL_USER=mvc_user
- MYSQL_PASSWORD=mvc_Pass995!
ports:
- '3306:3306'
- '3307:3306'
networks:
- php-mvc-network

Expand Down
2 changes: 1 addition & 1 deletion docker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ RUN pecl install grpc \
&& docker-php-ext-enable grpc
RUN pecl install protobuf \
&& docker-php-ext-enable protobuf
RUN pecl install xdebug-3.3.0alpha3 \
RUN pecl install xdebug \
&& docker-php-ext-enable xdebug

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

0 comments on commit 70e9fe0

Please sign in to comment.