├── .gitignore ├── .travis.yml ├── README.md ├── bin └── xdebug ├── composer.json ├── phpunit.xml.dist ├── scripts ├── clean-code.sh └── run-tests.sh ├── src └── Command │ ├── BaseCommand.php │ ├── XDebugDisableCommand.php │ ├── XDebugEnableCommand.php │ ├── XDebugStatusCommand.php │ └── XDebugToggleCommand.php └── tests ├── fixtures ├── xdebug-disabled.ini ├── xdebug-enabled.ini └── xdebug-missing.ini └── xDebugToggleCommandTest.php /.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | vendor 3 | tmp/* 4 | build/logs/* -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmash/xdebug-toggle/HEAD/.travis.yml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmash/xdebug-toggle/HEAD/README.md -------------------------------------------------------------------------------- /bin/xdebug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmash/xdebug-toggle/HEAD/bin/xdebug -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmash/xdebug-toggle/HEAD/composer.json -------------------------------------------------------------------------------- /phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmash/xdebug-toggle/HEAD/phpunit.xml.dist -------------------------------------------------------------------------------- /scripts/clean-code.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmash/xdebug-toggle/HEAD/scripts/clean-code.sh -------------------------------------------------------------------------------- /scripts/run-tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmash/xdebug-toggle/HEAD/scripts/run-tests.sh -------------------------------------------------------------------------------- /src/Command/BaseCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmash/xdebug-toggle/HEAD/src/Command/BaseCommand.php -------------------------------------------------------------------------------- /src/Command/XDebugDisableCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmash/xdebug-toggle/HEAD/src/Command/XDebugDisableCommand.php -------------------------------------------------------------------------------- /src/Command/XDebugEnableCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmash/xdebug-toggle/HEAD/src/Command/XDebugEnableCommand.php -------------------------------------------------------------------------------- /src/Command/XDebugStatusCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmash/xdebug-toggle/HEAD/src/Command/XDebugStatusCommand.php -------------------------------------------------------------------------------- /src/Command/XDebugToggleCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmash/xdebug-toggle/HEAD/src/Command/XDebugToggleCommand.php -------------------------------------------------------------------------------- /tests/fixtures/xdebug-disabled.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmash/xdebug-toggle/HEAD/tests/fixtures/xdebug-disabled.ini -------------------------------------------------------------------------------- /tests/fixtures/xdebug-enabled.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmash/xdebug-toggle/HEAD/tests/fixtures/xdebug-enabled.ini -------------------------------------------------------------------------------- /tests/fixtures/xdebug-missing.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmash/xdebug-toggle/HEAD/tests/fixtures/xdebug-missing.ini -------------------------------------------------------------------------------- /tests/xDebugToggleCommandTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmash/xdebug-toggle/HEAD/tests/xDebugToggleCommandTest.php --------------------------------------------------------------------------------