mirror of
https://github.com/crazywhalecc/static-php-cli.git
synced 2026-03-18 04:44:53 +08:00
5 lines
253 B
Plaintext
5 lines
253 B
Plaintext
|
|
#!/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" "$@"
|