mirror of
https://github.com/crazywhalecc/static-php-cli.git
synced 2026-03-17 20:34:51 +08:00
5 lines
253 B
Bash
Executable File
5 lines
253 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
# This script runs the 'spc' command with Xdebug enabled for debugging purposes.
|
|
php -d xdebug.mode=debug -d xdebug.client_host=127.0.0.1 -d xdebug.client_port=9003 -d xdebug.start_with_request=yes "$(dirname "$0")/../bin/spc" "$@"
|