https://github.com/takuya/artisan_serve_debug
Orverride 'artisan serve' for debug config
https://github.com/takuya/artisan_serve_debug
Last synced: 11 months ago
JSON representation
Orverride 'artisan serve' for debug config
- Host: GitHub
- URL: https://github.com/takuya/artisan_serve_debug
- Owner: takuya
- Created: 2020-12-07T04:12:56.000Z (over 5 years ago)
- Default Branch: main
- Last Pushed: 2020-12-07T04:51:54.000Z (over 5 years ago)
- Last Synced: 2025-06-15T22:06:50.943Z (12 months ago)
- Language: PHP
- Size: 6.84 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Xdebug enabled laravel artisan serve
` artisan serve` can't accept Xdebug option. becaucse ` artisan serve` has no way to pass `-d` options.
This package add artisan command ` artisan serve:debug`.
## Installation
```
./composer.phar config repositories.github-takuya vcs https://github.com/takuya/artisan_serve_debug
./composer.phar require --dev -n takuya/artisan_serve_debug:dev-main
```
## start builtin-WebServer with debug
```
php artisan serve:debug
```
## Another Way to enable xdebug
This package shipped with ` artisan serve:use_ini` command.
This command enable to load addtional `.ini` which placed at project root.
```
cd $laravel_procject
touch .user.ini
php artisan serve:use_ini
```