├── .env.slic ├── .github └── workflows │ ├── publish-slic-docker-image.yml │ └── publish-wordpress-docker-image.yml ├── .gitignore ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── changelog.md ├── containers ├── scripts │ ├── before-npm.sh │ └── host-ip.sh ├── slic │ ├── .bashrc │ ├── Dockerfile │ ├── bashrc_scripts.sh │ ├── docker-php-ext-uopz.ini │ ├── fixuid.yml │ ├── php.ini │ ├── slic-entrypoint.sh │ ├── xdebug-off.sh │ └── xdebug-on.sh └── wordpress │ ├── Dockerfile │ ├── php.ini │ ├── xdebug-off.sh │ └── xdebug-on.sh ├── docs ├── M1-Mac.md ├── images │ ├── activation-deactivation-debug-phpstorm-config.png │ ├── slic-Xdebug-PhpStorm.png │ ├── slic-composer-cache.gif │ ├── slic-here-wp.gif │ ├── slic-here.gif │ ├── slic-init.gif │ ├── slic-target-example.png │ └── slic-use.gif ├── slicjson.md └── xdebug.md ├── includes ├── Spyc │ ├── LICENSE.txt │ └── Spyc.php └── polyfills.php ├── slic ├── slic-stack.site.yml ├── slic-stack.yml ├── slic.bat ├── slic.md ├── slic.php ├── src ├── cache.php ├── classes │ └── Cache.php ├── colors.php ├── commands.php ├── commands │ ├── airplane-mode.php │ ├── build-prompt.php │ ├── build-stack.php │ ├── build-subdir.php │ ├── cache.php │ ├── cc.php │ ├── cli.php │ ├── composer-cache.php │ ├── composer.php │ ├── config.php │ ├── dc.php │ ├── debug.php │ ├── down.php │ ├── exec.php │ ├── here.php │ ├── host-ip.php │ ├── info.php │ ├── init.php │ ├── interactive.php │ ├── logs.php │ ├── mysql.php │ ├── npm.php │ ├── php-version.php │ ├── phpcbf.php │ ├── phpcs.php │ ├── playwright.php │ ├── ps.php │ ├── reset.php │ ├── restart.php │ ├── run.php │ ├── shell.php │ ├── site-cli.php │ ├── ssh.php │ ├── start.php │ ├── stop.php │ ├── target.php │ ├── up.php │ ├── update-dump.php │ ├── update.php │ ├── upgrade.php │ ├── use.php │ ├── using.php │ └── xdebug.php ├── database.php ├── docker.php ├── env.php ├── notify.php ├── plugins.php ├── process.php ├── project.php ├── scaffold.php ├── scripts.php ├── services.php ├── shell.php ├── slic.php ├── themes.php ├── utils.php └── wordpress.php ├── tric └── tric.bat /.env.slic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellarwp/slic/HEAD/.env.slic -------------------------------------------------------------------------------- /.github/workflows/publish-slic-docker-image.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellarwp/slic/HEAD/.github/workflows/publish-slic-docker-image.yml -------------------------------------------------------------------------------- /.github/workflows/publish-wordpress-docker-image.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellarwp/slic/HEAD/.github/workflows/publish-wordpress-docker-image.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellarwp/slic/HEAD/.gitignore -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellarwp/slic/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellarwp/slic/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellarwp/slic/HEAD/README.md -------------------------------------------------------------------------------- /changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellarwp/slic/HEAD/changelog.md -------------------------------------------------------------------------------- /containers/scripts/before-npm.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellarwp/slic/HEAD/containers/scripts/before-npm.sh -------------------------------------------------------------------------------- /containers/scripts/host-ip.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellarwp/slic/HEAD/containers/scripts/host-ip.sh -------------------------------------------------------------------------------- /containers/slic/.bashrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellarwp/slic/HEAD/containers/slic/.bashrc -------------------------------------------------------------------------------- /containers/slic/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellarwp/slic/HEAD/containers/slic/Dockerfile -------------------------------------------------------------------------------- /containers/slic/bashrc_scripts.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellarwp/slic/HEAD/containers/slic/bashrc_scripts.sh -------------------------------------------------------------------------------- /containers/slic/docker-php-ext-uopz.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellarwp/slic/HEAD/containers/slic/docker-php-ext-uopz.ini -------------------------------------------------------------------------------- /containers/slic/fixuid.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellarwp/slic/HEAD/containers/slic/fixuid.yml -------------------------------------------------------------------------------- /containers/slic/php.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellarwp/slic/HEAD/containers/slic/php.ini -------------------------------------------------------------------------------- /containers/slic/slic-entrypoint.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | eval $(fixuid) 3 | tail -f /dev/null 4 | -------------------------------------------------------------------------------- /containers/slic/xdebug-off.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellarwp/slic/HEAD/containers/slic/xdebug-off.sh -------------------------------------------------------------------------------- /containers/slic/xdebug-on.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellarwp/slic/HEAD/containers/slic/xdebug-on.sh -------------------------------------------------------------------------------- /containers/wordpress/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellarwp/slic/HEAD/containers/wordpress/Dockerfile -------------------------------------------------------------------------------- /containers/wordpress/php.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellarwp/slic/HEAD/containers/wordpress/php.ini -------------------------------------------------------------------------------- /containers/wordpress/xdebug-off.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellarwp/slic/HEAD/containers/wordpress/xdebug-off.sh -------------------------------------------------------------------------------- /containers/wordpress/xdebug-on.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellarwp/slic/HEAD/containers/wordpress/xdebug-on.sh -------------------------------------------------------------------------------- /docs/M1-Mac.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellarwp/slic/HEAD/docs/M1-Mac.md -------------------------------------------------------------------------------- /docs/images/activation-deactivation-debug-phpstorm-config.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellarwp/slic/HEAD/docs/images/activation-deactivation-debug-phpstorm-config.png -------------------------------------------------------------------------------- /docs/images/slic-Xdebug-PhpStorm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellarwp/slic/HEAD/docs/images/slic-Xdebug-PhpStorm.png -------------------------------------------------------------------------------- /docs/images/slic-composer-cache.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellarwp/slic/HEAD/docs/images/slic-composer-cache.gif -------------------------------------------------------------------------------- /docs/images/slic-here-wp.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellarwp/slic/HEAD/docs/images/slic-here-wp.gif -------------------------------------------------------------------------------- /docs/images/slic-here.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellarwp/slic/HEAD/docs/images/slic-here.gif -------------------------------------------------------------------------------- /docs/images/slic-init.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellarwp/slic/HEAD/docs/images/slic-init.gif -------------------------------------------------------------------------------- /docs/images/slic-target-example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellarwp/slic/HEAD/docs/images/slic-target-example.png -------------------------------------------------------------------------------- /docs/images/slic-use.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellarwp/slic/HEAD/docs/images/slic-use.gif -------------------------------------------------------------------------------- /docs/slicjson.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellarwp/slic/HEAD/docs/slicjson.md -------------------------------------------------------------------------------- /docs/xdebug.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellarwp/slic/HEAD/docs/xdebug.md -------------------------------------------------------------------------------- /includes/Spyc/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellarwp/slic/HEAD/includes/Spyc/LICENSE.txt -------------------------------------------------------------------------------- /includes/Spyc/Spyc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellarwp/slic/HEAD/includes/Spyc/Spyc.php -------------------------------------------------------------------------------- /includes/polyfills.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellarwp/slic/HEAD/includes/polyfills.php -------------------------------------------------------------------------------- /slic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellarwp/slic/HEAD/slic -------------------------------------------------------------------------------- /slic-stack.site.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellarwp/slic/HEAD/slic-stack.site.yml -------------------------------------------------------------------------------- /slic-stack.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellarwp/slic/HEAD/slic-stack.yml -------------------------------------------------------------------------------- /slic.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellarwp/slic/HEAD/slic.bat -------------------------------------------------------------------------------- /slic.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellarwp/slic/HEAD/slic.md -------------------------------------------------------------------------------- /slic.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellarwp/slic/HEAD/slic.php -------------------------------------------------------------------------------- /src/cache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellarwp/slic/HEAD/src/cache.php -------------------------------------------------------------------------------- /src/classes/Cache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellarwp/slic/HEAD/src/classes/Cache.php -------------------------------------------------------------------------------- /src/colors.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellarwp/slic/HEAD/src/colors.php -------------------------------------------------------------------------------- /src/commands.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellarwp/slic/HEAD/src/commands.php -------------------------------------------------------------------------------- /src/commands/airplane-mode.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellarwp/slic/HEAD/src/commands/airplane-mode.php -------------------------------------------------------------------------------- /src/commands/build-prompt.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellarwp/slic/HEAD/src/commands/build-prompt.php -------------------------------------------------------------------------------- /src/commands/build-stack.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellarwp/slic/HEAD/src/commands/build-stack.php -------------------------------------------------------------------------------- /src/commands/build-subdir.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellarwp/slic/HEAD/src/commands/build-subdir.php -------------------------------------------------------------------------------- /src/commands/cache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellarwp/slic/HEAD/src/commands/cache.php -------------------------------------------------------------------------------- /src/commands/cc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellarwp/slic/HEAD/src/commands/cc.php -------------------------------------------------------------------------------- /src/commands/cli.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellarwp/slic/HEAD/src/commands/cli.php -------------------------------------------------------------------------------- /src/commands/composer-cache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellarwp/slic/HEAD/src/commands/composer-cache.php -------------------------------------------------------------------------------- /src/commands/composer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellarwp/slic/HEAD/src/commands/composer.php -------------------------------------------------------------------------------- /src/commands/config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellarwp/slic/HEAD/src/commands/config.php -------------------------------------------------------------------------------- /src/commands/dc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellarwp/slic/HEAD/src/commands/dc.php -------------------------------------------------------------------------------- /src/commands/debug.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellarwp/slic/HEAD/src/commands/debug.php -------------------------------------------------------------------------------- /src/commands/down.php: -------------------------------------------------------------------------------- 1 |