Releases: moderntribe/square1-global-docker
Releases · moderntribe/square1-global-docker
3.1.0
Adds the so xdebug
command in order to disable/enable xdebug. Disabling xdebug can improve performance, especially on MacOS machines.
Read the docs
After upgrading to this version, you'll want to update autocompletion:
MacOS
Run the following commands:
sudo curl -s 'https://raw.githubusercontent.com/moderntribe/square1-global-docker/master/squareone.autocompletion' -o $(brew --prefix)/etc/bash_completion.d/squareone.autocompletion
curl -s 'https://raw.githubusercontent.com/moderntribe/square1-global-docker/master/squareone.autocompletion' -o ~/.squareone_completion && echo "source ~/.squareone_completion" >> ~/.zshrc
Linux Bash
sudo curl -s 'https://raw.githubusercontent.com/moderntribe/square1-global-docker/master/squareone.autocompletion' -o /etc/bash_completion.d/squareone.autocompletion
3.0.6
3.0.5
3.0.4
3.0.3
3.0.2
3.0.1
- Refactor how we detect if we're in a SquareOne project to traverse directories up and look for a
squareone.yml
ordev/docker/docker-compose.yml
file instead of using git root detection to allow this to be used outside of git and also give monorepo support where there could be multiple SquareOne local environments in a single repo.
3.0.0
Full rewrite using Laravel Zero. Many new features/commands, see the README.md in the master branch.
If you have MySQL problems after upgrading, follow these steps: https://agency.tri.be/wiki/view/SquareOne_Local_Environment
2.2.1-beta
- fix bug where
wp
andtest
commands were always running with xdebug on - add support for
-x
in addition to--xdebug
forwp
andtest
commands - disable codeception cleaning with
so test --no-clean -- ....
2.2.0-beta
- New command
so migrate-domain
which will automatically convert a prod database dump to use on your local - Commands are a lot less noisy now, use the
so -v
flag if you'd like to see the full output. - Fixed a bug where
so self:update-check
was considered a local command and threw errors if run outside of a local folder so start
no longer automatically opens your project in your browser, useso start --browser
orso start -b
to keep using this behavior- Added new composer local config variables in
squareone.yml
. You may have to customize these for your project depending on how your local's docker-compose.yml is configured. Either update your docker-compose.yml or provide a customsquareone.yml
in the root of your project with the following overrides to match the docker-compose.yml's composer volumes:
# Local Docker
local-docker:
# path to the composer cache directory (relative to the docker directory e.g. dev/docker/)
composer-cache: 'composer/cache'
# path to the composer auth file (relative to the docker directory)
composer-auth: 'composer/auth.json'