├── .gitignore ├── README.md ├── .gitignore_global ├── zsh ├── path.zsh ├── .zshrc ├── aliases.zsh └── functions.zsh ├── LICENSE.md ├── install.sh ├── Brewfile └── Brewfile.lock.json /.gitignore: -------------------------------------------------------------------------------- 1 | zsh/plugins/** -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Dotfiles 2 | 3 | ❄️ Personal set of configurations for macOS 4 | 5 | 1. Git clone wherever 6 | 2. Make sure dotfiles fit your needs 7 | 3. Run `install.sh` script 8 | -------------------------------------------------------------------------------- /.gitignore_global: -------------------------------------------------------------------------------- 1 | # Compiled source # 2 | ################### 3 | *.com 4 | *.class 5 | *.dll 6 | *.exe 7 | *.o 8 | dist/ 9 | 10 | # Packages # 11 | ############ 12 | # it's better to unpack these files and commit the raw source 13 | # git has its own built in compression methods 14 | *.7z 15 | *.dmg 16 | *.gz 17 | *.iso 18 | *.jar 19 | *.rar 20 | *.tar 21 | 22 | # Logs and databases # 23 | ###################### 24 | *.log 25 | *.sql 26 | *.sqlite 27 | 28 | # OS generated files # 29 | ###################### 30 | .DS_Store 31 | .DS_Store? 32 | ._* 33 | .Spotlight-V100 34 | .Trashes 35 | ehthumbs.db 36 | Thumbs.db 37 | .idea/ 38 | .vscode 39 | .vagrant/ 40 | .nova/ 41 | -------------------------------------------------------------------------------- /zsh/path.zsh: -------------------------------------------------------------------------------- 1 | # Paths ordered by increasing priority. 2 | 3 | # Global bin directories 4 | export PATH="/opt/local/bin:/opt/local/sbin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin" 5 | 6 | # Global composer 7 | export PATH="$HOME/.composer/vendor/bin:$PATH" 8 | 9 | # VS Code 10 | export PATH="/Applications/Visual\ Studio\ Code.app/Contents/Resources/app/bin:$PATH" 11 | 12 | # RabbitMQ 13 | export PATH="/usr/local/opt/rabbitmq/sbin:$PATH" 14 | 15 | # DotNet for Unity 16 | export PATH="/usr/local/share/dotnet:$PATH" 17 | 18 | # Cargo / Rust 19 | export PATH="$HOME/.cargo/bin:$PATH" 20 | 21 | # Solana 22 | export PATH="$HOME/.local/share/solana/install/active_release/bin:$PATH" 23 | export PATH="/opt/homebrew/opt/gnu-tar/libexec/gnubin:$PATH" # Override tar binary for Solana. 24 | 25 | # JetBrains Toolbox 26 | export PATH="$HOME/.local/share/JetBrains/Toolbox/bin:$PATH" 27 | 28 | # Local bin directories 29 | export PATH="./bin:./vendor/bin:./node_modules/.bin:$PATH" 30 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2020 Loris Leiva 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /zsh/.zshrc: -------------------------------------------------------------------------------- 1 | # Global options 2 | export DOTFILES=$HOME/Code/dotfiles 3 | export ZSH=$HOME/.oh-my-zsh 4 | export EDITOR=code 5 | export ANSIBLE_VAULT_PASSWORD_FILE=~/.vault-password 6 | 7 | # Disables telemetry everywhere. 8 | export DO_NOT_TRACK=1 9 | 10 | # Oh my zsh configurations. 11 | ZSH_THEME="" 12 | ZSH_CUSTOM=$DOTFILES/zsh 13 | unsetopt nomatch 14 | plugins=(zsh-autosuggestions zsh-syntax-highlighting) 15 | source $ZSH/oh-my-zsh.sh 16 | 17 | # Autojump 18 | [ -f /opt/homebrew/etc/profile.d/autojump.sh ] && . /opt/homebrew/etc/profile.d/autojump.sh 19 | 20 | # iTerm shell integration 21 | test -e "${HOME}/.iterm2_shell_integration.zsh" && source "${HOME}/.iterm2_shell_integration.zsh" 22 | 23 | # Homebrew binaries 24 | eval "$(/opt/homebrew/bin/brew shellenv)" 25 | eval "$(thefuck --alias)" 26 | eval "$(gh completion -s zsh)" 27 | 28 | # Nvm 29 | export NVM_DIR="$HOME/.nvm" 30 | [ -s "$(brew --prefix)/opt/nvm/nvm.sh" ] && . "$(brew --prefix)/opt/nvm/nvm.sh" # This loads nvm 31 | [ -s "$(brew --prefix)/opt/nvm/etc/bash_completion.d/nvm" ] && . "$(brew --prefix)/opt/nvm/etc/bash_completion.d/nvm" # This loads nvm bash_completion 32 | 33 | # Fuzzy search 34 | [ -f ~/.fzf.zsh ] && source ~/.fzf.zsh 35 | 36 | # Rust/Solana shit 37 | export CPATH="/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include" 38 | 39 | # https://github.com/sindresorhus/pure 40 | fpath+=/opt/homebrew/share/zsh/site-functions 41 | autoload -U promptinit 42 | promptinit 43 | prompt pure 44 | -------------------------------------------------------------------------------- /install.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | # ------------------------------------------------------------------------------ 4 | # Configurations. 5 | # ------------------------------------------------------------------------------ 6 | 7 | DOTFILES=$HOME/Code/dotfiles 8 | 9 | echo "Setting up your Mac..." 10 | 11 | # ------------------------------------------------------------------------------ 12 | # Install Brew and its dependencies. 13 | # ------------------------------------------------------------------------------ 14 | 15 | if test ! $(which brew); then 16 | /bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)" 17 | fi 18 | 19 | brew update 20 | brew tap homebrew/bundle 21 | brew bundle 22 | 23 | # ------------------------------------------------------------------------------ 24 | # GPG Agent. Avoid having to enter the paraphrase all the time. 25 | # ------------------------------------------------------------------------------ 26 | 27 | echo "pinentry-program /opt/homebrew/bin/pinentry-mac" >>~/.gnupg/gpg-agent.conf 28 | killall gpg-agent 29 | 30 | # ------------------------------------------------------------------------------ 31 | # Install PECL extensions. 32 | # ------------------------------------------------------------------------------ 33 | 34 | sudo pecl install imagick xdebug 35 | 36 | # ------------------------------------------------------------------------------ 37 | # Global shell configurations. 38 | # ------------------------------------------------------------------------------ 39 | 40 | # Prepare NVM config folder. 41 | mkdir -p ~/.nvm 42 | 43 | # Use global .gitignore file. 44 | git config --global core.excludesfile $DOTFILES/.gitignore_global 45 | 46 | # Use zsh as default shell. 47 | chsh -s $(which zsh) 48 | 49 | # Link .zshrc file. 50 | touch ~/.zshrc 51 | echo "source \$HOME/Code/dotfiles/zsh/.zshrc" > ~/.zshrc 52 | 53 | # Install Oh My Zsh. 54 | sh -c "$(curl -fsSL https://raw.githubusercontent.com/ohmyzsh/ohmyzsh/master/tools/install.sh)" 55 | git clone https://github.com/zsh-users/zsh-syntax-highlighting.git ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-syntax-highlighting 56 | git clone https://github.com/zsh-users/zsh-autosuggestions ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-autosuggestions 57 | 58 | # ------------------------------------------------------------------------------ 59 | # Install Composer dependencies. 60 | # ------------------------------------------------------------------------------ 61 | 62 | composer global require laravel/valet 63 | valet install 64 | -------------------------------------------------------------------------------- /zsh/aliases.zsh: -------------------------------------------------------------------------------- 1 | # Configurations 2 | alias dotf="cd $DOTFILES && $EDITOR $DOTFILES" 3 | 4 | # Directories 5 | alias drive="cd ~/Google\ Drive" 6 | alias dl="cd ~/Downloads" 7 | alias dt="cd ~/Desktop" 8 | 9 | # Laravel, php 10 | alias a="php artisan" 11 | alias fresh="php artisan migrate:fresh --seed" 12 | alias routes="php artisan route:list" 13 | alias cr="composer require" 14 | alias ci="composer install" 15 | alias cu="composer update" 16 | alias cda="composer dump-autoload -o" 17 | alias p="phpunit" 18 | alias pstop="phpunit --order-by=defects --stop-on-failure" 19 | alias pfilter="phpunit --filter" 20 | 21 | # Npm, Yarn, Pnpm 22 | alias ni="npm install" 23 | alias nr="npm run" 24 | alias w="npm run watch" 25 | alias hot="npm run hot" 26 | alias pn="pnpm" 27 | alias pni="pnpm install" 28 | 29 | # Git 30 | alias g="git" 31 | alias gs="git status" 32 | alias gco="git checkout" 33 | alias gb="git checkout -b" 34 | alias m="git checkout main && git pull" 35 | alias gl="git log --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset' --abbrev-commit" 36 | alias nah="git reset --hard && git clean -df" 37 | alias push="git push" 38 | alias pull="git pull --rebase" 39 | 40 | # List (basic, all, directories) 41 | alias ll="ls -lh" 42 | alias la="ls -lah" 43 | alias lsd="ls -lh | grep --color=never '^d'" 44 | 45 | # Command manipulations 46 | alias h="history | tail -10" 47 | alias copy="tr -d '\n' | pbcopy" 48 | alias copyssh="pbcopy < $HOME/.ssh/id_ed25519.pub" 49 | alias shrug="echo '¯\_(ツ)_/¯' | pbcopy" 50 | alias map="xargs -n1" 51 | alias sudo='sudo ' # Enable aliases to be sudo’ed 52 | alias mux='tmuxinator' 53 | alias close='tmux detach-client' 54 | alias ping='prettyping --nolegend' 55 | alias preview="fzf --preview 'bat --color \"always\" {}'" 56 | alias bundle="brew bundle --file=\"$DOTFILES/Brewfile\"" 57 | 58 | # Quick functions 59 | alias reload="exec ${SHELL} -l" 60 | alias afk="/System/Library/CoreServices/Menu\ Extras/User.menu/Contents/Resources/CGSession -suspend" 61 | alias flushdns="sudo dscacheutil -flushcache; sudo killall -HUP mDNSResponder" 62 | alias prunenodemodules="find . -name 'node_modules' -type d -prune -exec rm -rf '{}' +" 63 | 64 | # HTTP request helpers 65 | for method in GET HEAD POST PUT DELETE TRACE OPTIONS; do 66 | alias "${method}"="lwp-request -m '${method}'" 67 | done 68 | 69 | # Miscellaneous getters 70 | alias week='date +%V' 71 | alias path='echo -e ${PATH//:/\\n}' 72 | alias ip="dig +short myip.opendns.com @resolver1.opendns.com" 73 | alias iplocal="ifconfig | grep 'inet ' | grep -Fv 127.0.0.1 | awk '{print \$2}'" 74 | alias ips="ifconfig -a | grep -o 'inet6\? \(addr:\)\?\s\?\(\(\([0-9]\+\.\)\{3\}[0-9]\+\)\|[a-fA-F0-9:]\+\)' | awk '{ sub(/inet6? (addr:)? ?/, \"\"); print }'" 75 | 76 | # Metaplex 77 | alias mplp="pnpm programs:build && pnpm generate && pnpm validator" 78 | alias mplc="pnpm build && pnpm test" 79 | -------------------------------------------------------------------------------- /zsh/functions.zsh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | 3 | mkd() { 4 | mkdir -p "$@" && cd "$_" 5 | } 6 | 7 | new() { 8 | if [[ $1 =~ "db|database" ]]; then 9 | mysql -uroot -e "create database $2;" 10 | fi 11 | } 12 | 13 | archive() { 14 | zip -r "$1".zip -i "$1" 15 | } 16 | 17 | weather() { 18 | city="$1" 19 | 20 | if [ -z "$city" ]; then 21 | city="Alhaurin+el+grande" 22 | fi 23 | 24 | eval "curl http://wttr.in/${city}" 25 | } 26 | 27 | fs() { 28 | if du -b /dev/null >/dev/null 2>&1; then 29 | local arg=-sbh 30 | else 31 | local arg=-sh 32 | fi 33 | if [[ -n "$@" ]]; then 34 | du $arg -- "$@" 2>/dev/null 35 | else 36 | du $arg * .[^.]* 2>/dev/null 37 | fi 38 | } 39 | 40 | fso() { 41 | fs "$@" | gsort -hr 42 | } 43 | 44 | json() { 45 | if [ -t 0 ]; then # argument 46 | python -mjson.tool <<<"$*" | pygmentize -l javascript 47 | else # pipe 48 | python -mjson.tool | pygmentize -l javascript 49 | fi 50 | } 51 | 52 | count() { 53 | if [ -t 0 ]; then # argument 54 | wc -l "$*" 55 | else # pipe 56 | wc -l 57 | fi 58 | } 59 | 60 | digga() { 61 | dig +nocmd "$1" any +multiline +noall +answer 62 | } 63 | 64 | o() { 65 | if [ $# -eq 0 ]; then 66 | open . 67 | else 68 | open "$@" 69 | fi 70 | } 71 | 72 | c() { 73 | if [ $# -eq 0 ]; then 74 | code . 75 | else 76 | code "$@" 77 | fi 78 | } 79 | 80 | pstorm() { 81 | if [ $# -eq 0 ]; then 82 | phpstorm . 83 | else 84 | phpstorm "$@" 85 | fi 86 | } 87 | 88 | tre() { 89 | tree -aC -I '.git|node_modules|bower_components' --dirsfirst "$@" | less -FRNX 90 | } 91 | 92 | emptytrash() { 93 | sudo rm -rf /Volumes/*/.Trashes/* 94 | sudo rm -rf ~/.Trash/* 95 | sudo rm -rf /private/var/log/asl/*.asl 96 | sqlite3 ~/Library/Preferences/com.apple.LaunchServices.QuarantineEventsV* 'delete from LSQuarantineEvent' 97 | echo 'Whirrrshhhhhhhcccchhh' 98 | } 99 | 100 | phpini() { 101 | php --ini | grep Loaded | cut -d" " -f12 102 | } 103 | 104 | xon() { 105 | sed -i '' 's/^;zend_extension="xdebug\.so"/zend_extension="xdebug\.so"/' $(phpini) 106 | } 107 | 108 | xoff() { 109 | sed -i '' 's/^zend_extension="xdebug\.so"/;zend_extension="xdebug\.so"/' $(phpini) 110 | } 111 | 112 | phpunitc() { 113 | xon 114 | phpunit --coverage-html build 115 | xoff 116 | } 117 | 118 | scheduler() { 119 | while :; do 120 | php artisan schedule:run 121 | echo "Sleeping 60 seconds..." 122 | sleep 60 123 | done 124 | } 125 | 126 | homestead() { 127 | (cd ~/Homestead && vagrant $*) 128 | } 129 | 130 | php80() { 131 | brew unlink php@8.1 132 | brew link --force php@8.0 133 | } 134 | 135 | php81() { 136 | brew unlink php@8.0 137 | brew link --force php@8.1 138 | } 139 | -------------------------------------------------------------------------------- /Brewfile: -------------------------------------------------------------------------------- 1 | # Taps 2 | tap 'blendle/blendle' 3 | tap 'homebrew/bundle' 4 | tap 'homebrew/cask-versions' 5 | tap 'homebrew/services' 6 | tap 'shivammathur/php' 7 | tap 'withgraphite/tap' 8 | 9 | # ------------------------------------------------------------------------------ 10 | # Command line interface from brew 11 | # ------------------------------------------------------------------------------ 12 | 13 | # Install ZSH 14 | brew 'zsh' 15 | brew 'zsh-completions' 16 | 17 | # Install Utilities 18 | brew 'coreutils' 19 | brew 'findutils' 20 | brew 'bash' 21 | brew 'gifski' 22 | brew 'grep' 23 | brew 'telnet' 24 | 25 | # Binaries 26 | brew 'ack' 27 | brew 'autojump' 28 | brew 'bat' 29 | brew 'dasel' 30 | brew 'doctl' 31 | brew 'fzf' 32 | brew 'flock' 33 | brew 'gh' 34 | brew 'git' 35 | brew 'gnu-tar' 36 | brew 'gnupg' 37 | brew 'gpg' 38 | brew 'graphviz' 39 | brew 'helm' 40 | brew 'httpie' 41 | brew 'hugo' 42 | brew 'jq' 43 | brew 'kns' 44 | brew 'mas' 45 | brew 'openssl@3' 46 | brew 'pidof' 47 | brew 'pinentry-mac' 48 | brew 'prettyping' 49 | brew 'pure' 50 | brew 'stern' 51 | brew 'thefuck' 52 | brew 'tldr' 53 | brew 'tmux' 54 | brew 'tmuxinator' 55 | brew 'tree' 56 | brew 'watch' 57 | brew 'withgraphite/tap/graphite' 58 | brew 'wget' 59 | 60 | # PHP 61 | brew 'composer' 62 | brew 'shivammathur/php/php@8.0' 63 | brew 'php@8.1' 64 | brew 'php@8.2' 65 | brew 'php-code-sniffer' 66 | brew 'pkg-config' 67 | brew 'imagemagick' 68 | 69 | # Development 70 | brew 'nvm' 71 | brew 'pnpm' 72 | brew 'yarn' 73 | 74 | # Database & servers 75 | brew 'ansible' 76 | brew 'dnsmasq' 77 | brew 'mysql' 78 | brew 'nginx' 79 | brew 'rabbitmq' 80 | brew 'redis' 81 | brew 'sqlite' 82 | 83 | # ------------------------------------------------------------------------------ 84 | # Applications from brew cask 85 | # ------------------------------------------------------------------------------ 86 | 87 | # Utils 88 | cask 'bartender' 89 | cask 'cleanshot' 90 | cask 'daisydisk' 91 | cask "elgato-control-center" 92 | cask 'flux' 93 | cask 'gpg-suite' 94 | cask 'imageoptim' 95 | cask 'moom' 96 | cask 'numi' 97 | cask 'pixelsnap' 98 | cask 'raycast' 99 | cask 'screenflow' 100 | 101 | # Browsers and drives 102 | cask 'arc' 103 | cask 'firefox' 104 | cask 'google-chrome' 105 | 106 | # Productivity 107 | cask 'anylist' 108 | cask 'notion' 109 | 110 | # Editors and git management 111 | cask 'github' 112 | cask 'jetbrains-toolbox' 113 | cask 'sublime-text' 114 | cask 'visual-studio-code' 115 | 116 | # Development 117 | cask 'docker' 118 | cask 'dbngin' 119 | cask 'insomnia' 120 | cask 'iterm2' 121 | cask 'ngrok' 122 | cask 'postman' 123 | cask 'tableplus' 124 | 125 | # Graphic design 126 | cask 'figma' 127 | cask 'sip' 128 | 129 | # Communication 130 | cask 'discord' 131 | cask 'signal' 132 | cask 'slack' 133 | cask 'telegram' 134 | cask 'whatsapp' 135 | cask 'zoom' 136 | 137 | # Others 138 | cask 'spotify' 139 | cask 'vlc' 140 | 141 | # ------------------------------------------------------------------------------ 142 | # Applications from Mac App Store 143 | # ------------------------------------------------------------------------------ 144 | 145 | mas 'Bear', id: 1091189122 146 | mas 'Spark Desktop', id: 6445813049 147 | -------------------------------------------------------------------------------- /Brewfile.lock.json: -------------------------------------------------------------------------------- 1 | { 2 | "entries": { 3 | "tap": { 4 | "homebrew/bundle": { 5 | "revision": "05e54ee3370fc118496ec6e3019527bf170c036c" 6 | }, 7 | "homebrew/cask": { 8 | "revision": "716d0607d94a88d2e2f4273f52c65fe86ac8e0e5" 9 | }, 10 | "homebrew/cask-versions": { 11 | "revision": "7284e67f1f70f1765e3a08cc584b293a2b9c17bf" 12 | }, 13 | "homebrew/services": { 14 | "revision": "cd15471840b86b7e44fa8c30dea00380604bb9a6" 15 | }, 16 | "blendle/blendle": { 17 | "revision": "3a868e95ed77025c927cef974c057833b3d5523f" 18 | }, 19 | "mongodb/brew": { 20 | "revision": "1bc63bca35f251ad6ad9874cece10f1cfca475d5" 21 | }, 22 | "shivammathur/php": { 23 | "revision": "37ed5f25855621229eb49df56e24ddfb38fdc855" 24 | }, 25 | "withgraphite/tap": { 26 | "revision": "9ccb7a6fc98d6c327b991f679b374f6c4db7bae1" 27 | } 28 | }, 29 | "brew": { 30 | "zsh": { 31 | "version": "5.9", 32 | "bottle": { 33 | "rebuild": 2, 34 | "root_url": "https://ghcr.io/v2/homebrew/core", 35 | "files": { 36 | "arm64_sonoma": { 37 | "cellar": "/opt/homebrew/Cellar", 38 | "url": "https://ghcr.io/v2/homebrew/core/zsh/blobs/sha256:2724270ffc9ec802c84de94466076bbff2e9de712dc4542e2b98646d5bdf9120", 39 | "sha256": "2724270ffc9ec802c84de94466076bbff2e9de712dc4542e2b98646d5bdf9120" 40 | }, 41 | "arm64_ventura": { 42 | "cellar": "/opt/homebrew/Cellar", 43 | "url": "https://ghcr.io/v2/homebrew/core/zsh/blobs/sha256:de824bdff0cf68af18e1ca615d3e0646968a9cc0411cde518c86ff4e446e75ed", 44 | "sha256": "de824bdff0cf68af18e1ca615d3e0646968a9cc0411cde518c86ff4e446e75ed" 45 | }, 46 | "arm64_monterey": { 47 | "cellar": "/opt/homebrew/Cellar", 48 | "url": "https://ghcr.io/v2/homebrew/core/zsh/blobs/sha256:9f2b18137c50145752b9c64f02a2be3ffbfedfcbff5b91ebe3f0d20358fe2a07", 49 | "sha256": "9f2b18137c50145752b9c64f02a2be3ffbfedfcbff5b91ebe3f0d20358fe2a07" 50 | }, 51 | "sonoma": { 52 | "cellar": "/usr/local/Cellar", 53 | "url": "https://ghcr.io/v2/homebrew/core/zsh/blobs/sha256:ab60dacfc4fa57a741cd735b268ef64e51bab181b39cfb3846f2a546c22793ff", 54 | "sha256": "ab60dacfc4fa57a741cd735b268ef64e51bab181b39cfb3846f2a546c22793ff" 55 | }, 56 | "ventura": { 57 | "cellar": "/usr/local/Cellar", 58 | "url": "https://ghcr.io/v2/homebrew/core/zsh/blobs/sha256:3e0713581f6c028b856556e9f5e2201e9fd9d333bc13fc6156bdb0c58d097626", 59 | "sha256": "3e0713581f6c028b856556e9f5e2201e9fd9d333bc13fc6156bdb0c58d097626" 60 | }, 61 | "monterey": { 62 | "cellar": "/usr/local/Cellar", 63 | "url": "https://ghcr.io/v2/homebrew/core/zsh/blobs/sha256:e09b2792c4d231b4917ebe8c3565ba66c22d15c5242043af47e3075f50470839", 64 | "sha256": "e09b2792c4d231b4917ebe8c3565ba66c22d15c5242043af47e3075f50470839" 65 | }, 66 | "x86_64_linux": { 67 | "cellar": "/home/linuxbrew/.linuxbrew/Cellar", 68 | "url": "https://ghcr.io/v2/homebrew/core/zsh/blobs/sha256:28d2fb59ee1c2db1ea2a0a2923201fde83b4b8cb2891ac3bbee288e7cf9cb2c6", 69 | "sha256": "28d2fb59ee1c2db1ea2a0a2923201fde83b4b8cb2891ac3bbee288e7cf9cb2c6" 70 | } 71 | } 72 | } 73 | }, 74 | "zsh-completions": { 75 | "version": "0.35.0", 76 | "bottle": { 77 | "rebuild": 0, 78 | "root_url": "https://ghcr.io/v2/homebrew/core", 79 | "files": { 80 | "all": { 81 | "cellar": ":any_skip_relocation", 82 | "url": "https://ghcr.io/v2/homebrew/core/zsh-completions/blobs/sha256:3a9005c599c91337f5d8689ae0f725f2d204f123dcd0aef68ee4279ba27eaf94", 83 | "sha256": "3a9005c599c91337f5d8689ae0f725f2d204f123dcd0aef68ee4279ba27eaf94" 84 | } 85 | } 86 | } 87 | }, 88 | "fish": { 89 | "version": "3.1.2", 90 | "bottle": { 91 | "rebuild": 0, 92 | "cellar": ":any_skip_relocation", 93 | "prefix": "/usr/local", 94 | "root_url": "https://homebrew.bintray.com/bottles", 95 | "files": { 96 | "big_sur": { 97 | "url": "https://homebrew.bintray.com/bottles/fish-3.1.2.big_sur.bottle.tar.gz", 98 | "sha256": "ef7f5a2fd69ba2baed78d02ee162cc8fb85644161dd765d47b570b56db9569cf" 99 | }, 100 | "catalina": { 101 | "url": "https://homebrew.bintray.com/bottles/fish-3.1.2.catalina.bottle.tar.gz", 102 | "sha256": "b158b7f8640feb7c622ff3ca92b1bd88565f274f3e761499f5926bb124eeff7d" 103 | }, 104 | "mojave": { 105 | "url": "https://homebrew.bintray.com/bottles/fish-3.1.2.mojave.bottle.tar.gz", 106 | "sha256": "6797636eaba364d0cbbc0459103a8767598e985f01846cca6cb57c986dfee7b8" 107 | }, 108 | "high_sierra": { 109 | "url": "https://homebrew.bintray.com/bottles/fish-3.1.2.high_sierra.bottle.tar.gz", 110 | "sha256": "2609577a0d9f6b661331adccf5d1d8e010662ffe128869757e0af9a6760e26fb" 111 | } 112 | } 113 | } 114 | }, 115 | "coreutils": { 116 | "version": "9.5", 117 | "bottle": { 118 | "rebuild": 0, 119 | "root_url": "https://ghcr.io/v2/homebrew/core", 120 | "files": { 121 | "arm64_sonoma": { 122 | "cellar": "/opt/homebrew/Cellar", 123 | "url": "https://ghcr.io/v2/homebrew/core/coreutils/blobs/sha256:b2c643420d7d9de89385d86e0c3f5e9f9ae2404ce378db574dabbfce3ca37a91", 124 | "sha256": "b2c643420d7d9de89385d86e0c3f5e9f9ae2404ce378db574dabbfce3ca37a91" 125 | }, 126 | "arm64_ventura": { 127 | "cellar": "/opt/homebrew/Cellar", 128 | "url": "https://ghcr.io/v2/homebrew/core/coreutils/blobs/sha256:0f889fb75ebc8e96aa1f38aff6ed1bc7e87c45b70f7644c7e1492f1f9480f352", 129 | "sha256": "0f889fb75ebc8e96aa1f38aff6ed1bc7e87c45b70f7644c7e1492f1f9480f352" 130 | }, 131 | "arm64_monterey": { 132 | "cellar": "/opt/homebrew/Cellar", 133 | "url": "https://ghcr.io/v2/homebrew/core/coreutils/blobs/sha256:43bb62929309c51bb600e0d156b107ef147094445b29ada1387c222d9a2465c4", 134 | "sha256": "43bb62929309c51bb600e0d156b107ef147094445b29ada1387c222d9a2465c4" 135 | }, 136 | "sonoma": { 137 | "cellar": "/usr/local/Cellar", 138 | "url": "https://ghcr.io/v2/homebrew/core/coreutils/blobs/sha256:19eccdcccfcacd67000acf89e3261174dfe30b0a764d10ccc39be82a4b37c0a5", 139 | "sha256": "19eccdcccfcacd67000acf89e3261174dfe30b0a764d10ccc39be82a4b37c0a5" 140 | }, 141 | "ventura": { 142 | "cellar": "/usr/local/Cellar", 143 | "url": "https://ghcr.io/v2/homebrew/core/coreutils/blobs/sha256:7c8c3c6eab6032c379bb7266bf78e25b3b3d38d167c4eee92a7c023b131b86e0", 144 | "sha256": "7c8c3c6eab6032c379bb7266bf78e25b3b3d38d167c4eee92a7c023b131b86e0" 145 | }, 146 | "monterey": { 147 | "cellar": "/usr/local/Cellar", 148 | "url": "https://ghcr.io/v2/homebrew/core/coreutils/blobs/sha256:44ce33f1d4d73b54bf312f48c9d93bd7a186f4ce1adc004c9f3168da004eee6c", 149 | "sha256": "44ce33f1d4d73b54bf312f48c9d93bd7a186f4ce1adc004c9f3168da004eee6c" 150 | }, 151 | "x86_64_linux": { 152 | "cellar": "/home/linuxbrew/.linuxbrew/Cellar", 153 | "url": "https://ghcr.io/v2/homebrew/core/coreutils/blobs/sha256:e48884f502b3236e747b1280d5373d058b4bb47f872c99533d90ba2e730f3266", 154 | "sha256": "e48884f502b3236e747b1280d5373d058b4bb47f872c99533d90ba2e730f3266" 155 | } 156 | } 157 | } 158 | }, 159 | "findutils": { 160 | "version": "4.9.0", 161 | "bottle": { 162 | "rebuild": 1, 163 | "root_url": "https://ghcr.io/v2/homebrew/core", 164 | "files": { 165 | "arm64_sonoma": { 166 | "cellar": ":any_skip_relocation", 167 | "url": "https://ghcr.io/v2/homebrew/core/findutils/blobs/sha256:f6e698b67946d557bc577ee72dc5d6fda6b4fd01b28a0aa7c04a1435d19618d4", 168 | "sha256": "f6e698b67946d557bc577ee72dc5d6fda6b4fd01b28a0aa7c04a1435d19618d4" 169 | }, 170 | "arm64_ventura": { 171 | "cellar": ":any_skip_relocation", 172 | "url": "https://ghcr.io/v2/homebrew/core/findutils/blobs/sha256:74fbe230e7727aaaf128082d47a2fc0f032c204154375b83461161442934961a", 173 | "sha256": "74fbe230e7727aaaf128082d47a2fc0f032c204154375b83461161442934961a" 174 | }, 175 | "arm64_monterey": { 176 | "cellar": ":any_skip_relocation", 177 | "url": "https://ghcr.io/v2/homebrew/core/findutils/blobs/sha256:e21f10bcc0baed90d33aad5ce7428f9ad24a9cd4e35f4b0003e14160045f8fb5", 178 | "sha256": "e21f10bcc0baed90d33aad5ce7428f9ad24a9cd4e35f4b0003e14160045f8fb5" 179 | }, 180 | "arm64_big_sur": { 181 | "cellar": ":any_skip_relocation", 182 | "url": "https://ghcr.io/v2/homebrew/core/findutils/blobs/sha256:72ddcf7cfdccb52f6c4c4f20c2c0cdbb4111d37641d73a1622a4af170ed5b53b", 183 | "sha256": "72ddcf7cfdccb52f6c4c4f20c2c0cdbb4111d37641d73a1622a4af170ed5b53b" 184 | }, 185 | "sonoma": { 186 | "cellar": ":any_skip_relocation", 187 | "url": "https://ghcr.io/v2/homebrew/core/findutils/blobs/sha256:7312e1463b5b7e47b061cc180381acdcf5c5a7d396012ed0481f2fccd32e0b99", 188 | "sha256": "7312e1463b5b7e47b061cc180381acdcf5c5a7d396012ed0481f2fccd32e0b99" 189 | }, 190 | "ventura": { 191 | "cellar": ":any_skip_relocation", 192 | "url": "https://ghcr.io/v2/homebrew/core/findutils/blobs/sha256:c32f96d54d0b689a5df3f9664a65d2a1fe954402481a49593767b5e856700887", 193 | "sha256": "c32f96d54d0b689a5df3f9664a65d2a1fe954402481a49593767b5e856700887" 194 | }, 195 | "monterey": { 196 | "cellar": ":any_skip_relocation", 197 | "url": "https://ghcr.io/v2/homebrew/core/findutils/blobs/sha256:595025aa645a0bc036179b30613986bd436081cc4416db21de0f8fba4d95934b", 198 | "sha256": "595025aa645a0bc036179b30613986bd436081cc4416db21de0f8fba4d95934b" 199 | }, 200 | "big_sur": { 201 | "cellar": ":any_skip_relocation", 202 | "url": "https://ghcr.io/v2/homebrew/core/findutils/blobs/sha256:e2171d40184a93549ca6877410abf8717c7d8b13ae1a0bf3568dd49a24b7747e", 203 | "sha256": "e2171d40184a93549ca6877410abf8717c7d8b13ae1a0bf3568dd49a24b7747e" 204 | }, 205 | "catalina": { 206 | "cellar": ":any_skip_relocation", 207 | "url": "https://ghcr.io/v2/homebrew/core/findutils/blobs/sha256:a957b1c3b354edee634d1d96f66315fa8ea327efc9f282c8c026b5298d8802e3", 208 | "sha256": "a957b1c3b354edee634d1d96f66315fa8ea327efc9f282c8c026b5298d8802e3" 209 | }, 210 | "x86_64_linux": { 211 | "cellar": ":any_skip_relocation", 212 | "url": "https://ghcr.io/v2/homebrew/core/findutils/blobs/sha256:3be871b90f426c6a6b9f292e65ba359c402017e783523746e965d849436137db", 213 | "sha256": "3be871b90f426c6a6b9f292e65ba359c402017e783523746e965d849436137db" 214 | } 215 | } 216 | } 217 | }, 218 | "bash": { 219 | "version": "5.2.26", 220 | "bottle": { 221 | "rebuild": 0, 222 | "root_url": "https://ghcr.io/v2/homebrew/core", 223 | "files": { 224 | "arm64_sonoma": { 225 | "cellar": "/opt/homebrew/Cellar", 226 | "url": "https://ghcr.io/v2/homebrew/core/bash/blobs/sha256:bd484090760c2736fa30e29a7861aaf115330bfb10178ce398e1f927a056a047", 227 | "sha256": "bd484090760c2736fa30e29a7861aaf115330bfb10178ce398e1f927a056a047" 228 | }, 229 | "arm64_ventura": { 230 | "cellar": "/opt/homebrew/Cellar", 231 | "url": "https://ghcr.io/v2/homebrew/core/bash/blobs/sha256:637a876f29118fb0124ee2b4111d10055380963605c47d0d4e97748f53b14cfa", 232 | "sha256": "637a876f29118fb0124ee2b4111d10055380963605c47d0d4e97748f53b14cfa" 233 | }, 234 | "arm64_monterey": { 235 | "cellar": "/opt/homebrew/Cellar", 236 | "url": "https://ghcr.io/v2/homebrew/core/bash/blobs/sha256:18f386a095f5ccf621cde4c10ea1147b3df03fcbb4b6a52a05b3bfd6c8397749", 237 | "sha256": "18f386a095f5ccf621cde4c10ea1147b3df03fcbb4b6a52a05b3bfd6c8397749" 238 | }, 239 | "sonoma": { 240 | "cellar": "/usr/local/Cellar", 241 | "url": "https://ghcr.io/v2/homebrew/core/bash/blobs/sha256:354e107695c01f1b970174487d0f5e501774c485b60e13f95141884b31ba883d", 242 | "sha256": "354e107695c01f1b970174487d0f5e501774c485b60e13f95141884b31ba883d" 243 | }, 244 | "ventura": { 245 | "cellar": "/usr/local/Cellar", 246 | "url": "https://ghcr.io/v2/homebrew/core/bash/blobs/sha256:32bc8c17f6a57fc3dd4e4c22cc3975bf083cb132722687b6ef7b2c4940dfca57", 247 | "sha256": "32bc8c17f6a57fc3dd4e4c22cc3975bf083cb132722687b6ef7b2c4940dfca57" 248 | }, 249 | "monterey": { 250 | "cellar": "/usr/local/Cellar", 251 | "url": "https://ghcr.io/v2/homebrew/core/bash/blobs/sha256:d674b4be7bf889c574d52826bad427d0f6a148b5b8795f4f1cc149c54de510a3", 252 | "sha256": "d674b4be7bf889c574d52826bad427d0f6a148b5b8795f4f1cc149c54de510a3" 253 | }, 254 | "x86_64_linux": { 255 | "cellar": "/home/linuxbrew/.linuxbrew/Cellar", 256 | "url": "https://ghcr.io/v2/homebrew/core/bash/blobs/sha256:04c187e2ae30da9c201a53b703eacbad8da84dd2d6ac77bff56113b277f99df0", 257 | "sha256": "04c187e2ae30da9c201a53b703eacbad8da84dd2d6ac77bff56113b277f99df0" 258 | } 259 | } 260 | } 261 | }, 262 | "grep": { 263 | "version": "3.11", 264 | "bottle": { 265 | "rebuild": 0, 266 | "root_url": "https://ghcr.io/v2/homebrew/core", 267 | "files": { 268 | "arm64_sonoma": { 269 | "cellar": ":any", 270 | "url": "https://ghcr.io/v2/homebrew/core/grep/blobs/sha256:0c5a74551504781dec17477fd6a7ec21680c3b30be3f421d02e4f57593181ad2", 271 | "sha256": "0c5a74551504781dec17477fd6a7ec21680c3b30be3f421d02e4f57593181ad2" 272 | }, 273 | "arm64_ventura": { 274 | "cellar": ":any", 275 | "url": "https://ghcr.io/v2/homebrew/core/grep/blobs/sha256:9c67868f89e03cc3ad77d4bf39c0593cf7c59d453ad8224e9c7007b800642f53", 276 | "sha256": "9c67868f89e03cc3ad77d4bf39c0593cf7c59d453ad8224e9c7007b800642f53" 277 | }, 278 | "arm64_monterey": { 279 | "cellar": ":any", 280 | "url": "https://ghcr.io/v2/homebrew/core/grep/blobs/sha256:8d1835e0b36b0c644660af9515c1973d650dfffaea08ba0c42914c99c3724d1c", 281 | "sha256": "8d1835e0b36b0c644660af9515c1973d650dfffaea08ba0c42914c99c3724d1c" 282 | }, 283 | "arm64_big_sur": { 284 | "cellar": ":any", 285 | "url": "https://ghcr.io/v2/homebrew/core/grep/blobs/sha256:fb7628adb948252d44148389af10a0fb8d5b4c43b60cee093ebd821f678bfada", 286 | "sha256": "fb7628adb948252d44148389af10a0fb8d5b4c43b60cee093ebd821f678bfada" 287 | }, 288 | "sonoma": { 289 | "cellar": ":any", 290 | "url": "https://ghcr.io/v2/homebrew/core/grep/blobs/sha256:8a2920cc2deb14480b0195d267443839941e0e301f6fe44adc31d79a6214708b", 291 | "sha256": "8a2920cc2deb14480b0195d267443839941e0e301f6fe44adc31d79a6214708b" 292 | }, 293 | "ventura": { 294 | "cellar": ":any", 295 | "url": "https://ghcr.io/v2/homebrew/core/grep/blobs/sha256:199c241e41de52e21ca6c28735cbbbe3e9e0595082e6742db76726f41baab11f", 296 | "sha256": "199c241e41de52e21ca6c28735cbbbe3e9e0595082e6742db76726f41baab11f" 297 | }, 298 | "monterey": { 299 | "cellar": ":any", 300 | "url": "https://ghcr.io/v2/homebrew/core/grep/blobs/sha256:e66f574af6ce36a8bcac7fd7b3d1beb9962e9af570ccb04c7ed916cd04e9017b", 301 | "sha256": "e66f574af6ce36a8bcac7fd7b3d1beb9962e9af570ccb04c7ed916cd04e9017b" 302 | }, 303 | "big_sur": { 304 | "cellar": ":any", 305 | "url": "https://ghcr.io/v2/homebrew/core/grep/blobs/sha256:bbcc7e67bfdf6f9d89dfed9895e52620c88717d3e917e5c8fed35790a611069e", 306 | "sha256": "bbcc7e67bfdf6f9d89dfed9895e52620c88717d3e917e5c8fed35790a611069e" 307 | }, 308 | "x86_64_linux": { 309 | "cellar": ":any_skip_relocation", 310 | "url": "https://ghcr.io/v2/homebrew/core/grep/blobs/sha256:caca59a561720fc8d5c57c39d1272c236e147e33ca8d66b2defb1e46466a29ff", 311 | "sha256": "caca59a561720fc8d5c57c39d1272c236e147e33ca8d66b2defb1e46466a29ff" 312 | } 313 | } 314 | } 315 | }, 316 | "telnet": { 317 | "version": "302", 318 | "bottle": { 319 | "rebuild": 0, 320 | "root_url": "https://ghcr.io/v2/homebrew/core", 321 | "files": { 322 | "arm64_sonoma": { 323 | "cellar": ":any_skip_relocation", 324 | "url": "https://ghcr.io/v2/homebrew/core/telnet/blobs/sha256:32fb300ad90af4a38af9f64c7bc790796ecf63deef9cfd0583a030cd8131a9df", 325 | "sha256": "32fb300ad90af4a38af9f64c7bc790796ecf63deef9cfd0583a030cd8131a9df" 326 | }, 327 | "arm64_ventura": { 328 | "cellar": ":any_skip_relocation", 329 | "url": "https://ghcr.io/v2/homebrew/core/telnet/blobs/sha256:bf9c1370dfd3791b56daef5d704a5cb5bb8139a0ca4590b2bf38c0e2f59fd4ca", 330 | "sha256": "bf9c1370dfd3791b56daef5d704a5cb5bb8139a0ca4590b2bf38c0e2f59fd4ca" 331 | }, 332 | "arm64_monterey": { 333 | "cellar": ":any_skip_relocation", 334 | "url": "https://ghcr.io/v2/homebrew/core/telnet/blobs/sha256:0292887da28386ae889224191f63336215451b20e5bf4e2bc7f8e395cd4f5f2c", 335 | "sha256": "0292887da28386ae889224191f63336215451b20e5bf4e2bc7f8e395cd4f5f2c" 336 | }, 337 | "sonoma": { 338 | "cellar": ":any_skip_relocation", 339 | "url": "https://ghcr.io/v2/homebrew/core/telnet/blobs/sha256:647c1a4caf092da6ed267f755d2fc8e9878f00fb77ba9a25e524a2fc80452a85", 340 | "sha256": "647c1a4caf092da6ed267f755d2fc8e9878f00fb77ba9a25e524a2fc80452a85" 341 | }, 342 | "ventura": { 343 | "cellar": ":any_skip_relocation", 344 | "url": "https://ghcr.io/v2/homebrew/core/telnet/blobs/sha256:440542cac7a1521c34234d7b992688031f709d673b0cfc949addb2f2401170a3", 345 | "sha256": "440542cac7a1521c34234d7b992688031f709d673b0cfc949addb2f2401170a3" 346 | }, 347 | "monterey": { 348 | "cellar": ":any_skip_relocation", 349 | "url": "https://ghcr.io/v2/homebrew/core/telnet/blobs/sha256:fba4c8392b21fce4c00c34f7c300d96d7cde052d19d461c0fce7db0d3ddffff6", 350 | "sha256": "fba4c8392b21fce4c00c34f7c300d96d7cde052d19d461c0fce7db0d3ddffff6" 351 | } 352 | } 353 | } 354 | }, 355 | "unrar": { 356 | "version": "5.9.2", 357 | "bottle": false 358 | }, 359 | "ack": { 360 | "version": "3.7.0", 361 | "bottle": { 362 | "rebuild": 0, 363 | "root_url": "https://ghcr.io/v2/homebrew/core", 364 | "files": { 365 | "all": { 366 | "cellar": ":any_skip_relocation", 367 | "url": "https://ghcr.io/v2/homebrew/core/ack/blobs/sha256:a54aa4f028ef042948961ef62524557dd8afd2c05eb658bd5f6d1ec04dddc22f", 368 | "sha256": "a54aa4f028ef042948961ef62524557dd8afd2c05eb658bd5f6d1ec04dddc22f" 369 | } 370 | } 371 | } 372 | }, 373 | "git": { 374 | "version": "2.44.0", 375 | "bottle": { 376 | "rebuild": 0, 377 | "root_url": "https://ghcr.io/v2/homebrew/core", 378 | "files": { 379 | "arm64_sonoma": { 380 | "cellar": "/opt/homebrew/Cellar", 381 | "url": "https://ghcr.io/v2/homebrew/core/git/blobs/sha256:5d4c3e312af15cd9576a91892cd6bde3ca897c037453f5b08edd6c5a3b968a10", 382 | "sha256": "5d4c3e312af15cd9576a91892cd6bde3ca897c037453f5b08edd6c5a3b968a10" 383 | }, 384 | "arm64_ventura": { 385 | "cellar": "/opt/homebrew/Cellar", 386 | "url": "https://ghcr.io/v2/homebrew/core/git/blobs/sha256:d43e086b5f28ac4cdd774bda38ae8f510a8324735c6fecc916f1a1c258f2d65e", 387 | "sha256": "d43e086b5f28ac4cdd774bda38ae8f510a8324735c6fecc916f1a1c258f2d65e" 388 | }, 389 | "arm64_monterey": { 390 | "cellar": "/opt/homebrew/Cellar", 391 | "url": "https://ghcr.io/v2/homebrew/core/git/blobs/sha256:b6ddb205139a08b25588e5fa11fd5d4d1268280bc90d5b248e07b49376176b5c", 392 | "sha256": "b6ddb205139a08b25588e5fa11fd5d4d1268280bc90d5b248e07b49376176b5c" 393 | }, 394 | "sonoma": { 395 | "cellar": "/usr/local/Cellar", 396 | "url": "https://ghcr.io/v2/homebrew/core/git/blobs/sha256:e95ddd7b09ffc68b76d99e0f0c4f235359bd9cd74c62f0de7602738d13fda872", 397 | "sha256": "e95ddd7b09ffc68b76d99e0f0c4f235359bd9cd74c62f0de7602738d13fda872" 398 | }, 399 | "ventura": { 400 | "cellar": "/usr/local/Cellar", 401 | "url": "https://ghcr.io/v2/homebrew/core/git/blobs/sha256:3b84bb672cfefb6da9dcc88a8e69c69068776485aa4ef35769ee021ea4e57550", 402 | "sha256": "3b84bb672cfefb6da9dcc88a8e69c69068776485aa4ef35769ee021ea4e57550" 403 | }, 404 | "monterey": { 405 | "cellar": "/usr/local/Cellar", 406 | "url": "https://ghcr.io/v2/homebrew/core/git/blobs/sha256:43bd7abdb7cf52c4d31a7fb9eba98360f2c9149d8d668fcec7724bbae72db634", 407 | "sha256": "43bd7abdb7cf52c4d31a7fb9eba98360f2c9149d8d668fcec7724bbae72db634" 408 | }, 409 | "x86_64_linux": { 410 | "cellar": "/home/linuxbrew/.linuxbrew/Cellar", 411 | "url": "https://ghcr.io/v2/homebrew/core/git/blobs/sha256:7d7db9f8aa687f7a1879ee298f843d5c7b3e9f2463b22caf52b8edc4f1a8f329", 412 | "sha256": "7d7db9f8aa687f7a1879ee298f843d5c7b3e9f2463b22caf52b8edc4f1a8f329" 413 | } 414 | } 415 | } 416 | }, 417 | "graphviz": { 418 | "version": "10.0.1", 419 | "bottle": { 420 | "rebuild": 0, 421 | "root_url": "https://ghcr.io/v2/homebrew/core", 422 | "files": { 423 | "arm64_sonoma": { 424 | "cellar": "/opt/homebrew/Cellar", 425 | "url": "https://ghcr.io/v2/homebrew/core/graphviz/blobs/sha256:cd3b730ae9b021a1b7886c497768ce9fcd84ef5e7d3e6ef273cbbe344e905942", 426 | "sha256": "cd3b730ae9b021a1b7886c497768ce9fcd84ef5e7d3e6ef273cbbe344e905942" 427 | }, 428 | "arm64_ventura": { 429 | "cellar": "/opt/homebrew/Cellar", 430 | "url": "https://ghcr.io/v2/homebrew/core/graphviz/blobs/sha256:3a2ac0138232cf948240a29f6b3d97be76ad4f205e6a348422b82ff33363340a", 431 | "sha256": "3a2ac0138232cf948240a29f6b3d97be76ad4f205e6a348422b82ff33363340a" 432 | }, 433 | "arm64_monterey": { 434 | "cellar": "/opt/homebrew/Cellar", 435 | "url": "https://ghcr.io/v2/homebrew/core/graphviz/blobs/sha256:cf6fa16e7335f4b43dc048f2d96f79f4d7887c1f950f5e30400182e88269cb56", 436 | "sha256": "cf6fa16e7335f4b43dc048f2d96f79f4d7887c1f950f5e30400182e88269cb56" 437 | }, 438 | "sonoma": { 439 | "cellar": "/usr/local/Cellar", 440 | "url": "https://ghcr.io/v2/homebrew/core/graphviz/blobs/sha256:bc4ae8de4c2ede705cd36568af374ad3c0c09650737ee0a37050aff0bb1352c9", 441 | "sha256": "bc4ae8de4c2ede705cd36568af374ad3c0c09650737ee0a37050aff0bb1352c9" 442 | }, 443 | "ventura": { 444 | "cellar": "/usr/local/Cellar", 445 | "url": "https://ghcr.io/v2/homebrew/core/graphviz/blobs/sha256:c1f6d8228bf45eee693f2051502065d9dc7cfb34dcab8a84a3b4854d633a18a7", 446 | "sha256": "c1f6d8228bf45eee693f2051502065d9dc7cfb34dcab8a84a3b4854d633a18a7" 447 | }, 448 | "monterey": { 449 | "cellar": "/usr/local/Cellar", 450 | "url": "https://ghcr.io/v2/homebrew/core/graphviz/blobs/sha256:f6195c6478489a9da5fdff1d51ae435e1588c722710d7095561586a3072f8375", 451 | "sha256": "f6195c6478489a9da5fdff1d51ae435e1588c722710d7095561586a3072f8375" 452 | }, 453 | "x86_64_linux": { 454 | "cellar": "/home/linuxbrew/.linuxbrew/Cellar", 455 | "url": "https://ghcr.io/v2/homebrew/core/graphviz/blobs/sha256:c11a32bd38397c396ec46cbffa45356d095fa16004b000510a4e8c09d839f175", 456 | "sha256": "c11a32bd38397c396ec46cbffa45356d095fa16004b000510a4e8c09d839f175" 457 | } 458 | } 459 | } 460 | }, 461 | "tree": { 462 | "version": "2.1.1_1", 463 | "bottle": { 464 | "rebuild": 0, 465 | "root_url": "https://ghcr.io/v2/homebrew/core", 466 | "files": { 467 | "arm64_sonoma": { 468 | "cellar": ":any_skip_relocation", 469 | "url": "https://ghcr.io/v2/homebrew/core/tree/blobs/sha256:2d1c490c83719c983ec360085e9d0049418ff424259bc00122869f8acf68ed63", 470 | "sha256": "2d1c490c83719c983ec360085e9d0049418ff424259bc00122869f8acf68ed63" 471 | }, 472 | "arm64_ventura": { 473 | "cellar": ":any_skip_relocation", 474 | "url": "https://ghcr.io/v2/homebrew/core/tree/blobs/sha256:13b597dcee0eec0e8d3a7f864dfb5713d812605092bf1e417c765e788d0c0d31", 475 | "sha256": "13b597dcee0eec0e8d3a7f864dfb5713d812605092bf1e417c765e788d0c0d31" 476 | }, 477 | "arm64_monterey": { 478 | "cellar": ":any_skip_relocation", 479 | "url": "https://ghcr.io/v2/homebrew/core/tree/blobs/sha256:0bd195b460f491c6e71b0277efb3c4cdbab8b6d814072519ade39e5ca257b048", 480 | "sha256": "0bd195b460f491c6e71b0277efb3c4cdbab8b6d814072519ade39e5ca257b048" 481 | }, 482 | "sonoma": { 483 | "cellar": ":any_skip_relocation", 484 | "url": "https://ghcr.io/v2/homebrew/core/tree/blobs/sha256:af3d14eb91e4bf756bb5ef5f6a489aeb33e6cf5fc4f72c99d70352bec364e282", 485 | "sha256": "af3d14eb91e4bf756bb5ef5f6a489aeb33e6cf5fc4f72c99d70352bec364e282" 486 | }, 487 | "ventura": { 488 | "cellar": ":any_skip_relocation", 489 | "url": "https://ghcr.io/v2/homebrew/core/tree/blobs/sha256:da304661d82c58ee3d4a14f80479d15d3405ca4c1be78b6085f7c62e67f79412", 490 | "sha256": "da304661d82c58ee3d4a14f80479d15d3405ca4c1be78b6085f7c62e67f79412" 491 | }, 492 | "monterey": { 493 | "cellar": ":any_skip_relocation", 494 | "url": "https://ghcr.io/v2/homebrew/core/tree/blobs/sha256:13a0875d7da74de5ccfd1c6d3bd6167d2c4c0d7d4d747cc3ebb377fad60df365", 495 | "sha256": "13a0875d7da74de5ccfd1c6d3bd6167d2c4c0d7d4d747cc3ebb377fad60df365" 496 | }, 497 | "x86_64_linux": { 498 | "cellar": ":any_skip_relocation", 499 | "url": "https://ghcr.io/v2/homebrew/core/tree/blobs/sha256:48bf95e7ef6c5f14db8a551b3ba22db93613f39ad04985f2edd3d34754daf89e", 500 | "sha256": "48bf95e7ef6c5f14db8a551b3ba22db93613f39ad04985f2edd3d34754daf89e" 501 | } 502 | } 503 | } 504 | }, 505 | "mackup": { 506 | "version": "0.8.28_1", 507 | "bottle": { 508 | "cellar": ":any_skip_relocation", 509 | "prefix": "/usr/local", 510 | "files": { 511 | "catalina": { 512 | "url": "https://homebrew.bintray.com/bottles/mackup-0.8.28_1.catalina.bottle.tar.gz", 513 | "sha256": "dbc5ac8b84c362ff421aff6b75819145c9033b72cb1f819dc182964e59b8221e" 514 | }, 515 | "mojave": { 516 | "url": "https://homebrew.bintray.com/bottles/mackup-0.8.28_1.mojave.bottle.tar.gz", 517 | "sha256": "dcd2364073468374ed2d60f921546db1948ca14efc5e7f0751873b7d89b5c8ba" 518 | }, 519 | "high_sierra": { 520 | "url": "https://homebrew.bintray.com/bottles/mackup-0.8.28_1.high_sierra.bottle.tar.gz", 521 | "sha256": "3af5af899b13058a5887831beffbeada93ceb76a0c2598cbd9675cf11162d8c1" 522 | } 523 | } 524 | } 525 | }, 526 | "mas": { 527 | "version": "1.8.6", 528 | "bottle": { 529 | "rebuild": 0, 530 | "root_url": "https://ghcr.io/v2/homebrew/core", 531 | "files": { 532 | "arm64_sonoma": { 533 | "cellar": ":any_skip_relocation", 534 | "url": "https://ghcr.io/v2/homebrew/core/mas/blobs/sha256:7b11bfefcb43e9a423ff301f7bbc29b0fb86044bf93442f243c5a8a67d8d4869", 535 | "sha256": "7b11bfefcb43e9a423ff301f7bbc29b0fb86044bf93442f243c5a8a67d8d4869" 536 | }, 537 | "arm64_ventura": { 538 | "cellar": ":any_skip_relocation", 539 | "url": "https://ghcr.io/v2/homebrew/core/mas/blobs/sha256:e49511dd1283813c4420aec9fc3b3167d18f9fdbb51d82b1e479b628d5312342", 540 | "sha256": "e49511dd1283813c4420aec9fc3b3167d18f9fdbb51d82b1e479b628d5312342" 541 | }, 542 | "arm64_monterey": { 543 | "cellar": ":any_skip_relocation", 544 | "url": "https://ghcr.io/v2/homebrew/core/mas/blobs/sha256:379d46e2657be295321f1603dc1df28130ea0b5b264ceb192a9ba488d77c7a98", 545 | "sha256": "379d46e2657be295321f1603dc1df28130ea0b5b264ceb192a9ba488d77c7a98" 546 | }, 547 | "arm64_big_sur": { 548 | "cellar": ":any_skip_relocation", 549 | "url": "https://ghcr.io/v2/homebrew/core/mas/blobs/sha256:918a1484de106940f7bebc936e1ded87d7b65652054b09204887ad0651937ec4", 550 | "sha256": "918a1484de106940f7bebc936e1ded87d7b65652054b09204887ad0651937ec4" 551 | }, 552 | "sonoma": { 553 | "cellar": ":any_skip_relocation", 554 | "url": "https://ghcr.io/v2/homebrew/core/mas/blobs/sha256:24e3057991ea1eed52eb4a27c0f17d794106770621e5a8bb975477dae135b82d", 555 | "sha256": "24e3057991ea1eed52eb4a27c0f17d794106770621e5a8bb975477dae135b82d" 556 | }, 557 | "ventura": { 558 | "cellar": ":any_skip_relocation", 559 | "url": "https://ghcr.io/v2/homebrew/core/mas/blobs/sha256:6ef7788e28c46cdc0f916812f49dfeb1fabf2240a8c36f33ce34bcfb9df1502f", 560 | "sha256": "6ef7788e28c46cdc0f916812f49dfeb1fabf2240a8c36f33ce34bcfb9df1502f" 561 | }, 562 | "monterey": { 563 | "cellar": ":any_skip_relocation", 564 | "url": "https://ghcr.io/v2/homebrew/core/mas/blobs/sha256:6b313f2f66d028cb7782c108d6e502ce73ccb9c08fac3bece0b057fcce5c4689", 565 | "sha256": "6b313f2f66d028cb7782c108d6e502ce73ccb9c08fac3bece0b057fcce5c4689" 566 | }, 567 | "big_sur": { 568 | "cellar": ":any_skip_relocation", 569 | "url": "https://ghcr.io/v2/homebrew/core/mas/blobs/sha256:50b50f51219143fcb69c730b52b74011a76104f66348ea727d0200f7b375ae25", 570 | "sha256": "50b50f51219143fcb69c730b52b74011a76104f66348ea727d0200f7b375ae25" 571 | }, 572 | "catalina": { 573 | "cellar": ":any_skip_relocation", 574 | "url": "https://ghcr.io/v2/homebrew/core/mas/blobs/sha256:d241d3b9156b033f3d2c31684a44de726297e07fd9bd5e3ccc4c36e4f1c3baf3", 575 | "sha256": "d241d3b9156b033f3d2c31684a44de726297e07fd9bd5e3ccc4c36e4f1c3baf3" 576 | } 577 | } 578 | } 579 | }, 580 | "wget": { 581 | "version": "1.24.5", 582 | "bottle": { 583 | "rebuild": 0, 584 | "root_url": "https://ghcr.io/v2/homebrew/core", 585 | "files": { 586 | "arm64_sonoma": { 587 | "cellar": "/opt/homebrew/Cellar", 588 | "url": "https://ghcr.io/v2/homebrew/core/wget/blobs/sha256:9befdad158e59763fb0622083974a6252878019702d8c961e1bec3a5f5305339", 589 | "sha256": "9befdad158e59763fb0622083974a6252878019702d8c961e1bec3a5f5305339" 590 | }, 591 | "arm64_ventura": { 592 | "cellar": "/opt/homebrew/Cellar", 593 | "url": "https://ghcr.io/v2/homebrew/core/wget/blobs/sha256:ac4c0330b70dae06eaa8065bfbea78dda277699d1ae8002478017a1bd9cf1908", 594 | "sha256": "ac4c0330b70dae06eaa8065bfbea78dda277699d1ae8002478017a1bd9cf1908" 595 | }, 596 | "arm64_monterey": { 597 | "cellar": "/opt/homebrew/Cellar", 598 | "url": "https://ghcr.io/v2/homebrew/core/wget/blobs/sha256:02313702fc03880f221d60ce4d0b652c8b44fe68c15609329d757d031bce6bc4", 599 | "sha256": "02313702fc03880f221d60ce4d0b652c8b44fe68c15609329d757d031bce6bc4" 600 | }, 601 | "sonoma": { 602 | "cellar": "/usr/local/Cellar", 603 | "url": "https://ghcr.io/v2/homebrew/core/wget/blobs/sha256:034528edb247df85f90997aca6a51ddb988a880af6bb571b8473de1702a887af", 604 | "sha256": "034528edb247df85f90997aca6a51ddb988a880af6bb571b8473de1702a887af" 605 | }, 606 | "ventura": { 607 | "cellar": "/usr/local/Cellar", 608 | "url": "https://ghcr.io/v2/homebrew/core/wget/blobs/sha256:1b7e2f76c90553543a5e25dadf031c6fcfe280f52bf27d89e04006f9d33fd20b", 609 | "sha256": "1b7e2f76c90553543a5e25dadf031c6fcfe280f52bf27d89e04006f9d33fd20b" 610 | }, 611 | "monterey": { 612 | "cellar": "/usr/local/Cellar", 613 | "url": "https://ghcr.io/v2/homebrew/core/wget/blobs/sha256:ffc49a5064a003006e69f51434ac5f7ec4f4019c161ad32fab22c32697db61cd", 614 | "sha256": "ffc49a5064a003006e69f51434ac5f7ec4f4019c161ad32fab22c32697db61cd" 615 | }, 616 | "x86_64_linux": { 617 | "cellar": "/home/linuxbrew/.linuxbrew/Cellar", 618 | "url": "https://ghcr.io/v2/homebrew/core/wget/blobs/sha256:6a4642964fe5c4d1cc8cd3507541736d5b984e34a303a814ef550d4f2f8242f9", 619 | "sha256": "6a4642964fe5c4d1cc8cd3507541736d5b984e34a303a814ef550d4f2f8242f9" 620 | } 621 | } 622 | } 623 | }, 624 | "tldr": { 625 | "version": "1.6.1", 626 | "bottle": { 627 | "rebuild": 0, 628 | "root_url": "https://ghcr.io/v2/homebrew/core", 629 | "files": { 630 | "arm64_sonoma": { 631 | "cellar": ":any", 632 | "url": "https://ghcr.io/v2/homebrew/core/tldr/blobs/sha256:00d61b3c3ffb5df313b167d915d0f10896f2bfb5b4336f51332f0d7e84e2f6b2", 633 | "sha256": "00d61b3c3ffb5df313b167d915d0f10896f2bfb5b4336f51332f0d7e84e2f6b2" 634 | }, 635 | "arm64_ventura": { 636 | "cellar": ":any", 637 | "url": "https://ghcr.io/v2/homebrew/core/tldr/blobs/sha256:32223909bb7889f5b22a95b27676700eddf3c2e4a889332ce3f04e70e1faa1cd", 638 | "sha256": "32223909bb7889f5b22a95b27676700eddf3c2e4a889332ce3f04e70e1faa1cd" 639 | }, 640 | "arm64_monterey": { 641 | "cellar": ":any", 642 | "url": "https://ghcr.io/v2/homebrew/core/tldr/blobs/sha256:87a1252e89172fb34ebb77a20f1224c9941cd9315c5746e4fb930cc01ddb66b3", 643 | "sha256": "87a1252e89172fb34ebb77a20f1224c9941cd9315c5746e4fb930cc01ddb66b3" 644 | }, 645 | "sonoma": { 646 | "cellar": ":any", 647 | "url": "https://ghcr.io/v2/homebrew/core/tldr/blobs/sha256:86f757f6250dc09efccab23100a8a5b402475c8ae4e3264eebf4563dddf5435b", 648 | "sha256": "86f757f6250dc09efccab23100a8a5b402475c8ae4e3264eebf4563dddf5435b" 649 | }, 650 | "ventura": { 651 | "cellar": ":any", 652 | "url": "https://ghcr.io/v2/homebrew/core/tldr/blobs/sha256:af00415190134abec3feec158ebc30e3511c43fc07b22dd2d8acf4e669564d0e", 653 | "sha256": "af00415190134abec3feec158ebc30e3511c43fc07b22dd2d8acf4e669564d0e" 654 | }, 655 | "monterey": { 656 | "cellar": ":any", 657 | "url": "https://ghcr.io/v2/homebrew/core/tldr/blobs/sha256:65388c830508d2935fc720af7ca9851dfe8a0a08000644f513b26e61098450de", 658 | "sha256": "65388c830508d2935fc720af7ca9851dfe8a0a08000644f513b26e61098450de" 659 | }, 660 | "x86_64_linux": { 661 | "cellar": ":any_skip_relocation", 662 | "url": "https://ghcr.io/v2/homebrew/core/tldr/blobs/sha256:e1e92ca409631c8006533f00706aeb966dcd6d7ee175b51c8aceeab523ebb3f5", 663 | "sha256": "e1e92ca409631c8006533f00706aeb966dcd6d7ee175b51c8aceeab523ebb3f5" 664 | } 665 | } 666 | } 667 | }, 668 | "autojump": { 669 | "version": "22.5.3_3", 670 | "bottle": { 671 | "rebuild": 3, 672 | "root_url": "https://ghcr.io/v2/homebrew/core", 673 | "files": { 674 | "all": { 675 | "cellar": ":any_skip_relocation", 676 | "url": "https://ghcr.io/v2/homebrew/core/autojump/blobs/sha256:186ebf3a980da0c5f3d7ab1436fb367ad5a47554d09d5b2cfbe0c37097cf287e", 677 | "sha256": "186ebf3a980da0c5f3d7ab1436fb367ad5a47554d09d5b2cfbe0c37097cf287e" 678 | } 679 | } 680 | } 681 | }, 682 | "yarn": { 683 | "version": "1.22.22", 684 | "bottle": { 685 | "rebuild": 0, 686 | "root_url": "https://ghcr.io/v2/homebrew/core", 687 | "files": { 688 | "all": { 689 | "cellar": ":any_skip_relocation", 690 | "url": "https://ghcr.io/v2/homebrew/core/yarn/blobs/sha256:9a80ed679d05f019e217f737a7d531f4578144b65be6a1a19d3322ef41d25683", 691 | "sha256": "9a80ed679d05f019e217f737a7d531f4578144b65be6a1a19d3322ef41d25683" 692 | } 693 | } 694 | } 695 | }, 696 | "composer": { 697 | "version": "2.7.2", 698 | "bottle": { 699 | "rebuild": 0, 700 | "root_url": "https://ghcr.io/v2/homebrew/core", 701 | "files": { 702 | "arm64_sonoma": { 703 | "cellar": ":any_skip_relocation", 704 | "url": "https://ghcr.io/v2/homebrew/core/composer/blobs/sha256:bf679c49688940af731c0a07fb4cbbd148fe6973762e2c1fd499820e59c6be1e", 705 | "sha256": "bf679c49688940af731c0a07fb4cbbd148fe6973762e2c1fd499820e59c6be1e" 706 | }, 707 | "arm64_ventura": { 708 | "cellar": ":any_skip_relocation", 709 | "url": "https://ghcr.io/v2/homebrew/core/composer/blobs/sha256:bf679c49688940af731c0a07fb4cbbd148fe6973762e2c1fd499820e59c6be1e", 710 | "sha256": "bf679c49688940af731c0a07fb4cbbd148fe6973762e2c1fd499820e59c6be1e" 711 | }, 712 | "arm64_monterey": { 713 | "cellar": ":any_skip_relocation", 714 | "url": "https://ghcr.io/v2/homebrew/core/composer/blobs/sha256:bf679c49688940af731c0a07fb4cbbd148fe6973762e2c1fd499820e59c6be1e", 715 | "sha256": "bf679c49688940af731c0a07fb4cbbd148fe6973762e2c1fd499820e59c6be1e" 716 | }, 717 | "sonoma": { 718 | "cellar": ":any_skip_relocation", 719 | "url": "https://ghcr.io/v2/homebrew/core/composer/blobs/sha256:234eff3b59a2705815b11bc2768ea8bb7e877d94adf9815e084a1237f70dc2bb", 720 | "sha256": "234eff3b59a2705815b11bc2768ea8bb7e877d94adf9815e084a1237f70dc2bb" 721 | }, 722 | "ventura": { 723 | "cellar": ":any_skip_relocation", 724 | "url": "https://ghcr.io/v2/homebrew/core/composer/blobs/sha256:234eff3b59a2705815b11bc2768ea8bb7e877d94adf9815e084a1237f70dc2bb", 725 | "sha256": "234eff3b59a2705815b11bc2768ea8bb7e877d94adf9815e084a1237f70dc2bb" 726 | }, 727 | "monterey": { 728 | "cellar": ":any_skip_relocation", 729 | "url": "https://ghcr.io/v2/homebrew/core/composer/blobs/sha256:234eff3b59a2705815b11bc2768ea8bb7e877d94adf9815e084a1237f70dc2bb", 730 | "sha256": "234eff3b59a2705815b11bc2768ea8bb7e877d94adf9815e084a1237f70dc2bb" 731 | }, 732 | "x86_64_linux": { 733 | "cellar": ":any_skip_relocation", 734 | "url": "https://ghcr.io/v2/homebrew/core/composer/blobs/sha256:b5af5f6c77a77b0fdfba04bbcb5ea2882626e2a8c3fa7a8c0b73b77ec0583863", 735 | "sha256": "b5af5f6c77a77b0fdfba04bbcb5ea2882626e2a8c3fa7a8c0b73b77ec0583863" 736 | } 737 | } 738 | } 739 | }, 740 | "php@7.3": { 741 | "version": "7.3.25_1", 742 | "bottle": { 743 | "rebuild": 0, 744 | "cellar": "/usr/local/Cellar", 745 | "prefix": "/usr/local", 746 | "root_url": "https://homebrew.bintray.com/bottles", 747 | "files": { 748 | "big_sur": { 749 | "url": "https://homebrew.bintray.com/bottles/php%407.3-7.3.25_1.big_sur.bottle.tar.gz", 750 | "sha256": "d6932d8056632a0bd2d4638d95923bdd8491ab685d3fa993dc8ed441b145970b" 751 | }, 752 | "catalina": { 753 | "url": "https://homebrew.bintray.com/bottles/php%407.3-7.3.25_1.catalina.bottle.tar.gz", 754 | "sha256": "c47a7a4fcea943550fe253aa855575e73db4b615110c424130fa1bfa61bfd8bd" 755 | }, 756 | "mojave": { 757 | "url": "https://homebrew.bintray.com/bottles/php%407.3-7.3.25_1.mojave.bottle.tar.gz", 758 | "sha256": "f27d2430209caf5b7355ad79a3b2e25b5f120f234e27ef0fb8b9685e839f3b6e" 759 | } 760 | } 761 | } 762 | }, 763 | "php-code-sniffer": { 764 | "version": "3.9.1", 765 | "bottle": { 766 | "rebuild": 0, 767 | "root_url": "https://ghcr.io/v2/homebrew/core", 768 | "files": { 769 | "all": { 770 | "cellar": ":any_skip_relocation", 771 | "url": "https://ghcr.io/v2/homebrew/core/php-code-sniffer/blobs/sha256:997ed2a458bef8142db9103683477f39c29932d6cd0683bc9b355a6452903e66", 772 | "sha256": "997ed2a458bef8142db9103683477f39c29932d6cd0683bc9b355a6452903e66" 773 | } 774 | } 775 | } 776 | }, 777 | "pkg-config": { 778 | "version": "0.29.2_3", 779 | "bottle": { 780 | "rebuild": 0, 781 | "root_url": "https://ghcr.io/v2/homebrew/core", 782 | "files": { 783 | "arm64_sonoma": { 784 | "cellar": "/opt/homebrew/Cellar", 785 | "url": "https://ghcr.io/v2/homebrew/core/pkg-config/blobs/sha256:7b59abc0b5381065b1eab174217307af9324e0d02edf903171b29250ae58aeaf", 786 | "sha256": "7b59abc0b5381065b1eab174217307af9324e0d02edf903171b29250ae58aeaf" 787 | }, 788 | "arm64_ventura": { 789 | "cellar": "/opt/homebrew/Cellar", 790 | "url": "https://ghcr.io/v2/homebrew/core/pkg-config/blobs/sha256:3ff612c5e44b945c8c0cc6df7d3edb407ca67cddad9c89f9ab99ced494b7a8c2", 791 | "sha256": "3ff612c5e44b945c8c0cc6df7d3edb407ca67cddad9c89f9ab99ced494b7a8c2" 792 | }, 793 | "arm64_monterey": { 794 | "cellar": "/opt/homebrew/Cellar", 795 | "url": "https://ghcr.io/v2/homebrew/core/pkg-config/blobs/sha256:2af9bceb60b70a259f236f1d46d2bb24c4d0a4af8cd63d974dde4d76313711e0", 796 | "sha256": "2af9bceb60b70a259f236f1d46d2bb24c4d0a4af8cd63d974dde4d76313711e0" 797 | }, 798 | "arm64_big_sur": { 799 | "cellar": "/opt/homebrew/Cellar", 800 | "url": "https://ghcr.io/v2/homebrew/core/pkg-config/blobs/sha256:ffd4491f62201d14b7eca6beff954a2ab265351589cd5b3b79b8bbb414485574", 801 | "sha256": "ffd4491f62201d14b7eca6beff954a2ab265351589cd5b3b79b8bbb414485574" 802 | }, 803 | "sonoma": { 804 | "cellar": "/usr/local/Cellar", 805 | "url": "https://ghcr.io/v2/homebrew/core/pkg-config/blobs/sha256:421571f340277c62c5cc6fd68737bd7c4e085de113452ea49b33bcd46509bb12", 806 | "sha256": "421571f340277c62c5cc6fd68737bd7c4e085de113452ea49b33bcd46509bb12" 807 | }, 808 | "ventura": { 809 | "cellar": "/usr/local/Cellar", 810 | "url": "https://ghcr.io/v2/homebrew/core/pkg-config/blobs/sha256:c44b1544815518726d280d92d6f6df09bd45e41ad20fd43424725c1c20760be8", 811 | "sha256": "c44b1544815518726d280d92d6f6df09bd45e41ad20fd43424725c1c20760be8" 812 | }, 813 | "monterey": { 814 | "cellar": "/usr/local/Cellar", 815 | "url": "https://ghcr.io/v2/homebrew/core/pkg-config/blobs/sha256:a6ba80711f98b65d8a2bf2c9278540860415e9b5e545da338a4d94f39d119285", 816 | "sha256": "a6ba80711f98b65d8a2bf2c9278540860415e9b5e545da338a4d94f39d119285" 817 | }, 818 | "big_sur": { 819 | "cellar": "/usr/local/Cellar", 820 | "url": "https://ghcr.io/v2/homebrew/core/pkg-config/blobs/sha256:0040b6ebe07f60549800b211343fd5fb3cf83c866d9f62e40f5fb2f38b71e161", 821 | "sha256": "0040b6ebe07f60549800b211343fd5fb3cf83c866d9f62e40f5fb2f38b71e161" 822 | }, 823 | "catalina": { 824 | "cellar": "/usr/local/Cellar", 825 | "url": "https://ghcr.io/v2/homebrew/core/pkg-config/blobs/sha256:80f141e695f73bd058fd82e9f539dc67471666ff6800c5e280b5af7d3050f435", 826 | "sha256": "80f141e695f73bd058fd82e9f539dc67471666ff6800c5e280b5af7d3050f435" 827 | }, 828 | "mojave": { 829 | "cellar": "/usr/local/Cellar", 830 | "url": "https://ghcr.io/v2/homebrew/core/pkg-config/blobs/sha256:0d14b797dba0e0ab595c9afba8ab7ef9c901b60b4f806b36580ef95ebb370232", 831 | "sha256": "0d14b797dba0e0ab595c9afba8ab7ef9c901b60b4f806b36580ef95ebb370232" 832 | }, 833 | "high_sierra": { 834 | "cellar": "/usr/local/Cellar", 835 | "url": "https://ghcr.io/v2/homebrew/core/pkg-config/blobs/sha256:8c6160305abd948b8cf3e0d5c6bb0df192fa765bbb9535dda0b573cb60abbe52", 836 | "sha256": "8c6160305abd948b8cf3e0d5c6bb0df192fa765bbb9535dda0b573cb60abbe52" 837 | }, 838 | "x86_64_linux": { 839 | "cellar": ":any_skip_relocation", 840 | "url": "https://ghcr.io/v2/homebrew/core/pkg-config/blobs/sha256:3d9b8bf9b7b4bd08086be1104e3e18afb1c437dfaca03e6e7df8f2710b9c1c1a", 841 | "sha256": "3d9b8bf9b7b4bd08086be1104e3e18afb1c437dfaca03e6e7df8f2710b9c1c1a" 842 | } 843 | } 844 | } 845 | }, 846 | "imagemagick": { 847 | "version": "7.1.1-29_1", 848 | "bottle": { 849 | "rebuild": 0, 850 | "root_url": "https://ghcr.io/v2/homebrew/core", 851 | "files": { 852 | "arm64_sonoma": { 853 | "cellar": "/opt/homebrew/Cellar", 854 | "url": "https://ghcr.io/v2/homebrew/core/imagemagick/blobs/sha256:5270689f4064554efaaf086141377d2085f1ce9be42817a2b6d22a71d0626357", 855 | "sha256": "5270689f4064554efaaf086141377d2085f1ce9be42817a2b6d22a71d0626357" 856 | }, 857 | "arm64_ventura": { 858 | "cellar": "/opt/homebrew/Cellar", 859 | "url": "https://ghcr.io/v2/homebrew/core/imagemagick/blobs/sha256:7f580faf153ef92c97c9101d81011bf5770cd2e1cf0a380855a5b4cf3a8d3125", 860 | "sha256": "7f580faf153ef92c97c9101d81011bf5770cd2e1cf0a380855a5b4cf3a8d3125" 861 | }, 862 | "arm64_monterey": { 863 | "cellar": "/opt/homebrew/Cellar", 864 | "url": "https://ghcr.io/v2/homebrew/core/imagemagick/blobs/sha256:0f177fed856edfc94a75e56e9deff5f1e7a60d83509b33b8fc85171157e1a1d5", 865 | "sha256": "0f177fed856edfc94a75e56e9deff5f1e7a60d83509b33b8fc85171157e1a1d5" 866 | }, 867 | "sonoma": { 868 | "cellar": "/usr/local/Cellar", 869 | "url": "https://ghcr.io/v2/homebrew/core/imagemagick/blobs/sha256:9d1c37b141e9fb6d60d1c03ab1a3f5375a60df70407080de9ce69b1b7807c799", 870 | "sha256": "9d1c37b141e9fb6d60d1c03ab1a3f5375a60df70407080de9ce69b1b7807c799" 871 | }, 872 | "ventura": { 873 | "cellar": "/usr/local/Cellar", 874 | "url": "https://ghcr.io/v2/homebrew/core/imagemagick/blobs/sha256:431ccc675051214ce827662f441f246a40443b678cb85db1f7e32e5c84176aca", 875 | "sha256": "431ccc675051214ce827662f441f246a40443b678cb85db1f7e32e5c84176aca" 876 | }, 877 | "monterey": { 878 | "cellar": "/usr/local/Cellar", 879 | "url": "https://ghcr.io/v2/homebrew/core/imagemagick/blobs/sha256:1e14bc802787ad3ece4f72e4f40a3e7417bffc90fba05cf124af4207cc14494a", 880 | "sha256": "1e14bc802787ad3ece4f72e4f40a3e7417bffc90fba05cf124af4207cc14494a" 881 | }, 882 | "x86_64_linux": { 883 | "cellar": "/home/linuxbrew/.linuxbrew/Cellar", 884 | "url": "https://ghcr.io/v2/homebrew/core/imagemagick/blobs/sha256:c072baff3e81f6eb9b7892049ad084feb5526a009ea109b52ee9ef334b2832ef", 885 | "sha256": "c072baff3e81f6eb9b7892049ad084feb5526a009ea109b52ee9ef334b2832ef" 886 | } 887 | } 888 | } 889 | }, 890 | "dnsmasq": { 891 | "version": "2.90", 892 | "bottle": { 893 | "rebuild": 0, 894 | "root_url": "https://ghcr.io/v2/homebrew/core", 895 | "files": { 896 | "arm64_sonoma": { 897 | "cellar": "/opt/homebrew/Cellar", 898 | "url": "https://ghcr.io/v2/homebrew/core/dnsmasq/blobs/sha256:b6897c95d454b3d7a0d488b3cba0f525a90c951d8690929a80794aee05f48ae7", 899 | "sha256": "b6897c95d454b3d7a0d488b3cba0f525a90c951d8690929a80794aee05f48ae7" 900 | }, 901 | "arm64_ventura": { 902 | "cellar": "/opt/homebrew/Cellar", 903 | "url": "https://ghcr.io/v2/homebrew/core/dnsmasq/blobs/sha256:96d78b8341adb55a2f3260fa4813102e7c08bc0d61306401de5bf4f1e49843b2", 904 | "sha256": "96d78b8341adb55a2f3260fa4813102e7c08bc0d61306401de5bf4f1e49843b2" 905 | }, 906 | "arm64_monterey": { 907 | "cellar": "/opt/homebrew/Cellar", 908 | "url": "https://ghcr.io/v2/homebrew/core/dnsmasq/blobs/sha256:740412d9203cd865d9cafb9c10a3bc69ef19e44291954d7c26e48b17fd378039", 909 | "sha256": "740412d9203cd865d9cafb9c10a3bc69ef19e44291954d7c26e48b17fd378039" 910 | }, 911 | "sonoma": { 912 | "cellar": "/usr/local/Cellar", 913 | "url": "https://ghcr.io/v2/homebrew/core/dnsmasq/blobs/sha256:0e20ef773a39be121ee8fddc46a6dca9f1d6b9c09cc069bfa75334bff479079b", 914 | "sha256": "0e20ef773a39be121ee8fddc46a6dca9f1d6b9c09cc069bfa75334bff479079b" 915 | }, 916 | "ventura": { 917 | "cellar": "/usr/local/Cellar", 918 | "url": "https://ghcr.io/v2/homebrew/core/dnsmasq/blobs/sha256:f0fda257b89641375e5711c1afdc66c35771234a7fc2a51c124cc856085dd005", 919 | "sha256": "f0fda257b89641375e5711c1afdc66c35771234a7fc2a51c124cc856085dd005" 920 | }, 921 | "monterey": { 922 | "cellar": "/usr/local/Cellar", 923 | "url": "https://ghcr.io/v2/homebrew/core/dnsmasq/blobs/sha256:51b10e0af794890ffcf3220848032c3086af3d3f5d488b454003fcde72793225", 924 | "sha256": "51b10e0af794890ffcf3220848032c3086af3d3f5d488b454003fcde72793225" 925 | }, 926 | "x86_64_linux": { 927 | "cellar": "/home/linuxbrew/.linuxbrew/Cellar", 928 | "url": "https://ghcr.io/v2/homebrew/core/dnsmasq/blobs/sha256:ba407d18d57b06e39f5576cda5f97703b1def62c14960d62f16eecd236180fc4", 929 | "sha256": "ba407d18d57b06e39f5576cda5f97703b1def62c14960d62f16eecd236180fc4" 930 | } 931 | } 932 | } 933 | }, 934 | "mariadb": { 935 | "version": "10.4.11", 936 | "bottle": { 937 | "cellar": "/usr/local/Cellar", 938 | "prefix": "/usr/local", 939 | "files": { 940 | "catalina": { 941 | "url": "https://homebrew.bintray.com/bottles/mariadb-10.4.11.catalina.bottle.tar.gz", 942 | "sha256": "0f630795af6c307a0d301aefd877a7ff61a35d4ef4459e03e772cd21b2c4f164" 943 | }, 944 | "mojave": { 945 | "url": "https://homebrew.bintray.com/bottles/mariadb-10.4.11.mojave.bottle.tar.gz", 946 | "sha256": "aaac9c0de3b35432ea6266d567bc5192aecdaff59c89cb6dbc4d01a072a04571" 947 | }, 948 | "high_sierra": { 949 | "url": "https://homebrew.bintray.com/bottles/mariadb-10.4.11.high_sierra.bottle.tar.gz", 950 | "sha256": "ae1478ae76966d09c308cccc91955fa8d117fc6bd5514366f8d0a75d2c8b4477" 951 | } 952 | } 953 | } 954 | }, 955 | "nginx": { 956 | "version": "1.25.4", 957 | "bottle": { 958 | "rebuild": 0, 959 | "root_url": "https://ghcr.io/v2/homebrew/core", 960 | "files": { 961 | "arm64_sonoma": { 962 | "cellar": "/opt/homebrew/Cellar", 963 | "url": "https://ghcr.io/v2/homebrew/core/nginx/blobs/sha256:5e1209c9d6ec8000de03a13febce98faf478e6135cd4ed10c9acad0c99b08a6b", 964 | "sha256": "5e1209c9d6ec8000de03a13febce98faf478e6135cd4ed10c9acad0c99b08a6b" 965 | }, 966 | "arm64_ventura": { 967 | "cellar": "/opt/homebrew/Cellar", 968 | "url": "https://ghcr.io/v2/homebrew/core/nginx/blobs/sha256:0843071b15940ca4b493a6f4d8949e37c59eed065432192a1984dfb37c207599", 969 | "sha256": "0843071b15940ca4b493a6f4d8949e37c59eed065432192a1984dfb37c207599" 970 | }, 971 | "arm64_monterey": { 972 | "cellar": "/opt/homebrew/Cellar", 973 | "url": "https://ghcr.io/v2/homebrew/core/nginx/blobs/sha256:f155883f1af8b2c47e953b4b45f76f259044accc59bb77dd9cac98ab0344103a", 974 | "sha256": "f155883f1af8b2c47e953b4b45f76f259044accc59bb77dd9cac98ab0344103a" 975 | }, 976 | "sonoma": { 977 | "cellar": "/usr/local/Cellar", 978 | "url": "https://ghcr.io/v2/homebrew/core/nginx/blobs/sha256:af4d7ce61f0480090abc69992c37473cc5a364a644cd09df6ab86b928991bf1e", 979 | "sha256": "af4d7ce61f0480090abc69992c37473cc5a364a644cd09df6ab86b928991bf1e" 980 | }, 981 | "ventura": { 982 | "cellar": "/usr/local/Cellar", 983 | "url": "https://ghcr.io/v2/homebrew/core/nginx/blobs/sha256:2bc4312caf668685912acbfb7203f39f34899a4abaed8f215e4d8d1b1aee8325", 984 | "sha256": "2bc4312caf668685912acbfb7203f39f34899a4abaed8f215e4d8d1b1aee8325" 985 | }, 986 | "monterey": { 987 | "cellar": "/usr/local/Cellar", 988 | "url": "https://ghcr.io/v2/homebrew/core/nginx/blobs/sha256:52cfde3116f5922b3a6e71d8953915c8f9e6b01f6136bc5194753c5163e9f253", 989 | "sha256": "52cfde3116f5922b3a6e71d8953915c8f9e6b01f6136bc5194753c5163e9f253" 990 | }, 991 | "x86_64_linux": { 992 | "cellar": "/home/linuxbrew/.linuxbrew/Cellar", 993 | "url": "https://ghcr.io/v2/homebrew/core/nginx/blobs/sha256:393982d5773f283a46af6bb727e25f50856e8ed6da1b4132efd1c1e5cc04e9f1", 994 | "sha256": "393982d5773f283a46af6bb727e25f50856e8ed6da1b4132efd1c1e5cc04e9f1" 995 | } 996 | } 997 | } 998 | }, 999 | "redis": { 1000 | "version": "7.2.4", 1001 | "bottle": { 1002 | "rebuild": 0, 1003 | "root_url": "https://ghcr.io/v2/homebrew/core", 1004 | "files": { 1005 | "arm64_sonoma": { 1006 | "cellar": ":any", 1007 | "url": "https://ghcr.io/v2/homebrew/core/redis/blobs/sha256:7840031cf7bb94c62d6e42b6e730e8447c31ae37e3564a43a772fb8e6e0e51cf", 1008 | "sha256": "7840031cf7bb94c62d6e42b6e730e8447c31ae37e3564a43a772fb8e6e0e51cf" 1009 | }, 1010 | "arm64_ventura": { 1011 | "cellar": ":any", 1012 | "url": "https://ghcr.io/v2/homebrew/core/redis/blobs/sha256:975f8c13a24d1b0f4a8e0f3c9ea2338d209ec9bcfcebd3130d0a72c3e4809c58", 1013 | "sha256": "975f8c13a24d1b0f4a8e0f3c9ea2338d209ec9bcfcebd3130d0a72c3e4809c58" 1014 | }, 1015 | "arm64_monterey": { 1016 | "cellar": ":any", 1017 | "url": "https://ghcr.io/v2/homebrew/core/redis/blobs/sha256:ac32435ac27d8a061ee32ba88cf842ee3dff64a85803aa4d6a65d841e32ccbbd", 1018 | "sha256": "ac32435ac27d8a061ee32ba88cf842ee3dff64a85803aa4d6a65d841e32ccbbd" 1019 | }, 1020 | "sonoma": { 1021 | "cellar": ":any", 1022 | "url": "https://ghcr.io/v2/homebrew/core/redis/blobs/sha256:09767dffd13dd62aed6bb904f35946c3b9dae2db58cc884dc179d6e12b573673", 1023 | "sha256": "09767dffd13dd62aed6bb904f35946c3b9dae2db58cc884dc179d6e12b573673" 1024 | }, 1025 | "ventura": { 1026 | "cellar": ":any", 1027 | "url": "https://ghcr.io/v2/homebrew/core/redis/blobs/sha256:3ce1ca917e08acf3cad5023e0d7184505be327f797f18eb692711325d8c540c9", 1028 | "sha256": "3ce1ca917e08acf3cad5023e0d7184505be327f797f18eb692711325d8c540c9" 1029 | }, 1030 | "monterey": { 1031 | "cellar": ":any", 1032 | "url": "https://ghcr.io/v2/homebrew/core/redis/blobs/sha256:357f32b7bbe42ae1323d693bebd756f1589ae38a03e25f1a217fdd870b301797", 1033 | "sha256": "357f32b7bbe42ae1323d693bebd756f1589ae38a03e25f1a217fdd870b301797" 1034 | }, 1035 | "x86_64_linux": { 1036 | "cellar": ":any_skip_relocation", 1037 | "url": "https://ghcr.io/v2/homebrew/core/redis/blobs/sha256:92d2c8978df576d27b03b8f806136eaa920329c0fec4f4606f1a07abaad6c353", 1038 | "sha256": "92d2c8978df576d27b03b8f806136eaa920329c0fec4f4606f1a07abaad6c353" 1039 | } 1040 | } 1041 | } 1042 | }, 1043 | "sqlite": { 1044 | "version": "3.45.2", 1045 | "bottle": { 1046 | "rebuild": 0, 1047 | "root_url": "https://ghcr.io/v2/homebrew/core", 1048 | "files": { 1049 | "arm64_sonoma": { 1050 | "cellar": ":any", 1051 | "url": "https://ghcr.io/v2/homebrew/core/sqlite/blobs/sha256:40d4422804074ca098583526923f1d3c5a3710f57c5dc5525f493e6a17121c8b", 1052 | "sha256": "40d4422804074ca098583526923f1d3c5a3710f57c5dc5525f493e6a17121c8b" 1053 | }, 1054 | "arm64_ventura": { 1055 | "cellar": ":any", 1056 | "url": "https://ghcr.io/v2/homebrew/core/sqlite/blobs/sha256:59c2a2bf11f1acd5726d9b5e0962dbc0d78e5f06af1723e85e5d06b86740c32e", 1057 | "sha256": "59c2a2bf11f1acd5726d9b5e0962dbc0d78e5f06af1723e85e5d06b86740c32e" 1058 | }, 1059 | "arm64_monterey": { 1060 | "cellar": ":any", 1061 | "url": "https://ghcr.io/v2/homebrew/core/sqlite/blobs/sha256:b471f70fa248faa2d811128e84b818be47832514618bfe7206aa2777fd6c62a1", 1062 | "sha256": "b471f70fa248faa2d811128e84b818be47832514618bfe7206aa2777fd6c62a1" 1063 | }, 1064 | "sonoma": { 1065 | "cellar": ":any", 1066 | "url": "https://ghcr.io/v2/homebrew/core/sqlite/blobs/sha256:27b2cbea0051b4314e84c124a3b315437b25fc79c49621263f82120624653181", 1067 | "sha256": "27b2cbea0051b4314e84c124a3b315437b25fc79c49621263f82120624653181" 1068 | }, 1069 | "ventura": { 1070 | "cellar": ":any", 1071 | "url": "https://ghcr.io/v2/homebrew/core/sqlite/blobs/sha256:b528fc258961192ff8fd5abd9b2ea18d2b24508b41aee7c5647c913ff93ff599", 1072 | "sha256": "b528fc258961192ff8fd5abd9b2ea18d2b24508b41aee7c5647c913ff93ff599" 1073 | }, 1074 | "monterey": { 1075 | "cellar": ":any", 1076 | "url": "https://ghcr.io/v2/homebrew/core/sqlite/blobs/sha256:49e046ad6f979b3d4157d5a5128348f5bfd1b1e46da9692736ad89f2f5f1dd05", 1077 | "sha256": "49e046ad6f979b3d4157d5a5128348f5bfd1b1e46da9692736ad89f2f5f1dd05" 1078 | }, 1079 | "x86_64_linux": { 1080 | "cellar": ":any_skip_relocation", 1081 | "url": "https://ghcr.io/v2/homebrew/core/sqlite/blobs/sha256:70e554fc62e6528ec653e0a782a6b5d37075164b8c033ec1b4f449cf851f17a2", 1082 | "sha256": "70e554fc62e6528ec653e0a782a6b5d37075164b8c033ec1b4f449cf851f17a2" 1083 | } 1084 | } 1085 | } 1086 | }, 1087 | "ansible": { 1088 | "version": "9.4.0", 1089 | "bottle": { 1090 | "rebuild": 0, 1091 | "root_url": "https://ghcr.io/v2/homebrew/core", 1092 | "files": { 1093 | "arm64_sonoma": { 1094 | "cellar": ":any", 1095 | "url": "https://ghcr.io/v2/homebrew/core/ansible/blobs/sha256:ff6b0be1882c6b052f0da6a21f3ef6bd787ac7cef40919abc4ec008e8acfa1c1", 1096 | "sha256": "ff6b0be1882c6b052f0da6a21f3ef6bd787ac7cef40919abc4ec008e8acfa1c1" 1097 | }, 1098 | "arm64_ventura": { 1099 | "cellar": ":any", 1100 | "url": "https://ghcr.io/v2/homebrew/core/ansible/blobs/sha256:8b94aa8821270a6497a15239c09934e130b2291161ec763f3b3f13a9bf56b006", 1101 | "sha256": "8b94aa8821270a6497a15239c09934e130b2291161ec763f3b3f13a9bf56b006" 1102 | }, 1103 | "arm64_monterey": { 1104 | "cellar": ":any", 1105 | "url": "https://ghcr.io/v2/homebrew/core/ansible/blobs/sha256:9a471a44c18317c3243c4dc648cec9f23c9c4f7197e481fafa12c202ef9566f0", 1106 | "sha256": "9a471a44c18317c3243c4dc648cec9f23c9c4f7197e481fafa12c202ef9566f0" 1107 | }, 1108 | "sonoma": { 1109 | "cellar": ":any", 1110 | "url": "https://ghcr.io/v2/homebrew/core/ansible/blobs/sha256:316b146dab7e22de7ca3fc7438baa13d4d7928fb32913f1195f79af69b88c35a", 1111 | "sha256": "316b146dab7e22de7ca3fc7438baa13d4d7928fb32913f1195f79af69b88c35a" 1112 | }, 1113 | "ventura": { 1114 | "cellar": ":any", 1115 | "url": "https://ghcr.io/v2/homebrew/core/ansible/blobs/sha256:f5d2593d2fb6f9ebca8c2aa3b287422af3adccc74a85b85a992287025df0c714", 1116 | "sha256": "f5d2593d2fb6f9ebca8c2aa3b287422af3adccc74a85b85a992287025df0c714" 1117 | }, 1118 | "monterey": { 1119 | "cellar": ":any", 1120 | "url": "https://ghcr.io/v2/homebrew/core/ansible/blobs/sha256:2a8042875e8d5caed4ff000508fc32b871936e7d1b8a8bf5bda43d4d3d7d9104", 1121 | "sha256": "2a8042875e8d5caed4ff000508fc32b871936e7d1b8a8bf5bda43d4d3d7d9104" 1122 | }, 1123 | "x86_64_linux": { 1124 | "cellar": ":any_skip_relocation", 1125 | "url": "https://ghcr.io/v2/homebrew/core/ansible/blobs/sha256:0d201e9cf190a1704bdafe9584fd58b21a5122e1cd0bceeb6668bacf274f800c", 1126 | "sha256": "0d201e9cf190a1704bdafe9584fd58b21a5122e1cd0bceeb6668bacf274f800c" 1127 | } 1128 | } 1129 | } 1130 | }, 1131 | "tmux": { 1132 | "version": "3.4", 1133 | "bottle": { 1134 | "rebuild": 1, 1135 | "root_url": "https://ghcr.io/v2/homebrew/core", 1136 | "files": { 1137 | "arm64_sonoma": { 1138 | "cellar": ":any", 1139 | "url": "https://ghcr.io/v2/homebrew/core/tmux/blobs/sha256:101becaca4102767715cd2f1c9086b03d80d9b4b7fc59e75d0d1220413772c58", 1140 | "sha256": "101becaca4102767715cd2f1c9086b03d80d9b4b7fc59e75d0d1220413772c58" 1141 | }, 1142 | "arm64_ventura": { 1143 | "cellar": ":any", 1144 | "url": "https://ghcr.io/v2/homebrew/core/tmux/blobs/sha256:15ca059bf5dcfd3e2ec4103660372c230efb8aa33948c3f6a0dda94f1f1c67f6", 1145 | "sha256": "15ca059bf5dcfd3e2ec4103660372c230efb8aa33948c3f6a0dda94f1f1c67f6" 1146 | }, 1147 | "arm64_monterey": { 1148 | "cellar": ":any", 1149 | "url": "https://ghcr.io/v2/homebrew/core/tmux/blobs/sha256:a89966c15c5556d181a2f06f2695ac15ec51e0c337a4b91e923012caeb892806", 1150 | "sha256": "a89966c15c5556d181a2f06f2695ac15ec51e0c337a4b91e923012caeb892806" 1151 | }, 1152 | "sonoma": { 1153 | "cellar": ":any", 1154 | "url": "https://ghcr.io/v2/homebrew/core/tmux/blobs/sha256:fe5272c8b1d1b6fb10a39eff3b11a5579c63827965118bfcae0f0b61d83bb795", 1155 | "sha256": "fe5272c8b1d1b6fb10a39eff3b11a5579c63827965118bfcae0f0b61d83bb795" 1156 | }, 1157 | "ventura": { 1158 | "cellar": ":any", 1159 | "url": "https://ghcr.io/v2/homebrew/core/tmux/blobs/sha256:d96cb8a4ec0ec26a412c38b6604e8c3671b7d0117f3d582134ec048cce121807", 1160 | "sha256": "d96cb8a4ec0ec26a412c38b6604e8c3671b7d0117f3d582134ec048cce121807" 1161 | }, 1162 | "monterey": { 1163 | "cellar": ":any", 1164 | "url": "https://ghcr.io/v2/homebrew/core/tmux/blobs/sha256:0a70001ad83e765b542a79b2e6accb4bff8194e063eeb35088c9b105c8e46d51", 1165 | "sha256": "0a70001ad83e765b542a79b2e6accb4bff8194e063eeb35088c9b105c8e46d51" 1166 | }, 1167 | "x86_64_linux": { 1168 | "cellar": ":any_skip_relocation", 1169 | "url": "https://ghcr.io/v2/homebrew/core/tmux/blobs/sha256:c0f6fef8c59fa79ba76890c5eb0c9dd95d988fe13160aac22b5c23de248161f2", 1170 | "sha256": "c0f6fef8c59fa79ba76890c5eb0c9dd95d988fe13160aac22b5c23de248161f2" 1171 | } 1172 | } 1173 | } 1174 | }, 1175 | "tmuxinator": { 1176 | "version": "3.1.2", 1177 | "bottle": { 1178 | "rebuild": 0, 1179 | "root_url": "https://ghcr.io/v2/homebrew/core", 1180 | "files": { 1181 | "arm64_sonoma": { 1182 | "cellar": ":any_skip_relocation", 1183 | "url": "https://ghcr.io/v2/homebrew/core/tmuxinator/blobs/sha256:c9712fe213b31d38a7f6e0ff3065004a9b8841b4ad0560357a62ecef0540669f", 1184 | "sha256": "c9712fe213b31d38a7f6e0ff3065004a9b8841b4ad0560357a62ecef0540669f" 1185 | }, 1186 | "arm64_ventura": { 1187 | "cellar": ":any_skip_relocation", 1188 | "url": "https://ghcr.io/v2/homebrew/core/tmuxinator/blobs/sha256:c9712fe213b31d38a7f6e0ff3065004a9b8841b4ad0560357a62ecef0540669f", 1189 | "sha256": "c9712fe213b31d38a7f6e0ff3065004a9b8841b4ad0560357a62ecef0540669f" 1190 | }, 1191 | "arm64_monterey": { 1192 | "cellar": ":any_skip_relocation", 1193 | "url": "https://ghcr.io/v2/homebrew/core/tmuxinator/blobs/sha256:c9712fe213b31d38a7f6e0ff3065004a9b8841b4ad0560357a62ecef0540669f", 1194 | "sha256": "c9712fe213b31d38a7f6e0ff3065004a9b8841b4ad0560357a62ecef0540669f" 1195 | }, 1196 | "sonoma": { 1197 | "cellar": ":any_skip_relocation", 1198 | "url": "https://ghcr.io/v2/homebrew/core/tmuxinator/blobs/sha256:e18a834507459d648abcedaa12a0301be4e0054d0d1e7d67872210f313355fa1", 1199 | "sha256": "e18a834507459d648abcedaa12a0301be4e0054d0d1e7d67872210f313355fa1" 1200 | }, 1201 | "ventura": { 1202 | "cellar": ":any_skip_relocation", 1203 | "url": "https://ghcr.io/v2/homebrew/core/tmuxinator/blobs/sha256:e18a834507459d648abcedaa12a0301be4e0054d0d1e7d67872210f313355fa1", 1204 | "sha256": "e18a834507459d648abcedaa12a0301be4e0054d0d1e7d67872210f313355fa1" 1205 | }, 1206 | "monterey": { 1207 | "cellar": ":any_skip_relocation", 1208 | "url": "https://ghcr.io/v2/homebrew/core/tmuxinator/blobs/sha256:e18a834507459d648abcedaa12a0301be4e0054d0d1e7d67872210f313355fa1", 1209 | "sha256": "e18a834507459d648abcedaa12a0301be4e0054d0d1e7d67872210f313355fa1" 1210 | }, 1211 | "x86_64_linux": { 1212 | "cellar": ":any_skip_relocation", 1213 | "url": "https://ghcr.io/v2/homebrew/core/tmuxinator/blobs/sha256:c9712fe213b31d38a7f6e0ff3065004a9b8841b4ad0560357a62ecef0540669f", 1214 | "sha256": "c9712fe213b31d38a7f6e0ff3065004a9b8841b4ad0560357a62ecef0540669f" 1215 | } 1216 | } 1217 | } 1218 | }, 1219 | "watch": { 1220 | "version": "4.0.4", 1221 | "bottle": { 1222 | "rebuild": 0, 1223 | "root_url": "https://ghcr.io/v2/homebrew/core", 1224 | "files": { 1225 | "arm64_sonoma": { 1226 | "cellar": ":any", 1227 | "url": "https://ghcr.io/v2/homebrew/core/watch/blobs/sha256:9d8b55c73a9b913186f6ef8dc7642e8a718b5edea93fc3301fff5f44ad42fe90", 1228 | "sha256": "9d8b55c73a9b913186f6ef8dc7642e8a718b5edea93fc3301fff5f44ad42fe90" 1229 | }, 1230 | "arm64_ventura": { 1231 | "cellar": ":any_skip_relocation", 1232 | "url": "https://ghcr.io/v2/homebrew/core/watch/blobs/sha256:f2e3977aacd949425257bb08b9ed66125e4cdff76a6e5b2464718139bc966d8c", 1233 | "sha256": "f2e3977aacd949425257bb08b9ed66125e4cdff76a6e5b2464718139bc966d8c" 1234 | }, 1235 | "arm64_monterey": { 1236 | "cellar": ":any_skip_relocation", 1237 | "url": "https://ghcr.io/v2/homebrew/core/watch/blobs/sha256:5f7ea5b77d12731688f4e2e72e8190f70c62763d4bdb94e8c30ea1c0625db9d6", 1238 | "sha256": "5f7ea5b77d12731688f4e2e72e8190f70c62763d4bdb94e8c30ea1c0625db9d6" 1239 | }, 1240 | "arm64_big_sur": { 1241 | "cellar": ":any_skip_relocation", 1242 | "url": "https://ghcr.io/v2/homebrew/core/watch/blobs/sha256:3aac6404005a0953a1126687829863e19fa4d0f02acc4e58d8d099615bd9d014", 1243 | "sha256": "3aac6404005a0953a1126687829863e19fa4d0f02acc4e58d8d099615bd9d014" 1244 | }, 1245 | "sonoma": { 1246 | "cellar": ":any", 1247 | "url": "https://ghcr.io/v2/homebrew/core/watch/blobs/sha256:58baecc442fe806ece26dcd2c055532f226b8a06a732d32392c0858c56a6ac67", 1248 | "sha256": "58baecc442fe806ece26dcd2c055532f226b8a06a732d32392c0858c56a6ac67" 1249 | }, 1250 | "ventura": { 1251 | "cellar": ":any_skip_relocation", 1252 | "url": "https://ghcr.io/v2/homebrew/core/watch/blobs/sha256:80193cc3557144f620767de324af7f45bd0717496b81d8d09f811cf0e9e7397c", 1253 | "sha256": "80193cc3557144f620767de324af7f45bd0717496b81d8d09f811cf0e9e7397c" 1254 | }, 1255 | "monterey": { 1256 | "cellar": ":any_skip_relocation", 1257 | "url": "https://ghcr.io/v2/homebrew/core/watch/blobs/sha256:f52987abe01c3e3a09c5608d02fd8a4714632f4256ae58c79d4a32f41e42669b", 1258 | "sha256": "f52987abe01c3e3a09c5608d02fd8a4714632f4256ae58c79d4a32f41e42669b" 1259 | }, 1260 | "big_sur": { 1261 | "cellar": ":any_skip_relocation", 1262 | "url": "https://ghcr.io/v2/homebrew/core/watch/blobs/sha256:d61077f4bffe12e0132a86c138630d2c422932272a61959ab1a01e8b7c244edb", 1263 | "sha256": "d61077f4bffe12e0132a86c138630d2c422932272a61959ab1a01e8b7c244edb" 1264 | }, 1265 | "x86_64_linux": { 1266 | "cellar": ":any_skip_relocation", 1267 | "url": "https://ghcr.io/v2/homebrew/core/watch/blobs/sha256:03aa0061c8707c4d31402f1697429c7619e08e29221de08eed00ec9a26d3bc1e", 1268 | "sha256": "03aa0061c8707c4d31402f1697429c7619e08e29221de08eed00ec9a26d3bc1e" 1269 | } 1270 | } 1271 | } 1272 | }, 1273 | "bat": { 1274 | "version": "0.24.0", 1275 | "bottle": { 1276 | "rebuild": 0, 1277 | "root_url": "https://ghcr.io/v2/homebrew/core", 1278 | "files": { 1279 | "arm64_sonoma": { 1280 | "cellar": ":any", 1281 | "url": "https://ghcr.io/v2/homebrew/core/bat/blobs/sha256:66f03028e55d7a9ce344c7910b8469e16c0acd812ebc2886cdff8c10f9cf34c4", 1282 | "sha256": "66f03028e55d7a9ce344c7910b8469e16c0acd812ebc2886cdff8c10f9cf34c4" 1283 | }, 1284 | "arm64_ventura": { 1285 | "cellar": ":any", 1286 | "url": "https://ghcr.io/v2/homebrew/core/bat/blobs/sha256:b36dd52fda8441a5b9c83f0914b4f362c8caa9c6a1143b1ee2c7f54941b8ed6b", 1287 | "sha256": "b36dd52fda8441a5b9c83f0914b4f362c8caa9c6a1143b1ee2c7f54941b8ed6b" 1288 | }, 1289 | "arm64_monterey": { 1290 | "cellar": ":any", 1291 | "url": "https://ghcr.io/v2/homebrew/core/bat/blobs/sha256:0a7454b37d7b095de1006996ceb43a585ca05339c2f540dde1703202b139695d", 1292 | "sha256": "0a7454b37d7b095de1006996ceb43a585ca05339c2f540dde1703202b139695d" 1293 | }, 1294 | "sonoma": { 1295 | "cellar": ":any", 1296 | "url": "https://ghcr.io/v2/homebrew/core/bat/blobs/sha256:58769b8c6b1380e9d066586bf8f678993457ef9ea449c3d4d7955461018d3b49", 1297 | "sha256": "58769b8c6b1380e9d066586bf8f678993457ef9ea449c3d4d7955461018d3b49" 1298 | }, 1299 | "ventura": { 1300 | "cellar": ":any", 1301 | "url": "https://ghcr.io/v2/homebrew/core/bat/blobs/sha256:d6e91c86547c67292cb6abf92fac7f9c6272bf6bca5483466e3e9adc744ce1c0", 1302 | "sha256": "d6e91c86547c67292cb6abf92fac7f9c6272bf6bca5483466e3e9adc744ce1c0" 1303 | }, 1304 | "monterey": { 1305 | "cellar": ":any", 1306 | "url": "https://ghcr.io/v2/homebrew/core/bat/blobs/sha256:eb2c932132331cb87e5cace268b034e32c3a4741fccd42813cf853269e3a9c21", 1307 | "sha256": "eb2c932132331cb87e5cace268b034e32c3a4741fccd42813cf853269e3a9c21" 1308 | }, 1309 | "x86_64_linux": { 1310 | "cellar": ":any_skip_relocation", 1311 | "url": "https://ghcr.io/v2/homebrew/core/bat/blobs/sha256:0ae5db045ded8528d1588d703d62d6be481ebe006888c7e29f7e178b07e0e926", 1312 | "sha256": "0ae5db045ded8528d1588d703d62d6be481ebe006888c7e29f7e178b07e0e926" 1313 | } 1314 | } 1315 | } 1316 | }, 1317 | "fzf": { 1318 | "version": "0.48.1", 1319 | "bottle": { 1320 | "rebuild": 1, 1321 | "root_url": "https://ghcr.io/v2/homebrew/core", 1322 | "files": { 1323 | "arm64_sonoma": { 1324 | "cellar": ":any_skip_relocation", 1325 | "url": "https://ghcr.io/v2/homebrew/core/fzf/blobs/sha256:3b8167eafa725b79900d14028b663fb76882f807b9bd184b960bcaf42f102fa1", 1326 | "sha256": "3b8167eafa725b79900d14028b663fb76882f807b9bd184b960bcaf42f102fa1" 1327 | }, 1328 | "arm64_ventura": { 1329 | "cellar": ":any_skip_relocation", 1330 | "url": "https://ghcr.io/v2/homebrew/core/fzf/blobs/sha256:01d6a1a8a6e73b4b47684e96deece21c76a869d612370218fab17af585442908", 1331 | "sha256": "01d6a1a8a6e73b4b47684e96deece21c76a869d612370218fab17af585442908" 1332 | }, 1333 | "arm64_monterey": { 1334 | "cellar": ":any_skip_relocation", 1335 | "url": "https://ghcr.io/v2/homebrew/core/fzf/blobs/sha256:d5139e0e7fde60b17a0bddf0a018281d4e67e34535c43eab1af4dfc158380b08", 1336 | "sha256": "d5139e0e7fde60b17a0bddf0a018281d4e67e34535c43eab1af4dfc158380b08" 1337 | }, 1338 | "sonoma": { 1339 | "cellar": ":any_skip_relocation", 1340 | "url": "https://ghcr.io/v2/homebrew/core/fzf/blobs/sha256:1bbf0ed64f9d47e7f514515fa7ef93dd36d5c46a2fa3edbd8fdda4bc171288ba", 1341 | "sha256": "1bbf0ed64f9d47e7f514515fa7ef93dd36d5c46a2fa3edbd8fdda4bc171288ba" 1342 | }, 1343 | "ventura": { 1344 | "cellar": ":any_skip_relocation", 1345 | "url": "https://ghcr.io/v2/homebrew/core/fzf/blobs/sha256:9c160f544683e0bf914e47a3caf2f9c26faa05101f5599a2c9c4ea40f68cd52e", 1346 | "sha256": "9c160f544683e0bf914e47a3caf2f9c26faa05101f5599a2c9c4ea40f68cd52e" 1347 | }, 1348 | "monterey": { 1349 | "cellar": ":any_skip_relocation", 1350 | "url": "https://ghcr.io/v2/homebrew/core/fzf/blobs/sha256:35e529aebc0d8ab1f8729c48722deba5f2ad28f4071c632ecfd8a21400c57960", 1351 | "sha256": "35e529aebc0d8ab1f8729c48722deba5f2ad28f4071c632ecfd8a21400c57960" 1352 | }, 1353 | "x86_64_linux": { 1354 | "cellar": ":any_skip_relocation", 1355 | "url": "https://ghcr.io/v2/homebrew/core/fzf/blobs/sha256:165f28099ad098a9128cdfdfa31ceaa7913d990cd9e33574a16459f8eab51dc9", 1356 | "sha256": "165f28099ad098a9128cdfdfa31ceaa7913d990cd9e33574a16459f8eab51dc9" 1357 | } 1358 | } 1359 | } 1360 | }, 1361 | "prettyping": { 1362 | "version": "1.0.1", 1363 | "bottle": { 1364 | "rebuild": 1, 1365 | "root_url": "https://ghcr.io/v2/homebrew/core", 1366 | "files": { 1367 | "all": { 1368 | "cellar": ":any_skip_relocation", 1369 | "url": "https://ghcr.io/v2/homebrew/core/prettyping/blobs/sha256:692fabb668d4e7d526cfa9581fbb5454cad14f938a4ab407b9d416bd884c11c1", 1370 | "sha256": "692fabb668d4e7d526cfa9581fbb5454cad14f938a4ab407b9d416bd884c11c1" 1371 | } 1372 | } 1373 | } 1374 | }, 1375 | "httpie": { 1376 | "version": "3.2.2_4", 1377 | "bottle": { 1378 | "rebuild": 1, 1379 | "root_url": "https://ghcr.io/v2/homebrew/core", 1380 | "files": { 1381 | "arm64_sonoma": { 1382 | "cellar": ":any_skip_relocation", 1383 | "url": "https://ghcr.io/v2/homebrew/core/httpie/blobs/sha256:b7b7fd3bb0a1a7395e5a354da93c8a32542ed9be389d7c36160943313a9f09f1", 1384 | "sha256": "b7b7fd3bb0a1a7395e5a354da93c8a32542ed9be389d7c36160943313a9f09f1" 1385 | }, 1386 | "arm64_ventura": { 1387 | "cellar": ":any_skip_relocation", 1388 | "url": "https://ghcr.io/v2/homebrew/core/httpie/blobs/sha256:4bc4ee0404b8329417f3e181b8123f5fad97dc4b798f4382f89c592086446fed", 1389 | "sha256": "4bc4ee0404b8329417f3e181b8123f5fad97dc4b798f4382f89c592086446fed" 1390 | }, 1391 | "arm64_monterey": { 1392 | "cellar": ":any_skip_relocation", 1393 | "url": "https://ghcr.io/v2/homebrew/core/httpie/blobs/sha256:ec5b7a345d3956d2a1b942e92c47eaec888533eeb7670feb5d89f37f9a52d4e6", 1394 | "sha256": "ec5b7a345d3956d2a1b942e92c47eaec888533eeb7670feb5d89f37f9a52d4e6" 1395 | }, 1396 | "sonoma": { 1397 | "cellar": ":any_skip_relocation", 1398 | "url": "https://ghcr.io/v2/homebrew/core/httpie/blobs/sha256:86dce0667f668caba805363925b4a4e5a36ce6cfae95b95227c890bca4897e0c", 1399 | "sha256": "86dce0667f668caba805363925b4a4e5a36ce6cfae95b95227c890bca4897e0c" 1400 | }, 1401 | "ventura": { 1402 | "cellar": ":any_skip_relocation", 1403 | "url": "https://ghcr.io/v2/homebrew/core/httpie/blobs/sha256:6051ddf61b0cca5d7250aeb5cb2086db927e04288ae6ce95db1d3bf8c7e9e91e", 1404 | "sha256": "6051ddf61b0cca5d7250aeb5cb2086db927e04288ae6ce95db1d3bf8c7e9e91e" 1405 | }, 1406 | "monterey": { 1407 | "cellar": ":any_skip_relocation", 1408 | "url": "https://ghcr.io/v2/homebrew/core/httpie/blobs/sha256:5815cb95e16180093937987c215882368f3bd9f76a4c15d4a3eeae1d956a50c4", 1409 | "sha256": "5815cb95e16180093937987c215882368f3bd9f76a4c15d4a3eeae1d956a50c4" 1410 | }, 1411 | "x86_64_linux": { 1412 | "cellar": ":any_skip_relocation", 1413 | "url": "https://ghcr.io/v2/homebrew/core/httpie/blobs/sha256:00ac00e57e2bb4595b281b8cb128015afc74df43fa0a79e39b47088a5ab7934a", 1414 | "sha256": "00ac00e57e2bb4595b281b8cb128015afc74df43fa0a79e39b47088a5ab7934a" 1415 | } 1416 | } 1417 | } 1418 | }, 1419 | "thefuck": { 1420 | "version": "3.32", 1421 | "bottle": { 1422 | "rebuild": 4, 1423 | "root_url": "https://ghcr.io/v2/homebrew/core", 1424 | "files": { 1425 | "arm64_sonoma": { 1426 | "cellar": ":any_skip_relocation", 1427 | "url": "https://ghcr.io/v2/homebrew/core/thefuck/blobs/sha256:2500915b3e5ae0e48eaaeb40ec7cf32a9cf9e5a1d5ee122a8b81fee9e2883e9a", 1428 | "sha256": "2500915b3e5ae0e48eaaeb40ec7cf32a9cf9e5a1d5ee122a8b81fee9e2883e9a" 1429 | }, 1430 | "arm64_ventura": { 1431 | "cellar": ":any_skip_relocation", 1432 | "url": "https://ghcr.io/v2/homebrew/core/thefuck/blobs/sha256:4fce04b72e849bedecb73ab255ce785547c1ca0dc03692fdeb1aff09449088d7", 1433 | "sha256": "4fce04b72e849bedecb73ab255ce785547c1ca0dc03692fdeb1aff09449088d7" 1434 | }, 1435 | "arm64_monterey": { 1436 | "cellar": ":any_skip_relocation", 1437 | "url": "https://ghcr.io/v2/homebrew/core/thefuck/blobs/sha256:c64d432a8a96d9966f3fd83b103b99e74e37e0de3d093470ce49a16262ea27ca", 1438 | "sha256": "c64d432a8a96d9966f3fd83b103b99e74e37e0de3d093470ce49a16262ea27ca" 1439 | }, 1440 | "sonoma": { 1441 | "cellar": ":any_skip_relocation", 1442 | "url": "https://ghcr.io/v2/homebrew/core/thefuck/blobs/sha256:f43208a72c2dd68ae928b83ab412cbb475e5aefe9b187a585e0fee51dad9eb90", 1443 | "sha256": "f43208a72c2dd68ae928b83ab412cbb475e5aefe9b187a585e0fee51dad9eb90" 1444 | }, 1445 | "ventura": { 1446 | "cellar": ":any_skip_relocation", 1447 | "url": "https://ghcr.io/v2/homebrew/core/thefuck/blobs/sha256:99bd0b5a6ab2ecced963bf1f671c4d05e01d7ebfc438da2b0cb9b65240b7f1eb", 1448 | "sha256": "99bd0b5a6ab2ecced963bf1f671c4d05e01d7ebfc438da2b0cb9b65240b7f1eb" 1449 | }, 1450 | "monterey": { 1451 | "cellar": ":any_skip_relocation", 1452 | "url": "https://ghcr.io/v2/homebrew/core/thefuck/blobs/sha256:99b4d59149650a245c251e1f0451b76f24dcfddead80ab86cc59dc92874487ca", 1453 | "sha256": "99b4d59149650a245c251e1f0451b76f24dcfddead80ab86cc59dc92874487ca" 1454 | }, 1455 | "x86_64_linux": { 1456 | "cellar": ":any_skip_relocation", 1457 | "url": "https://ghcr.io/v2/homebrew/core/thefuck/blobs/sha256:ca39bcb4d313412aeb25a11fa8d3925bd6d37007b47b27dbc7c0f12508bb2e60", 1458 | "sha256": "ca39bcb4d313412aeb25a11fa8d3925bd6d37007b47b27dbc7c0f12508bb2e60" 1459 | } 1460 | } 1461 | } 1462 | }, 1463 | "php@7.4": { 1464 | "version": "7.4.29", 1465 | "bottle": { 1466 | "rebuild": 0, 1467 | "root_url": "https://ghcr.io/v2/homebrew/core", 1468 | "files": { 1469 | "arm64_monterey": { 1470 | "cellar": "/opt/homebrew/Cellar", 1471 | "url": "https://ghcr.io/v2/homebrew/core/php/7.4/blobs/sha256:a4f6f022d003b031306b723f013da4669184e2590e39621fe9beda35b97801ad", 1472 | "sha256": "a4f6f022d003b031306b723f013da4669184e2590e39621fe9beda35b97801ad" 1473 | }, 1474 | "arm64_big_sur": { 1475 | "cellar": "/opt/homebrew/Cellar", 1476 | "url": "https://ghcr.io/v2/homebrew/core/php/7.4/blobs/sha256:4dafd47310bbb7d90695d3874ba6fa8d3e43d4c19ace2d64628da4b70242d539", 1477 | "sha256": "4dafd47310bbb7d90695d3874ba6fa8d3e43d4c19ace2d64628da4b70242d539" 1478 | }, 1479 | "monterey": { 1480 | "cellar": "/usr/local/Cellar", 1481 | "url": "https://ghcr.io/v2/homebrew/core/php/7.4/blobs/sha256:cd277a1e5cf7d0351dae9604970358f27f6b1c73bbb84f3aa727af1a19cfffd9", 1482 | "sha256": "cd277a1e5cf7d0351dae9604970358f27f6b1c73bbb84f3aa727af1a19cfffd9" 1483 | }, 1484 | "big_sur": { 1485 | "cellar": "/usr/local/Cellar", 1486 | "url": "https://ghcr.io/v2/homebrew/core/php/7.4/blobs/sha256:f9d18c52ecb0803db3709b014a38754210c24fe5e715b6b8f312a4f594cd5c1d", 1487 | "sha256": "f9d18c52ecb0803db3709b014a38754210c24fe5e715b6b8f312a4f594cd5c1d" 1488 | }, 1489 | "catalina": { 1490 | "cellar": "/usr/local/Cellar", 1491 | "url": "https://ghcr.io/v2/homebrew/core/php/7.4/blobs/sha256:6e00e4b70f912f10724a87db2abb75400a4f6bc6b9d32798ce11b94a3dcb526f", 1492 | "sha256": "6e00e4b70f912f10724a87db2abb75400a4f6bc6b9d32798ce11b94a3dcb526f" 1493 | }, 1494 | "x86_64_linux": { 1495 | "cellar": "/home/linuxbrew/.linuxbrew/Cellar", 1496 | "url": "https://ghcr.io/v2/homebrew/core/php/7.4/blobs/sha256:70b6e4207fd8dab0621944925f43b687ebce389c0d67376f38978c2f57f379f8", 1497 | "sha256": "70b6e4207fd8dab0621944925f43b687ebce389c0d67376f38978c2f57f379f8" 1498 | } 1499 | } 1500 | } 1501 | }, 1502 | "rabbitmq": { 1503 | "version": "3.13.1", 1504 | "bottle": { 1505 | "rebuild": 0, 1506 | "root_url": "https://ghcr.io/v2/homebrew/core", 1507 | "files": { 1508 | "all": { 1509 | "cellar": ":any_skip_relocation", 1510 | "url": "https://ghcr.io/v2/homebrew/core/rabbitmq/blobs/sha256:6169e3dd210190fe6e7b6d1ae826dd51599cce35778141855bc3c023317525be", 1511 | "sha256": "6169e3dd210190fe6e7b6d1ae826dd51599cce35778141855bc3c023317525be" 1512 | } 1513 | } 1514 | } 1515 | }, 1516 | "mysql@5.7": { 1517 | "version": "5.7.32", 1518 | "bottle": { 1519 | "rebuild": 2, 1520 | "cellar": "/usr/local/Cellar", 1521 | "prefix": "/usr/local", 1522 | "root_url": "https://homebrew.bintray.com/bottles", 1523 | "files": { 1524 | "big_sur": { 1525 | "url": "https://homebrew.bintray.com/bottles/mysql%405.7-5.7.32.big_sur.bottle.2.tar.gz", 1526 | "sha256": "d698d7de62f5d7d3eef93c04c3ac2b7ba0aa2081f31f6617972b6c88a18a95e5" 1527 | }, 1528 | "catalina": { 1529 | "url": "https://homebrew.bintray.com/bottles/mysql%405.7-5.7.32.catalina.bottle.2.tar.gz", 1530 | "sha256": "1bf3050f0ed024f54538ccf95d96a41536ab54d87e303d802f32b5c149eb8eb7" 1531 | }, 1532 | "mojave": { 1533 | "url": "https://homebrew.bintray.com/bottles/mysql%405.7-5.7.32.mojave.bottle.2.tar.gz", 1534 | "sha256": "0240b57da7513b0082d251cc314a27022842fd588092a22088cd14eec9f1cc86" 1535 | } 1536 | } 1537 | } 1538 | }, 1539 | "hugo": { 1540 | "version": "0.124.1", 1541 | "bottle": { 1542 | "rebuild": 0, 1543 | "root_url": "https://ghcr.io/v2/homebrew/core", 1544 | "files": { 1545 | "arm64_sonoma": { 1546 | "cellar": ":any_skip_relocation", 1547 | "url": "https://ghcr.io/v2/homebrew/core/hugo/blobs/sha256:622a16859693f485711b148e20517358436da479b0f0b27ff5dc15464959ffc3", 1548 | "sha256": "622a16859693f485711b148e20517358436da479b0f0b27ff5dc15464959ffc3" 1549 | }, 1550 | "arm64_ventura": { 1551 | "cellar": ":any_skip_relocation", 1552 | "url": "https://ghcr.io/v2/homebrew/core/hugo/blobs/sha256:53b008c0ba1cbdfbdea93938bd42a0f448a5ce98ee295be9155b18fca6c3c4c9", 1553 | "sha256": "53b008c0ba1cbdfbdea93938bd42a0f448a5ce98ee295be9155b18fca6c3c4c9" 1554 | }, 1555 | "arm64_monterey": { 1556 | "cellar": ":any_skip_relocation", 1557 | "url": "https://ghcr.io/v2/homebrew/core/hugo/blobs/sha256:551993e40029b6d0e92fe9d2bc8dec37815343a1365345a2ae993b7d9ddbe0c3", 1558 | "sha256": "551993e40029b6d0e92fe9d2bc8dec37815343a1365345a2ae993b7d9ddbe0c3" 1559 | }, 1560 | "sonoma": { 1561 | "cellar": ":any_skip_relocation", 1562 | "url": "https://ghcr.io/v2/homebrew/core/hugo/blobs/sha256:ee698f6a66db517cb670e69d0b033eda11cb4e063308ebd0207bb91769ae33c9", 1563 | "sha256": "ee698f6a66db517cb670e69d0b033eda11cb4e063308ebd0207bb91769ae33c9" 1564 | }, 1565 | "ventura": { 1566 | "cellar": ":any_skip_relocation", 1567 | "url": "https://ghcr.io/v2/homebrew/core/hugo/blobs/sha256:ddaf3c5b3b3ddbcff797ee36abca0a8700ac18c1562d8c1d58217875898f6df3", 1568 | "sha256": "ddaf3c5b3b3ddbcff797ee36abca0a8700ac18c1562d8c1d58217875898f6df3" 1569 | }, 1570 | "monterey": { 1571 | "cellar": ":any_skip_relocation", 1572 | "url": "https://ghcr.io/v2/homebrew/core/hugo/blobs/sha256:7038cb387d117ee5212f440e64728df8c28aa2b7b81c439e61419aa9229618a3", 1573 | "sha256": "7038cb387d117ee5212f440e64728df8c28aa2b7b81c439e61419aa9229618a3" 1574 | }, 1575 | "x86_64_linux": { 1576 | "cellar": ":any_skip_relocation", 1577 | "url": "https://ghcr.io/v2/homebrew/core/hugo/blobs/sha256:a9ed95addfc5874a54f05242e770038ad5fc7b88bec4703fac2e99d68275e03a", 1578 | "sha256": "a9ed95addfc5874a54f05242e770038ad5fc7b88bec4703fac2e99d68275e03a" 1579 | } 1580 | } 1581 | } 1582 | }, 1583 | "doctl": { 1584 | "version": "1.105.0", 1585 | "bottle": { 1586 | "rebuild": 0, 1587 | "root_url": "https://ghcr.io/v2/homebrew/core", 1588 | "files": { 1589 | "arm64_sonoma": { 1590 | "cellar": ":any_skip_relocation", 1591 | "url": "https://ghcr.io/v2/homebrew/core/doctl/blobs/sha256:2fd2fac0d675100e2911a542e0716a650f56b8420c553af6a43682eaa304cfe4", 1592 | "sha256": "2fd2fac0d675100e2911a542e0716a650f56b8420c553af6a43682eaa304cfe4" 1593 | }, 1594 | "arm64_ventura": { 1595 | "cellar": ":any_skip_relocation", 1596 | "url": "https://ghcr.io/v2/homebrew/core/doctl/blobs/sha256:00b45036584d49d2b7ead96abce485b57c29a825d8dc16dec21db49d3a1d625e", 1597 | "sha256": "00b45036584d49d2b7ead96abce485b57c29a825d8dc16dec21db49d3a1d625e" 1598 | }, 1599 | "arm64_monterey": { 1600 | "cellar": ":any_skip_relocation", 1601 | "url": "https://ghcr.io/v2/homebrew/core/doctl/blobs/sha256:712bf140213dc850cce97b593fe93c7c8c7666e1e2c0141e98a1bf8aa5e96539", 1602 | "sha256": "712bf140213dc850cce97b593fe93c7c8c7666e1e2c0141e98a1bf8aa5e96539" 1603 | }, 1604 | "sonoma": { 1605 | "cellar": ":any_skip_relocation", 1606 | "url": "https://ghcr.io/v2/homebrew/core/doctl/blobs/sha256:db27294f203c69a9da5ca4e09e65a8a39000d496c1f66e448477872130c554a8", 1607 | "sha256": "db27294f203c69a9da5ca4e09e65a8a39000d496c1f66e448477872130c554a8" 1608 | }, 1609 | "ventura": { 1610 | "cellar": ":any_skip_relocation", 1611 | "url": "https://ghcr.io/v2/homebrew/core/doctl/blobs/sha256:03e0a7826a55102b38d1cd3d9f2ca80bd8acd530fcf64190a7c41ada3b2c58ea", 1612 | "sha256": "03e0a7826a55102b38d1cd3d9f2ca80bd8acd530fcf64190a7c41ada3b2c58ea" 1613 | }, 1614 | "monterey": { 1615 | "cellar": ":any_skip_relocation", 1616 | "url": "https://ghcr.io/v2/homebrew/core/doctl/blobs/sha256:ec02c69cd6b949c6c06e06d6211d8807b723ea813a7e39eaf0241055cf823368", 1617 | "sha256": "ec02c69cd6b949c6c06e06d6211d8807b723ea813a7e39eaf0241055cf823368" 1618 | }, 1619 | "x86_64_linux": { 1620 | "cellar": ":any_skip_relocation", 1621 | "url": "https://ghcr.io/v2/homebrew/core/doctl/blobs/sha256:86d76707126ae964d0f5461405572d0f21fa41aa24ab7dc9b16130cf0666f704", 1622 | "sha256": "86d76707126ae964d0f5461405572d0f21fa41aa24ab7dc9b16130cf0666f704" 1623 | } 1624 | } 1625 | } 1626 | }, 1627 | "kns": { 1628 | "version": "7e5f78b781c6567f71068585f2b101caca99f0ef", 1629 | "bottle": false 1630 | }, 1631 | "stern": { 1632 | "version": "1.28.0", 1633 | "bottle": { 1634 | "rebuild": 0, 1635 | "root_url": "https://ghcr.io/v2/homebrew/core", 1636 | "files": { 1637 | "arm64_sonoma": { 1638 | "cellar": ":any_skip_relocation", 1639 | "url": "https://ghcr.io/v2/homebrew/core/stern/blobs/sha256:5a5619f1653a6181ccbdcc4ee5c32db8a17c972ff67747cf7f2a48b1475af8c4", 1640 | "sha256": "5a5619f1653a6181ccbdcc4ee5c32db8a17c972ff67747cf7f2a48b1475af8c4" 1641 | }, 1642 | "arm64_ventura": { 1643 | "cellar": ":any_skip_relocation", 1644 | "url": "https://ghcr.io/v2/homebrew/core/stern/blobs/sha256:61355e42bdb24d895f26690a6db217c91fa1daad1b24ae0ceb0c726cec65307f", 1645 | "sha256": "61355e42bdb24d895f26690a6db217c91fa1daad1b24ae0ceb0c726cec65307f" 1646 | }, 1647 | "arm64_monterey": { 1648 | "cellar": ":any_skip_relocation", 1649 | "url": "https://ghcr.io/v2/homebrew/core/stern/blobs/sha256:a7137a8ea403539f43a2fa17104af29292030ee927a73a2790b92077aab3e8f0", 1650 | "sha256": "a7137a8ea403539f43a2fa17104af29292030ee927a73a2790b92077aab3e8f0" 1651 | }, 1652 | "sonoma": { 1653 | "cellar": ":any_skip_relocation", 1654 | "url": "https://ghcr.io/v2/homebrew/core/stern/blobs/sha256:e3bc931627d8c8523b00793a3d4ccd87175ee2ce5ab0a930e7fc1a072f2952ed", 1655 | "sha256": "e3bc931627d8c8523b00793a3d4ccd87175ee2ce5ab0a930e7fc1a072f2952ed" 1656 | }, 1657 | "ventura": { 1658 | "cellar": ":any_skip_relocation", 1659 | "url": "https://ghcr.io/v2/homebrew/core/stern/blobs/sha256:da271ef0adb308161ffff285aaf1b48392a2c074bef6f60b3c1af0acd1a8155d", 1660 | "sha256": "da271ef0adb308161ffff285aaf1b48392a2c074bef6f60b3c1af0acd1a8155d" 1661 | }, 1662 | "monterey": { 1663 | "cellar": ":any_skip_relocation", 1664 | "url": "https://ghcr.io/v2/homebrew/core/stern/blobs/sha256:008aa981a8559b0b4bac5cf1bb11cfc373af5d175915e2a4da7ec9f7b5447323", 1665 | "sha256": "008aa981a8559b0b4bac5cf1bb11cfc373af5d175915e2a4da7ec9f7b5447323" 1666 | }, 1667 | "x86_64_linux": { 1668 | "cellar": ":any_skip_relocation", 1669 | "url": "https://ghcr.io/v2/homebrew/core/stern/blobs/sha256:9131cc6366cf57f0cd22a296e1182590ec516cecb4d8430617f2be52d7d36154", 1670 | "sha256": "9131cc6366cf57f0cd22a296e1182590ec516cecb4d8430617f2be52d7d36154" 1671 | } 1672 | } 1673 | } 1674 | }, 1675 | "helm": { 1676 | "version": "3.14.3", 1677 | "bottle": { 1678 | "rebuild": 0, 1679 | "root_url": "https://ghcr.io/v2/homebrew/core", 1680 | "files": { 1681 | "arm64_sonoma": { 1682 | "cellar": ":any_skip_relocation", 1683 | "url": "https://ghcr.io/v2/homebrew/core/helm/blobs/sha256:124b261445e83d44dd036c85963c31411e44dec3358b6c1e181cd693f3c32121", 1684 | "sha256": "124b261445e83d44dd036c85963c31411e44dec3358b6c1e181cd693f3c32121" 1685 | }, 1686 | "arm64_ventura": { 1687 | "cellar": ":any_skip_relocation", 1688 | "url": "https://ghcr.io/v2/homebrew/core/helm/blobs/sha256:7bcb4f2721ef8f80a1a3e9ea11cd087309d3a079e33322fc893bf1987922931e", 1689 | "sha256": "7bcb4f2721ef8f80a1a3e9ea11cd087309d3a079e33322fc893bf1987922931e" 1690 | }, 1691 | "arm64_monterey": { 1692 | "cellar": ":any_skip_relocation", 1693 | "url": "https://ghcr.io/v2/homebrew/core/helm/blobs/sha256:88f67fb12e9f9d1bdc49ca4b48677b1a0d281d986983a1b737cde2fcbb92e7be", 1694 | "sha256": "88f67fb12e9f9d1bdc49ca4b48677b1a0d281d986983a1b737cde2fcbb92e7be" 1695 | }, 1696 | "sonoma": { 1697 | "cellar": ":any_skip_relocation", 1698 | "url": "https://ghcr.io/v2/homebrew/core/helm/blobs/sha256:49025e7d5bbffa8268fe392068fd64d17f40523820d7eb01a1f17ceaa21abf66", 1699 | "sha256": "49025e7d5bbffa8268fe392068fd64d17f40523820d7eb01a1f17ceaa21abf66" 1700 | }, 1701 | "ventura": { 1702 | "cellar": ":any_skip_relocation", 1703 | "url": "https://ghcr.io/v2/homebrew/core/helm/blobs/sha256:d4713973512f2a2e6477be9a7042781c31fb88e5fceb58a58965dd0aa554f371", 1704 | "sha256": "d4713973512f2a2e6477be9a7042781c31fb88e5fceb58a58965dd0aa554f371" 1705 | }, 1706 | "monterey": { 1707 | "cellar": ":any_skip_relocation", 1708 | "url": "https://ghcr.io/v2/homebrew/core/helm/blobs/sha256:6be0e7b74e1789234324b0bf69b814da13fbcbc140faa6c9d14206a203509727", 1709 | "sha256": "6be0e7b74e1789234324b0bf69b814da13fbcbc140faa6c9d14206a203509727" 1710 | }, 1711 | "x86_64_linux": { 1712 | "cellar": ":any_skip_relocation", 1713 | "url": "https://ghcr.io/v2/homebrew/core/helm/blobs/sha256:2188c81963da82df4dc98d28f9cfffb9b785d298813caa9507badcc3dda15217", 1714 | "sha256": "2188c81963da82df4dc98d28f9cfffb9b785d298813caa9507badcc3dda15217" 1715 | } 1716 | } 1717 | } 1718 | }, 1719 | "mongodb-community@4.2": { 1720 | "version": "4.2.9", 1721 | "bottle": false 1722 | }, 1723 | "gh": { 1724 | "version": "2.46.0", 1725 | "bottle": { 1726 | "rebuild": 0, 1727 | "root_url": "https://ghcr.io/v2/homebrew/core", 1728 | "files": { 1729 | "arm64_sonoma": { 1730 | "cellar": ":any_skip_relocation", 1731 | "url": "https://ghcr.io/v2/homebrew/core/gh/blobs/sha256:da6339a487fa934079af693684e2c32a4e7a7d656f91a7298a751a3b429472b7", 1732 | "sha256": "da6339a487fa934079af693684e2c32a4e7a7d656f91a7298a751a3b429472b7" 1733 | }, 1734 | "arm64_ventura": { 1735 | "cellar": ":any_skip_relocation", 1736 | "url": "https://ghcr.io/v2/homebrew/core/gh/blobs/sha256:0d34b260e1d59b7a21f87095c9bd69c14132064286b54c0953c1f380ceb2d7fe", 1737 | "sha256": "0d34b260e1d59b7a21f87095c9bd69c14132064286b54c0953c1f380ceb2d7fe" 1738 | }, 1739 | "arm64_monterey": { 1740 | "cellar": ":any_skip_relocation", 1741 | "url": "https://ghcr.io/v2/homebrew/core/gh/blobs/sha256:80906c71cf3c14f415397f59133ef55cf1b2564b47cad61617b4870ca647030e", 1742 | "sha256": "80906c71cf3c14f415397f59133ef55cf1b2564b47cad61617b4870ca647030e" 1743 | }, 1744 | "sonoma": { 1745 | "cellar": ":any_skip_relocation", 1746 | "url": "https://ghcr.io/v2/homebrew/core/gh/blobs/sha256:aeabce24856f2f1534b925a87e11d1db6ade50230d39e0a7168f40d747b175d2", 1747 | "sha256": "aeabce24856f2f1534b925a87e11d1db6ade50230d39e0a7168f40d747b175d2" 1748 | }, 1749 | "ventura": { 1750 | "cellar": ":any_skip_relocation", 1751 | "url": "https://ghcr.io/v2/homebrew/core/gh/blobs/sha256:9d943a8ac3c2ddeacee150274bd32860b6e6228a7b58951037b2749c4ed6ee2e", 1752 | "sha256": "9d943a8ac3c2ddeacee150274bd32860b6e6228a7b58951037b2749c4ed6ee2e" 1753 | }, 1754 | "monterey": { 1755 | "cellar": ":any_skip_relocation", 1756 | "url": "https://ghcr.io/v2/homebrew/core/gh/blobs/sha256:720aef66253213d1b2a09ce52ac9bb002919974c90d6427f22dbef8a758c97f2", 1757 | "sha256": "720aef66253213d1b2a09ce52ac9bb002919974c90d6427f22dbef8a758c97f2" 1758 | }, 1759 | "x86_64_linux": { 1760 | "cellar": ":any_skip_relocation", 1761 | "url": "https://ghcr.io/v2/homebrew/core/gh/blobs/sha256:b23ed390b178b2bd77b2c9a8be2a3b885358a5189039d735459f858072c5d8bc", 1762 | "sha256": "b23ed390b178b2bd77b2c9a8be2a3b885358a5189039d735459f858072c5d8bc" 1763 | } 1764 | } 1765 | } 1766 | }, 1767 | "gnupg": { 1768 | "version": "2.4.5", 1769 | "bottle": { 1770 | "rebuild": 0, 1771 | "root_url": "https://ghcr.io/v2/homebrew/core", 1772 | "files": { 1773 | "arm64_sonoma": { 1774 | "cellar": "/opt/homebrew/Cellar", 1775 | "url": "https://ghcr.io/v2/homebrew/core/gnupg/blobs/sha256:06ef66459900967866adbca613753707c6836c7b32b1c1f9d7a647771db88e2a", 1776 | "sha256": "06ef66459900967866adbca613753707c6836c7b32b1c1f9d7a647771db88e2a" 1777 | }, 1778 | "arm64_ventura": { 1779 | "cellar": "/opt/homebrew/Cellar", 1780 | "url": "https://ghcr.io/v2/homebrew/core/gnupg/blobs/sha256:5640c700c6d704a612f849d00dfd00b1361cfb7664ce1e4be14b981044917aef", 1781 | "sha256": "5640c700c6d704a612f849d00dfd00b1361cfb7664ce1e4be14b981044917aef" 1782 | }, 1783 | "arm64_monterey": { 1784 | "cellar": "/opt/homebrew/Cellar", 1785 | "url": "https://ghcr.io/v2/homebrew/core/gnupg/blobs/sha256:74cdf0e0430980129545583496f6a2d908b9f8a8b0e69a4e8484f3aee4e7647d", 1786 | "sha256": "74cdf0e0430980129545583496f6a2d908b9f8a8b0e69a4e8484f3aee4e7647d" 1787 | }, 1788 | "sonoma": { 1789 | "cellar": "/usr/local/Cellar", 1790 | "url": "https://ghcr.io/v2/homebrew/core/gnupg/blobs/sha256:bd0eaa9e5cb762f3426380799089831c34fd27dc608cc3bd15a86b0b43df8ce2", 1791 | "sha256": "bd0eaa9e5cb762f3426380799089831c34fd27dc608cc3bd15a86b0b43df8ce2" 1792 | }, 1793 | "ventura": { 1794 | "cellar": "/usr/local/Cellar", 1795 | "url": "https://ghcr.io/v2/homebrew/core/gnupg/blobs/sha256:3e1ab240be58c5267dbd3bc9cd82a19b09b96507169188a20adf710886733bd3", 1796 | "sha256": "3e1ab240be58c5267dbd3bc9cd82a19b09b96507169188a20adf710886733bd3" 1797 | }, 1798 | "monterey": { 1799 | "cellar": "/usr/local/Cellar", 1800 | "url": "https://ghcr.io/v2/homebrew/core/gnupg/blobs/sha256:9ea477a517f2de40c9bf7a8a335f6f2d7c1c234a31f47596f016305d175de908", 1801 | "sha256": "9ea477a517f2de40c9bf7a8a335f6f2d7c1c234a31f47596f016305d175de908" 1802 | }, 1803 | "x86_64_linux": { 1804 | "cellar": "/home/linuxbrew/.linuxbrew/Cellar", 1805 | "url": "https://ghcr.io/v2/homebrew/core/gnupg/blobs/sha256:3d0b4817c65315ef6457feb0e6e26672fc0a91475e64499304ebf5fc5faeb39d", 1806 | "sha256": "3d0b4817c65315ef6457feb0e6e26672fc0a91475e64499304ebf5fc5faeb39d" 1807 | } 1808 | } 1809 | } 1810 | }, 1811 | "php@8.0": { 1812 | "version": "8.0.26", 1813 | "bottle": { 1814 | "rebuild": 0, 1815 | "root_url": "https://ghcr.io/v2/homebrew/core", 1816 | "files": { 1817 | "arm64_ventura": { 1818 | "cellar": "/opt/homebrew/Cellar", 1819 | "url": "https://ghcr.io/v2/homebrew/core/php/8.0/blobs/sha256:c199d7d93ecce56bc52f05c06d8c01d362bdc9989177687c8274c6f25cdf64be", 1820 | "sha256": "c199d7d93ecce56bc52f05c06d8c01d362bdc9989177687c8274c6f25cdf64be" 1821 | }, 1822 | "arm64_monterey": { 1823 | "cellar": "/opt/homebrew/Cellar", 1824 | "url": "https://ghcr.io/v2/homebrew/core/php/8.0/blobs/sha256:3211fdc214983eb1eadb57f237e9095e87c85e74ce5f9e79f1c9230148edeb8c", 1825 | "sha256": "3211fdc214983eb1eadb57f237e9095e87c85e74ce5f9e79f1c9230148edeb8c" 1826 | }, 1827 | "arm64_big_sur": { 1828 | "cellar": "/opt/homebrew/Cellar", 1829 | "url": "https://ghcr.io/v2/homebrew/core/php/8.0/blobs/sha256:0db5bc644a6ffd9451e9aca4098167e0018714a01ee89cc2db3dee6f4d6ef188", 1830 | "sha256": "0db5bc644a6ffd9451e9aca4098167e0018714a01ee89cc2db3dee6f4d6ef188" 1831 | }, 1832 | "ventura": { 1833 | "cellar": "/usr/local/Cellar", 1834 | "url": "https://ghcr.io/v2/homebrew/core/php/8.0/blobs/sha256:85457a49595add83643ccd8ef09c551578143cc80aee47d9fbc7e202947e37fe", 1835 | "sha256": "85457a49595add83643ccd8ef09c551578143cc80aee47d9fbc7e202947e37fe" 1836 | }, 1837 | "monterey": { 1838 | "cellar": "/usr/local/Cellar", 1839 | "url": "https://ghcr.io/v2/homebrew/core/php/8.0/blobs/sha256:29395f23a26f925787fcf3be98f51266f8ae4e454c7567d31779a8dab783f50a", 1840 | "sha256": "29395f23a26f925787fcf3be98f51266f8ae4e454c7567d31779a8dab783f50a" 1841 | }, 1842 | "big_sur": { 1843 | "cellar": "/usr/local/Cellar", 1844 | "url": "https://ghcr.io/v2/homebrew/core/php/8.0/blobs/sha256:768bf7dc8937c9da628a67d80fb0c47e301456e61bf9d644c214f9f0b860c0ee", 1845 | "sha256": "768bf7dc8937c9da628a67d80fb0c47e301456e61bf9d644c214f9f0b860c0ee" 1846 | }, 1847 | "catalina": { 1848 | "cellar": "/usr/local/Cellar", 1849 | "url": "https://ghcr.io/v2/homebrew/core/php/8.0/blobs/sha256:d5f058e987041d8de8489a2ebf91aa185dcc10e1ef9e69887812a5d89254e45f", 1850 | "sha256": "d5f058e987041d8de8489a2ebf91aa185dcc10e1ef9e69887812a5d89254e45f" 1851 | }, 1852 | "x86_64_linux": { 1853 | "cellar": "/home/linuxbrew/.linuxbrew/Cellar", 1854 | "url": "https://ghcr.io/v2/homebrew/core/php/8.0/blobs/sha256:7e6c2fd497afd30108d4dd62e23f1b5f60485bf03b50c67251c3c2a0c91c531c", 1855 | "sha256": "7e6c2fd497afd30108d4dd62e23f1b5f60485bf03b50c67251c3c2a0c91c531c" 1856 | } 1857 | } 1858 | } 1859 | }, 1860 | "gpg": { 1861 | "version": "2.4.5", 1862 | "bottle": { 1863 | "rebuild": 0, 1864 | "root_url": "https://ghcr.io/v2/homebrew/core", 1865 | "files": { 1866 | "arm64_sonoma": { 1867 | "cellar": "/opt/homebrew/Cellar", 1868 | "url": "https://ghcr.io/v2/homebrew/core/gnupg/blobs/sha256:06ef66459900967866adbca613753707c6836c7b32b1c1f9d7a647771db88e2a", 1869 | "sha256": "06ef66459900967866adbca613753707c6836c7b32b1c1f9d7a647771db88e2a" 1870 | }, 1871 | "arm64_ventura": { 1872 | "cellar": "/opt/homebrew/Cellar", 1873 | "url": "https://ghcr.io/v2/homebrew/core/gnupg/blobs/sha256:5640c700c6d704a612f849d00dfd00b1361cfb7664ce1e4be14b981044917aef", 1874 | "sha256": "5640c700c6d704a612f849d00dfd00b1361cfb7664ce1e4be14b981044917aef" 1875 | }, 1876 | "arm64_monterey": { 1877 | "cellar": "/opt/homebrew/Cellar", 1878 | "url": "https://ghcr.io/v2/homebrew/core/gnupg/blobs/sha256:74cdf0e0430980129545583496f6a2d908b9f8a8b0e69a4e8484f3aee4e7647d", 1879 | "sha256": "74cdf0e0430980129545583496f6a2d908b9f8a8b0e69a4e8484f3aee4e7647d" 1880 | }, 1881 | "sonoma": { 1882 | "cellar": "/usr/local/Cellar", 1883 | "url": "https://ghcr.io/v2/homebrew/core/gnupg/blobs/sha256:bd0eaa9e5cb762f3426380799089831c34fd27dc608cc3bd15a86b0b43df8ce2", 1884 | "sha256": "bd0eaa9e5cb762f3426380799089831c34fd27dc608cc3bd15a86b0b43df8ce2" 1885 | }, 1886 | "ventura": { 1887 | "cellar": "/usr/local/Cellar", 1888 | "url": "https://ghcr.io/v2/homebrew/core/gnupg/blobs/sha256:3e1ab240be58c5267dbd3bc9cd82a19b09b96507169188a20adf710886733bd3", 1889 | "sha256": "3e1ab240be58c5267dbd3bc9cd82a19b09b96507169188a20adf710886733bd3" 1890 | }, 1891 | "monterey": { 1892 | "cellar": "/usr/local/Cellar", 1893 | "url": "https://ghcr.io/v2/homebrew/core/gnupg/blobs/sha256:9ea477a517f2de40c9bf7a8a335f6f2d7c1c234a31f47596f016305d175de908", 1894 | "sha256": "9ea477a517f2de40c9bf7a8a335f6f2d7c1c234a31f47596f016305d175de908" 1895 | }, 1896 | "x86_64_linux": { 1897 | "cellar": "/home/linuxbrew/.linuxbrew/Cellar", 1898 | "url": "https://ghcr.io/v2/homebrew/core/gnupg/blobs/sha256:3d0b4817c65315ef6457feb0e6e26672fc0a91475e64499304ebf5fc5faeb39d", 1899 | "sha256": "3d0b4817c65315ef6457feb0e6e26672fc0a91475e64499304ebf5fc5faeb39d" 1900 | } 1901 | } 1902 | } 1903 | }, 1904 | "mysql": { 1905 | "version": "8.3.0_1", 1906 | "bottle": { 1907 | "rebuild": 0, 1908 | "root_url": "https://ghcr.io/v2/homebrew/core", 1909 | "files": { 1910 | "arm64_sonoma": { 1911 | "cellar": "/opt/homebrew/Cellar", 1912 | "url": "https://ghcr.io/v2/homebrew/core/mysql/blobs/sha256:33919f057802485d77e2eaa66618d837d73e54a7b1c1953a2709d4e08358c46a", 1913 | "sha256": "33919f057802485d77e2eaa66618d837d73e54a7b1c1953a2709d4e08358c46a" 1914 | }, 1915 | "arm64_ventura": { 1916 | "cellar": "/opt/homebrew/Cellar", 1917 | "url": "https://ghcr.io/v2/homebrew/core/mysql/blobs/sha256:325df850a10bcba335ad37ba964f037782cf6b502bb16693d3593b0b954f289f", 1918 | "sha256": "325df850a10bcba335ad37ba964f037782cf6b502bb16693d3593b0b954f289f" 1919 | }, 1920 | "arm64_monterey": { 1921 | "cellar": "/opt/homebrew/Cellar", 1922 | "url": "https://ghcr.io/v2/homebrew/core/mysql/blobs/sha256:2d1c67c9fd7819a680719017793dbc855b5594ce64341e4243e773a350f47e14", 1923 | "sha256": "2d1c67c9fd7819a680719017793dbc855b5594ce64341e4243e773a350f47e14" 1924 | }, 1925 | "sonoma": { 1926 | "cellar": "/usr/local/Cellar", 1927 | "url": "https://ghcr.io/v2/homebrew/core/mysql/blobs/sha256:1fdc5b8989a5f8e8a1543792c8bd5a20ca6bf477280b1d31774af033600d2e3b", 1928 | "sha256": "1fdc5b8989a5f8e8a1543792c8bd5a20ca6bf477280b1d31774af033600d2e3b" 1929 | }, 1930 | "ventura": { 1931 | "cellar": "/usr/local/Cellar", 1932 | "url": "https://ghcr.io/v2/homebrew/core/mysql/blobs/sha256:ca686ca38112b46a348d014397a8a279a9a8a4cc3812dc8096b1c6fb72997aa8", 1933 | "sha256": "ca686ca38112b46a348d014397a8a279a9a8a4cc3812dc8096b1c6fb72997aa8" 1934 | }, 1935 | "monterey": { 1936 | "cellar": "/usr/local/Cellar", 1937 | "url": "https://ghcr.io/v2/homebrew/core/mysql/blobs/sha256:b0f19a04b4a11e8c14e8d6ad387ffe63af7a2e291a739872b455c1604845582d", 1938 | "sha256": "b0f19a04b4a11e8c14e8d6ad387ffe63af7a2e291a739872b455c1604845582d" 1939 | }, 1940 | "x86_64_linux": { 1941 | "cellar": "/home/linuxbrew/.linuxbrew/Cellar", 1942 | "url": "https://ghcr.io/v2/homebrew/core/mysql/blobs/sha256:66c4a58b3f7f376bdcdec40dd747ccb544cac7e167cd359392cb3877df36bafe", 1943 | "sha256": "66c4a58b3f7f376bdcdec40dd747ccb544cac7e167cd359392cb3877df36bafe" 1944 | } 1945 | } 1946 | } 1947 | }, 1948 | "pinentry-mac": { 1949 | "version": "1.1.1.1", 1950 | "bottle": { 1951 | "rebuild": 0, 1952 | "root_url": "https://ghcr.io/v2/homebrew/core", 1953 | "files": { 1954 | "arm64_sonoma": { 1955 | "cellar": ":any", 1956 | "url": "https://ghcr.io/v2/homebrew/core/pinentry-mac/blobs/sha256:3eea1993513dc5fa1c7aa1788ad3361bf12377df4f6eaed3ff7ee8b886b91feb", 1957 | "sha256": "3eea1993513dc5fa1c7aa1788ad3361bf12377df4f6eaed3ff7ee8b886b91feb" 1958 | }, 1959 | "arm64_ventura": { 1960 | "cellar": ":any", 1961 | "url": "https://ghcr.io/v2/homebrew/core/pinentry-mac/blobs/sha256:d074ebc5a9f85840c133efb2a023188d624f8f67b4111a32af645fcfbb4cef3c", 1962 | "sha256": "d074ebc5a9f85840c133efb2a023188d624f8f67b4111a32af645fcfbb4cef3c" 1963 | }, 1964 | "arm64_monterey": { 1965 | "cellar": ":any", 1966 | "url": "https://ghcr.io/v2/homebrew/core/pinentry-mac/blobs/sha256:7ebbe0d43dcdf88c28e7df80ddb21ca669968107beaf7dd224efc461cc25474b", 1967 | "sha256": "7ebbe0d43dcdf88c28e7df80ddb21ca669968107beaf7dd224efc461cc25474b" 1968 | }, 1969 | "arm64_big_sur": { 1970 | "cellar": ":any", 1971 | "url": "https://ghcr.io/v2/homebrew/core/pinentry-mac/blobs/sha256:64958e3763e548e154a485382fdab8525e7df237c9198ce5b60e4966ba91fc41", 1972 | "sha256": "64958e3763e548e154a485382fdab8525e7df237c9198ce5b60e4966ba91fc41" 1973 | }, 1974 | "sonoma": { 1975 | "cellar": ":any", 1976 | "url": "https://ghcr.io/v2/homebrew/core/pinentry-mac/blobs/sha256:14dcc4de65fea981887b24ce086abe2ff8ab6d7f78e9a95ea57f25351ee98a6e", 1977 | "sha256": "14dcc4de65fea981887b24ce086abe2ff8ab6d7f78e9a95ea57f25351ee98a6e" 1978 | }, 1979 | "ventura": { 1980 | "cellar": ":any", 1981 | "url": "https://ghcr.io/v2/homebrew/core/pinentry-mac/blobs/sha256:b6bfaa395a1f59e0be3d481ac10cd33a287d68de10db2f87d014902d510a3718", 1982 | "sha256": "b6bfaa395a1f59e0be3d481ac10cd33a287d68de10db2f87d014902d510a3718" 1983 | }, 1984 | "monterey": { 1985 | "cellar": ":any", 1986 | "url": "https://ghcr.io/v2/homebrew/core/pinentry-mac/blobs/sha256:3951ca662de62018c9a82921a29f9a06989f0efe25f68c84107c12f3a485be88", 1987 | "sha256": "3951ca662de62018c9a82921a29f9a06989f0efe25f68c84107c12f3a485be88" 1988 | }, 1989 | "big_sur": { 1990 | "cellar": ":any", 1991 | "url": "https://ghcr.io/v2/homebrew/core/pinentry-mac/blobs/sha256:44b9e026ae382505ac98e01aca3d97727deff1dc57e7a15e6aae08371142439c", 1992 | "sha256": "44b9e026ae382505ac98e01aca3d97727deff1dc57e7a15e6aae08371142439c" 1993 | }, 1994 | "catalina": { 1995 | "cellar": ":any", 1996 | "url": "https://ghcr.io/v2/homebrew/core/pinentry-mac/blobs/sha256:2957715c9a914da6774f4f28523962aa512eb89858aae57a35bc299d2458932c", 1997 | "sha256": "2957715c9a914da6774f4f28523962aa512eb89858aae57a35bc299d2458932c" 1998 | }, 1999 | "mojave": { 2000 | "cellar": ":any", 2001 | "url": "https://ghcr.io/v2/homebrew/core/pinentry-mac/blobs/sha256:e7a94a9c022f0996b24ff4da4b9e5cee34cf681a8571320b0f49e129d6fde8e0", 2002 | "sha256": "e7a94a9c022f0996b24ff4da4b9e5cee34cf681a8571320b0f49e129d6fde8e0" 2003 | } 2004 | } 2005 | } 2006 | }, 2007 | "nvm": { 2008 | "version": "0.39.7", 2009 | "bottle": { 2010 | "rebuild": 0, 2011 | "root_url": "https://ghcr.io/v2/homebrew/core", 2012 | "files": { 2013 | "all": { 2014 | "cellar": ":any_skip_relocation", 2015 | "url": "https://ghcr.io/v2/homebrew/core/nvm/blobs/sha256:fafb27126e5f79d1b2cd4f92a47a1ef186b020be0217fd8cc79d5d12d4e64d49", 2016 | "sha256": "fafb27126e5f79d1b2cd4f92a47a1ef186b020be0217fd8cc79d5d12d4e64d49" 2017 | } 2018 | } 2019 | } 2020 | }, 2021 | "pure": { 2022 | "version": "1.23.0", 2023 | "bottle": { 2024 | "rebuild": 0, 2025 | "root_url": "https://ghcr.io/v2/homebrew/core", 2026 | "files": { 2027 | "all": { 2028 | "cellar": ":any_skip_relocation", 2029 | "url": "https://ghcr.io/v2/homebrew/core/pure/blobs/sha256:28aed9b8a2ba35c28ebce54940385451c28af560e0eb22181edd0b56dfd78dc7", 2030 | "sha256": "28aed9b8a2ba35c28ebce54940385451c28af560e0eb22181edd0b56dfd78dc7" 2031 | } 2032 | } 2033 | } 2034 | }, 2035 | "rust": { 2036 | "version": "1.56.1", 2037 | "bottle": { 2038 | "rebuild": 0, 2039 | "root_url": "https://ghcr.io/v2/homebrew/core", 2040 | "files": { 2041 | "arm64_monterey": { 2042 | "cellar": ":any", 2043 | "url": "https://ghcr.io/v2/homebrew/core/rust/blobs/sha256:58189da7cb381f3ca4600ac6ce22280faa913befe1c4772b2cb546310b8cf6ee", 2044 | "sha256": "58189da7cb381f3ca4600ac6ce22280faa913befe1c4772b2cb546310b8cf6ee" 2045 | }, 2046 | "arm64_big_sur": { 2047 | "cellar": ":any", 2048 | "url": "https://ghcr.io/v2/homebrew/core/rust/blobs/sha256:4ef461b5e0ce1ef9f83308fca7a5da406bdeccee7c8fa19fb9277ebcd75efafb", 2049 | "sha256": "4ef461b5e0ce1ef9f83308fca7a5da406bdeccee7c8fa19fb9277ebcd75efafb" 2050 | }, 2051 | "monterey": { 2052 | "cellar": ":any", 2053 | "url": "https://ghcr.io/v2/homebrew/core/rust/blobs/sha256:18fbf3c9385b2f36384fa14643c723f73fbfa49aeac5fc2cc420dd7ccb712561", 2054 | "sha256": "18fbf3c9385b2f36384fa14643c723f73fbfa49aeac5fc2cc420dd7ccb712561" 2055 | }, 2056 | "big_sur": { 2057 | "cellar": ":any", 2058 | "url": "https://ghcr.io/v2/homebrew/core/rust/blobs/sha256:20624f172ed0275e7360facdd5fe0267317d4edfa0fc099264673648ab5cdee6", 2059 | "sha256": "20624f172ed0275e7360facdd5fe0267317d4edfa0fc099264673648ab5cdee6" 2060 | }, 2061 | "catalina": { 2062 | "cellar": ":any", 2063 | "url": "https://ghcr.io/v2/homebrew/core/rust/blobs/sha256:7eb748e8f01e64656b23083f20a2887a344a200d28e1cbec6d95407b321f160f", 2064 | "sha256": "7eb748e8f01e64656b23083f20a2887a344a200d28e1cbec6d95407b321f160f" 2065 | }, 2066 | "x86_64_linux": { 2067 | "cellar": ":any_skip_relocation", 2068 | "url": "https://ghcr.io/v2/homebrew/core/rust/blobs/sha256:cba480896934378891fdb66d4749470b515c99d773b816be690e7b46d8f3d6bb", 2069 | "sha256": "cba480896934378891fdb66d4749470b515c99d773b816be690e7b46d8f3d6bb" 2070 | } 2071 | } 2072 | } 2073 | }, 2074 | "solana": { 2075 | "version": "1.8.0", 2076 | "bottle": { 2077 | "rebuild": 0, 2078 | "root_url": "https://ghcr.io/v2/homebrew/core", 2079 | "files": { 2080 | "arm64_monterey": { 2081 | "cellar": ":any_skip_relocation", 2082 | "url": "https://ghcr.io/v2/homebrew/core/solana/blobs/sha256:212cbf69c58d483249719ded3814b6c23ede1cf5615df20b7f014d63aad56ce0", 2083 | "sha256": "212cbf69c58d483249719ded3814b6c23ede1cf5615df20b7f014d63aad56ce0" 2084 | }, 2085 | "arm64_big_sur": { 2086 | "cellar": ":any_skip_relocation", 2087 | "url": "https://ghcr.io/v2/homebrew/core/solana/blobs/sha256:266d90cad35a84c5a5bbab6acb869b1a8a114993868fd854665dbe3712261463", 2088 | "sha256": "266d90cad35a84c5a5bbab6acb869b1a8a114993868fd854665dbe3712261463" 2089 | }, 2090 | "monterey": { 2091 | "cellar": ":any_skip_relocation", 2092 | "url": "https://ghcr.io/v2/homebrew/core/solana/blobs/sha256:61cbe746175e14b950b66b4ca051e46768717897c16995998f1990c05ca64203", 2093 | "sha256": "61cbe746175e14b950b66b4ca051e46768717897c16995998f1990c05ca64203" 2094 | }, 2095 | "big_sur": { 2096 | "cellar": ":any_skip_relocation", 2097 | "url": "https://ghcr.io/v2/homebrew/core/solana/blobs/sha256:111ee3902e5cbbccedfe655e926f48a2b67a1dd54d61ea0fade8ce61c77412e9", 2098 | "sha256": "111ee3902e5cbbccedfe655e926f48a2b67a1dd54d61ea0fade8ce61c77412e9" 2099 | }, 2100 | "catalina": { 2101 | "cellar": ":any_skip_relocation", 2102 | "url": "https://ghcr.io/v2/homebrew/core/solana/blobs/sha256:0bd8991781f51e9c615954b6a16f75ef0ea3f331b330acc44f9a8921dd68f7f1", 2103 | "sha256": "0bd8991781f51e9c615954b6a16f75ef0ea3f331b330acc44f9a8921dd68f7f1" 2104 | }, 2105 | "mojave": { 2106 | "cellar": ":any_skip_relocation", 2107 | "url": "https://ghcr.io/v2/homebrew/core/solana/blobs/sha256:b472efbaeaf50c046e4bc9dad505b9914feac2c5185654eabe783e72cf5bdd0f", 2108 | "sha256": "b472efbaeaf50c046e4bc9dad505b9914feac2c5185654eabe783e72cf5bdd0f" 2109 | }, 2110 | "x86_64_linux": { 2111 | "cellar": ":any_skip_relocation", 2112 | "url": "https://ghcr.io/v2/homebrew/core/solana/blobs/sha256:a81ba141e190b00be7519fab1924a2f15e104369e3be6166f946781068093052", 2113 | "sha256": "a81ba141e190b00be7519fab1924a2f15e104369e3be6166f946781068093052" 2114 | } 2115 | } 2116 | } 2117 | }, 2118 | "rustup-init": { 2119 | "version": "1.24.3", 2120 | "bottle": { 2121 | "rebuild": 0, 2122 | "root_url": "https://ghcr.io/v2/homebrew/core", 2123 | "files": { 2124 | "arm64_monterey": { 2125 | "cellar": ":any_skip_relocation", 2126 | "url": "https://ghcr.io/v2/homebrew/core/rustup-init/blobs/sha256:f3e0c708bf0bc403fb5591b9f6991d709c68800ee230793cd587286c76c3711a", 2127 | "sha256": "f3e0c708bf0bc403fb5591b9f6991d709c68800ee230793cd587286c76c3711a" 2128 | }, 2129 | "arm64_big_sur": { 2130 | "cellar": ":any_skip_relocation", 2131 | "url": "https://ghcr.io/v2/homebrew/core/rustup-init/blobs/sha256:d7de5aa4538303b308d1f136c475fdc83f8fa3b418da46a66cf8146a6f0d6ff2", 2132 | "sha256": "d7de5aa4538303b308d1f136c475fdc83f8fa3b418da46a66cf8146a6f0d6ff2" 2133 | }, 2134 | "monterey": { 2135 | "cellar": ":any_skip_relocation", 2136 | "url": "https://ghcr.io/v2/homebrew/core/rustup-init/blobs/sha256:588a4b849136c5a63094e24c348af1bc4c1d13f2a36d6b6e4d7287d49ed87385", 2137 | "sha256": "588a4b849136c5a63094e24c348af1bc4c1d13f2a36d6b6e4d7287d49ed87385" 2138 | }, 2139 | "big_sur": { 2140 | "cellar": ":any_skip_relocation", 2141 | "url": "https://ghcr.io/v2/homebrew/core/rustup-init/blobs/sha256:d2bae6f97776cee5d796444ceb7c54f46e9dd56e51f9a1f439bbe7c842015572", 2142 | "sha256": "d2bae6f97776cee5d796444ceb7c54f46e9dd56e51f9a1f439bbe7c842015572" 2143 | }, 2144 | "catalina": { 2145 | "cellar": ":any_skip_relocation", 2146 | "url": "https://ghcr.io/v2/homebrew/core/rustup-init/blobs/sha256:7807b533709be5c92d7db4bd4189ae81ecf9f881544673591c7acb340d081b68", 2147 | "sha256": "7807b533709be5c92d7db4bd4189ae81ecf9f881544673591c7acb340d081b68" 2148 | }, 2149 | "mojave": { 2150 | "cellar": ":any_skip_relocation", 2151 | "url": "https://ghcr.io/v2/homebrew/core/rustup-init/blobs/sha256:681169de63d0e8a0dddbbe88388a64c4c15963e9c5b0dbf4029e1f2e75778667", 2152 | "sha256": "681169de63d0e8a0dddbbe88388a64c4c15963e9c5b0dbf4029e1f2e75778667" 2153 | }, 2154 | "x86_64_linux": { 2155 | "cellar": ":any_skip_relocation", 2156 | "url": "https://ghcr.io/v2/homebrew/core/rustup-init/blobs/sha256:5057bb4cf8c5c4e314358aad6790c1df9917a096baa010cf9f1de1eeb940f6ef", 2157 | "sha256": "5057bb4cf8c5c4e314358aad6790c1df9917a096baa010cf9f1de1eeb940f6ef" 2158 | } 2159 | } 2160 | } 2161 | }, 2162 | "gifski": { 2163 | "version": "1.31.1_1", 2164 | "bottle": { 2165 | "rebuild": 0, 2166 | "root_url": "https://ghcr.io/v2/homebrew/core", 2167 | "files": { 2168 | "arm64_sonoma": { 2169 | "cellar": ":any", 2170 | "url": "https://ghcr.io/v2/homebrew/core/gifski/blobs/sha256:4cd9f0178e0bf227c0e702c48fe108790922ffec6d87c40cb59add10f3e8aa2f", 2171 | "sha256": "4cd9f0178e0bf227c0e702c48fe108790922ffec6d87c40cb59add10f3e8aa2f" 2172 | }, 2173 | "arm64_ventura": { 2174 | "cellar": ":any", 2175 | "url": "https://ghcr.io/v2/homebrew/core/gifski/blobs/sha256:bad32d338e851e3c2bd459b3c26b0e31fb7830d76211f0accdda70449547c2f7", 2176 | "sha256": "bad32d338e851e3c2bd459b3c26b0e31fb7830d76211f0accdda70449547c2f7" 2177 | }, 2178 | "arm64_monterey": { 2179 | "cellar": ":any", 2180 | "url": "https://ghcr.io/v2/homebrew/core/gifski/blobs/sha256:051d96c3a000fa79be32741cbb194bd89ad08424fcd2dabf66598f33e782e2db", 2181 | "sha256": "051d96c3a000fa79be32741cbb194bd89ad08424fcd2dabf66598f33e782e2db" 2182 | }, 2183 | "sonoma": { 2184 | "cellar": ":any", 2185 | "url": "https://ghcr.io/v2/homebrew/core/gifski/blobs/sha256:324ecf6366f9046fee2befad79d2a3bde580c1e342a52b8e2b367a561c4d35ba", 2186 | "sha256": "324ecf6366f9046fee2befad79d2a3bde580c1e342a52b8e2b367a561c4d35ba" 2187 | }, 2188 | "ventura": { 2189 | "cellar": ":any", 2190 | "url": "https://ghcr.io/v2/homebrew/core/gifski/blobs/sha256:ae41654b042eb827c70227142dae889cf6d9e6773cb79f89331e9c21206a1b97", 2191 | "sha256": "ae41654b042eb827c70227142dae889cf6d9e6773cb79f89331e9c21206a1b97" 2192 | }, 2193 | "monterey": { 2194 | "cellar": ":any", 2195 | "url": "https://ghcr.io/v2/homebrew/core/gifski/blobs/sha256:5a8cc680c54eeaaddf0fb0526df1ab5a2deacf8a9c9f223dabbefeed2ce80ae3", 2196 | "sha256": "5a8cc680c54eeaaddf0fb0526df1ab5a2deacf8a9c9f223dabbefeed2ce80ae3" 2197 | }, 2198 | "x86_64_linux": { 2199 | "cellar": ":any_skip_relocation", 2200 | "url": "https://ghcr.io/v2/homebrew/core/gifski/blobs/sha256:cc43456bf605740c39789127a737a9509e6a2629dca26c5ee6b73f3f4924705e", 2201 | "sha256": "cc43456bf605740c39789127a737a9509e6a2629dca26c5ee6b73f3f4924705e" 2202 | } 2203 | } 2204 | } 2205 | }, 2206 | "jq": { 2207 | "version": "1.7.1", 2208 | "bottle": { 2209 | "rebuild": 0, 2210 | "root_url": "https://ghcr.io/v2/homebrew/core", 2211 | "files": { 2212 | "arm64_sonoma": { 2213 | "cellar": ":any", 2214 | "url": "https://ghcr.io/v2/homebrew/core/jq/blobs/sha256:07bc9081c0fdb43aca089e5839f6a270fc45ca9aa7d7633e16fac0fdfe4c4ad8", 2215 | "sha256": "07bc9081c0fdb43aca089e5839f6a270fc45ca9aa7d7633e16fac0fdfe4c4ad8" 2216 | }, 2217 | "arm64_ventura": { 2218 | "cellar": ":any", 2219 | "url": "https://ghcr.io/v2/homebrew/core/jq/blobs/sha256:1b27f5277eb2cdfac9f3970ee9adadddc5e04e45469de05a663bc16e793b4eea", 2220 | "sha256": "1b27f5277eb2cdfac9f3970ee9adadddc5e04e45469de05a663bc16e793b4eea" 2221 | }, 2222 | "arm64_monterey": { 2223 | "cellar": ":any", 2224 | "url": "https://ghcr.io/v2/homebrew/core/jq/blobs/sha256:41911a73dc6a44c9788c198abc18307213d070d7ca6375e8dd6994335aaee136", 2225 | "sha256": "41911a73dc6a44c9788c198abc18307213d070d7ca6375e8dd6994335aaee136" 2226 | }, 2227 | "sonoma": { 2228 | "cellar": ":any", 2229 | "url": "https://ghcr.io/v2/homebrew/core/jq/blobs/sha256:b68d33a5e3c79a0f457d96de1ad1f200c05314f5fea9244d712847c92032b5f7", 2230 | "sha256": "b68d33a5e3c79a0f457d96de1ad1f200c05314f5fea9244d712847c92032b5f7" 2231 | }, 2232 | "ventura": { 2233 | "cellar": ":any", 2234 | "url": "https://ghcr.io/v2/homebrew/core/jq/blobs/sha256:10b845b1505892ff585b49e89fe3b09761d148b2c14ca6f5a1aa58002452f8f0", 2235 | "sha256": "10b845b1505892ff585b49e89fe3b09761d148b2c14ca6f5a1aa58002452f8f0" 2236 | }, 2237 | "monterey": { 2238 | "cellar": ":any", 2239 | "url": "https://ghcr.io/v2/homebrew/core/jq/blobs/sha256:449c76665ac72b34daeb1a09dd19217e3be1e723c63ec3ac88e02b8c9a750f34", 2240 | "sha256": "449c76665ac72b34daeb1a09dd19217e3be1e723c63ec3ac88e02b8c9a750f34" 2241 | }, 2242 | "x86_64_linux": { 2243 | "cellar": ":any_skip_relocation", 2244 | "url": "https://ghcr.io/v2/homebrew/core/jq/blobs/sha256:ed490b627b327b3458a70a78c546be07d57bfc6958921f875b76e85f6be51f47", 2245 | "sha256": "ed490b627b327b3458a70a78c546be07d57bfc6958921f875b76e85f6be51f47" 2246 | } 2247 | } 2248 | } 2249 | }, 2250 | "php@8.1": { 2251 | "version": "8.1.27_1", 2252 | "bottle": { 2253 | "rebuild": 1, 2254 | "root_url": "https://ghcr.io/v2/homebrew/core", 2255 | "files": { 2256 | "arm64_sonoma": { 2257 | "cellar": "/opt/homebrew/Cellar", 2258 | "url": "https://ghcr.io/v2/homebrew/core/php/8.1/blobs/sha256:1fdb8b4f568e8e16203281feb1bd7a71ce0c3f483c21e906c1d542eb750bf010", 2259 | "sha256": "1fdb8b4f568e8e16203281feb1bd7a71ce0c3f483c21e906c1d542eb750bf010" 2260 | }, 2261 | "arm64_ventura": { 2262 | "cellar": "/opt/homebrew/Cellar", 2263 | "url": "https://ghcr.io/v2/homebrew/core/php/8.1/blobs/sha256:a14ec91bd78be4b4e0eceac89d9b7a34e506e94c81adbba588f812daa2aac71a", 2264 | "sha256": "a14ec91bd78be4b4e0eceac89d9b7a34e506e94c81adbba588f812daa2aac71a" 2265 | }, 2266 | "arm64_monterey": { 2267 | "cellar": "/opt/homebrew/Cellar", 2268 | "url": "https://ghcr.io/v2/homebrew/core/php/8.1/blobs/sha256:6c38119339300fad83558f1ec3d8c809a76ad25057c58663854007783a2a73d6", 2269 | "sha256": "6c38119339300fad83558f1ec3d8c809a76ad25057c58663854007783a2a73d6" 2270 | }, 2271 | "sonoma": { 2272 | "cellar": "/usr/local/Cellar", 2273 | "url": "https://ghcr.io/v2/homebrew/core/php/8.1/blobs/sha256:6ad22a97abbfd1fbe1006fefc93b5d824695318b538583a1ab058bff272c3919", 2274 | "sha256": "6ad22a97abbfd1fbe1006fefc93b5d824695318b538583a1ab058bff272c3919" 2275 | }, 2276 | "ventura": { 2277 | "cellar": "/usr/local/Cellar", 2278 | "url": "https://ghcr.io/v2/homebrew/core/php/8.1/blobs/sha256:db36c289bb724bc44f255730d1dd5a1a3653ad9c6070eae7525d49879d6752c7", 2279 | "sha256": "db36c289bb724bc44f255730d1dd5a1a3653ad9c6070eae7525d49879d6752c7" 2280 | }, 2281 | "monterey": { 2282 | "cellar": "/usr/local/Cellar", 2283 | "url": "https://ghcr.io/v2/homebrew/core/php/8.1/blobs/sha256:85265d5675507809353c7902f17dd13e2a3bbddc5326a9f2ddd28456959cf6ba", 2284 | "sha256": "85265d5675507809353c7902f17dd13e2a3bbddc5326a9f2ddd28456959cf6ba" 2285 | }, 2286 | "x86_64_linux": { 2287 | "cellar": "/home/linuxbrew/.linuxbrew/Cellar", 2288 | "url": "https://ghcr.io/v2/homebrew/core/php/8.1/blobs/sha256:ab6acb8bcf4928c42770cf421e23a289bc0ba0bd01490a003ccc3d16c6d63c80", 2289 | "sha256": "ab6acb8bcf4928c42770cf421e23a289bc0ba0bd01490a003ccc3d16c6d63c80" 2290 | } 2291 | } 2292 | } 2293 | }, 2294 | "openssl@3": { 2295 | "version": "3.2.1", 2296 | "bottle": { 2297 | "rebuild": 1, 2298 | "root_url": "https://ghcr.io/v2/homebrew/core", 2299 | "files": { 2300 | "arm64_sonoma": { 2301 | "cellar": "/opt/homebrew/Cellar", 2302 | "url": "https://ghcr.io/v2/homebrew/core/openssl/3/blobs/sha256:fce7bf159988bf2b0960fa3d33ea810688d422c433b6461c7020cd0c937827a6", 2303 | "sha256": "fce7bf159988bf2b0960fa3d33ea810688d422c433b6461c7020cd0c937827a6" 2304 | }, 2305 | "arm64_ventura": { 2306 | "cellar": "/opt/homebrew/Cellar", 2307 | "url": "https://ghcr.io/v2/homebrew/core/openssl/3/blobs/sha256:020785e015f7b8ef638abc5835890bf3f0273c1eecba54b2f749e82cab0ddeec", 2308 | "sha256": "020785e015f7b8ef638abc5835890bf3f0273c1eecba54b2f749e82cab0ddeec" 2309 | }, 2310 | "arm64_monterey": { 2311 | "cellar": "/opt/homebrew/Cellar", 2312 | "url": "https://ghcr.io/v2/homebrew/core/openssl/3/blobs/sha256:a99828f7bf992193ab24f93eb85da1d89901d2f7ba32acb6fff9506d9b030897", 2313 | "sha256": "a99828f7bf992193ab24f93eb85da1d89901d2f7ba32acb6fff9506d9b030897" 2314 | }, 2315 | "sonoma": { 2316 | "cellar": "/usr/local/Cellar", 2317 | "url": "https://ghcr.io/v2/homebrew/core/openssl/3/blobs/sha256:ef8211c5115fc85f01261037f8fea76cc432b92b4fb23bc87bbf41e9198fcc0f", 2318 | "sha256": "ef8211c5115fc85f01261037f8fea76cc432b92b4fb23bc87bbf41e9198fcc0f" 2319 | }, 2320 | "ventura": { 2321 | "cellar": "/usr/local/Cellar", 2322 | "url": "https://ghcr.io/v2/homebrew/core/openssl/3/blobs/sha256:f3cd46e866f40f134ee02ca264456e69730c721f577af6bd6927fdb90f2807e0", 2323 | "sha256": "f3cd46e866f40f134ee02ca264456e69730c721f577af6bd6927fdb90f2807e0" 2324 | }, 2325 | "monterey": { 2326 | "cellar": "/usr/local/Cellar", 2327 | "url": "https://ghcr.io/v2/homebrew/core/openssl/3/blobs/sha256:6f7645cf9afb08c84f129bf39de4974c857bfff8941587cbb08ee20b9feed8d8", 2328 | "sha256": "6f7645cf9afb08c84f129bf39de4974c857bfff8941587cbb08ee20b9feed8d8" 2329 | }, 2330 | "x86_64_linux": { 2331 | "cellar": "/home/linuxbrew/.linuxbrew/Cellar", 2332 | "url": "https://ghcr.io/v2/homebrew/core/openssl/3/blobs/sha256:0e4d59371d274c67e9f09ce81542e2856c7496e5d1bf70d7fed707bfbdfa04c0", 2333 | "sha256": "0e4d59371d274c67e9f09ce81542e2856c7496e5d1bf70d7fed707bfbdfa04c0" 2334 | } 2335 | } 2336 | } 2337 | }, 2338 | "pnpm": { 2339 | "version": "8.15.6", 2340 | "bottle": { 2341 | "rebuild": 0, 2342 | "root_url": "https://ghcr.io/v2/homebrew/core", 2343 | "files": { 2344 | "arm64_sonoma": { 2345 | "cellar": ":any", 2346 | "url": "https://ghcr.io/v2/homebrew/core/pnpm/blobs/sha256:2de2aa0effdfaac69c4be6ff788dca18f17a4a0d66e62c4c1ae0de6bfb658494", 2347 | "sha256": "2de2aa0effdfaac69c4be6ff788dca18f17a4a0d66e62c4c1ae0de6bfb658494" 2348 | }, 2349 | "arm64_ventura": { 2350 | "cellar": ":any", 2351 | "url": "https://ghcr.io/v2/homebrew/core/pnpm/blobs/sha256:2de2aa0effdfaac69c4be6ff788dca18f17a4a0d66e62c4c1ae0de6bfb658494", 2352 | "sha256": "2de2aa0effdfaac69c4be6ff788dca18f17a4a0d66e62c4c1ae0de6bfb658494" 2353 | }, 2354 | "arm64_monterey": { 2355 | "cellar": ":any", 2356 | "url": "https://ghcr.io/v2/homebrew/core/pnpm/blobs/sha256:2de2aa0effdfaac69c4be6ff788dca18f17a4a0d66e62c4c1ae0de6bfb658494", 2357 | "sha256": "2de2aa0effdfaac69c4be6ff788dca18f17a4a0d66e62c4c1ae0de6bfb658494" 2358 | }, 2359 | "sonoma": { 2360 | "cellar": ":any", 2361 | "url": "https://ghcr.io/v2/homebrew/core/pnpm/blobs/sha256:2b17c0499f9226d8a82c3217562e395e6fd93b99644ad479780def5c50eff4a9", 2362 | "sha256": "2b17c0499f9226d8a82c3217562e395e6fd93b99644ad479780def5c50eff4a9" 2363 | }, 2364 | "ventura": { 2365 | "cellar": ":any", 2366 | "url": "https://ghcr.io/v2/homebrew/core/pnpm/blobs/sha256:2b17c0499f9226d8a82c3217562e395e6fd93b99644ad479780def5c50eff4a9", 2367 | "sha256": "2b17c0499f9226d8a82c3217562e395e6fd93b99644ad479780def5c50eff4a9" 2368 | }, 2369 | "monterey": { 2370 | "cellar": ":any", 2371 | "url": "https://ghcr.io/v2/homebrew/core/pnpm/blobs/sha256:2b17c0499f9226d8a82c3217562e395e6fd93b99644ad479780def5c50eff4a9", 2372 | "sha256": "2b17c0499f9226d8a82c3217562e395e6fd93b99644ad479780def5c50eff4a9" 2373 | }, 2374 | "x86_64_linux": { 2375 | "cellar": ":any_skip_relocation", 2376 | "url": "https://ghcr.io/v2/homebrew/core/pnpm/blobs/sha256:5c096d69e09fd440ad819c83473e563ca41189151330655984bf2a09e989bc9a", 2377 | "sha256": "5c096d69e09fd440ad819c83473e563ca41189151330655984bf2a09e989bc9a" 2378 | } 2379 | } 2380 | } 2381 | }, 2382 | "shivammathur/php/php@8.0": { 2383 | "version": "8.0.30_2", 2384 | "bottle": { 2385 | "rebuild": 0, 2386 | "root_url": "https://ghcr.io/v2/shivammathur/php", 2387 | "files": { 2388 | "arm64_sonoma": { 2389 | "cellar": "/opt/homebrew/Cellar", 2390 | "url": "https://ghcr.io/v2/shivammathur/php/php/8.0/blobs/sha256:4f042144c1cdc0f70939c59b6c44eb162ecafc69a9c2e0f83ecfc3830ff8498b", 2391 | "sha256": "4f042144c1cdc0f70939c59b6c44eb162ecafc69a9c2e0f83ecfc3830ff8498b" 2392 | }, 2393 | "arm64_ventura": { 2394 | "cellar": "/opt/homebrew/Cellar", 2395 | "url": "https://ghcr.io/v2/shivammathur/php/php/8.0/blobs/sha256:ee5ad10f6a84949072b6c1e6335eedf021c9e45718e1ca2db0492572d1eb07e5", 2396 | "sha256": "ee5ad10f6a84949072b6c1e6335eedf021c9e45718e1ca2db0492572d1eb07e5" 2397 | }, 2398 | "arm64_monterey": { 2399 | "cellar": "/opt/homebrew/Cellar", 2400 | "url": "https://ghcr.io/v2/shivammathur/php/php/8.0/blobs/sha256:dff1c23210dcb732ea7e6932932205d05f28d60b282f5881a885b0f225f6e741", 2401 | "sha256": "dff1c23210dcb732ea7e6932932205d05f28d60b282f5881a885b0f225f6e741" 2402 | }, 2403 | "ventura": { 2404 | "cellar": "/usr/local/Cellar", 2405 | "url": "https://ghcr.io/v2/shivammathur/php/php/8.0/blobs/sha256:695aeb7a22af43b802b008b4c15f64db2d56b28cd3659ed70ed49cebb3bdc7b3", 2406 | "sha256": "695aeb7a22af43b802b008b4c15f64db2d56b28cd3659ed70ed49cebb3bdc7b3" 2407 | }, 2408 | "monterey": { 2409 | "cellar": "/usr/local/Cellar", 2410 | "url": "https://ghcr.io/v2/shivammathur/php/php/8.0/blobs/sha256:34f1d40b2413e272953e3ea5b7c0d9822cb6bca4bc0fcce0c18c1b797160b590", 2411 | "sha256": "34f1d40b2413e272953e3ea5b7c0d9822cb6bca4bc0fcce0c18c1b797160b590" 2412 | }, 2413 | "x86_64_linux": { 2414 | "cellar": "/home/linuxbrew/.linuxbrew/Cellar", 2415 | "url": "https://ghcr.io/v2/shivammathur/php/php/8.0/blobs/sha256:ad7f466ebe7de3f9997dce3173a928124a2c8c6c396b18ab3f881f65f6027710", 2416 | "sha256": "ad7f466ebe7de3f9997dce3173a928124a2c8c6c396b18ab3f881f65f6027710" 2417 | } 2418 | } 2419 | } 2420 | }, 2421 | "php@8.2": { 2422 | "version": "8.2.17", 2423 | "bottle": { 2424 | "rebuild": 0, 2425 | "root_url": "https://ghcr.io/v2/homebrew/core", 2426 | "files": { 2427 | "arm64_sonoma": { 2428 | "cellar": "/opt/homebrew/Cellar", 2429 | "url": "https://ghcr.io/v2/homebrew/core/php/8.2/blobs/sha256:0d74b56ab5da9329885555ba16fac029d6c5ad5e8cad80f1366bcdce53540061", 2430 | "sha256": "0d74b56ab5da9329885555ba16fac029d6c5ad5e8cad80f1366bcdce53540061" 2431 | }, 2432 | "arm64_ventura": { 2433 | "cellar": "/opt/homebrew/Cellar", 2434 | "url": "https://ghcr.io/v2/homebrew/core/php/8.2/blobs/sha256:7ea0a7785bcb146375b8d676908d02d32569038feac349850b58b0c954f6c3e2", 2435 | "sha256": "7ea0a7785bcb146375b8d676908d02d32569038feac349850b58b0c954f6c3e2" 2436 | }, 2437 | "arm64_monterey": { 2438 | "cellar": "/opt/homebrew/Cellar", 2439 | "url": "https://ghcr.io/v2/homebrew/core/php/8.2/blobs/sha256:216d3de5f8cf71bfeb598ab23bacd678b618998cd0e822c0b12c64bbdb3ccf12", 2440 | "sha256": "216d3de5f8cf71bfeb598ab23bacd678b618998cd0e822c0b12c64bbdb3ccf12" 2441 | }, 2442 | "sonoma": { 2443 | "cellar": "/usr/local/Cellar", 2444 | "url": "https://ghcr.io/v2/homebrew/core/php/8.2/blobs/sha256:744ef81d5aadf12cccb612af2655cdc5ae17829617ad544e0f5daefa6c57d44b", 2445 | "sha256": "744ef81d5aadf12cccb612af2655cdc5ae17829617ad544e0f5daefa6c57d44b" 2446 | }, 2447 | "ventura": { 2448 | "cellar": "/usr/local/Cellar", 2449 | "url": "https://ghcr.io/v2/homebrew/core/php/8.2/blobs/sha256:270789378b34403f9c4478d09e9292b4c840d50e0e786bf18072c8b6790612f3", 2450 | "sha256": "270789378b34403f9c4478d09e9292b4c840d50e0e786bf18072c8b6790612f3" 2451 | }, 2452 | "monterey": { 2453 | "cellar": "/usr/local/Cellar", 2454 | "url": "https://ghcr.io/v2/homebrew/core/php/8.2/blobs/sha256:fe865bce045c0d70baec14a891ca499266d0becfd8f1721aef0c9aef2c86a60e", 2455 | "sha256": "fe865bce045c0d70baec14a891ca499266d0becfd8f1721aef0c9aef2c86a60e" 2456 | }, 2457 | "x86_64_linux": { 2458 | "cellar": "/home/linuxbrew/.linuxbrew/Cellar", 2459 | "url": "https://ghcr.io/v2/homebrew/core/php/8.2/blobs/sha256:e3d3c3ede8f4795bb11a52b7fc1ec58b38c36c98fcf552e2e4830a1b430a15a7", 2460 | "sha256": "e3d3c3ede8f4795bb11a52b7fc1ec58b38c36c98fcf552e2e4830a1b430a15a7" 2461 | } 2462 | } 2463 | } 2464 | }, 2465 | "withgraphite/tap/graphite": { 2466 | "version": "1.2.8", 2467 | "bottle": false 2468 | }, 2469 | "gnu-tar": { 2470 | "version": "1.35", 2471 | "bottle": { 2472 | "rebuild": 0, 2473 | "root_url": "https://ghcr.io/v2/homebrew/core", 2474 | "files": { 2475 | "arm64_sonoma": { 2476 | "cellar": ":any_skip_relocation", 2477 | "url": "https://ghcr.io/v2/homebrew/core/gnu-tar/blobs/sha256:15a0dbc1fe67cae4498891493686afca6d745b001a2913760ce79cd52c918079", 2478 | "sha256": "15a0dbc1fe67cae4498891493686afca6d745b001a2913760ce79cd52c918079" 2479 | }, 2480 | "arm64_ventura": { 2481 | "cellar": ":any_skip_relocation", 2482 | "url": "https://ghcr.io/v2/homebrew/core/gnu-tar/blobs/sha256:0b5debb34f53626f09c119c96ab75e46dfcc9c816ca5ccbf4ce1b051251c3752", 2483 | "sha256": "0b5debb34f53626f09c119c96ab75e46dfcc9c816ca5ccbf4ce1b051251c3752" 2484 | }, 2485 | "arm64_monterey": { 2486 | "cellar": ":any_skip_relocation", 2487 | "url": "https://ghcr.io/v2/homebrew/core/gnu-tar/blobs/sha256:78bbae315786562366b35a1c1d25c391824281aab63421e4243ec927dbe647b1", 2488 | "sha256": "78bbae315786562366b35a1c1d25c391824281aab63421e4243ec927dbe647b1" 2489 | }, 2490 | "arm64_big_sur": { 2491 | "cellar": ":any_skip_relocation", 2492 | "url": "https://ghcr.io/v2/homebrew/core/gnu-tar/blobs/sha256:98ce20547135be57ef9ee9b6e85df5081ba8b907f113c6d19b3e4a296b3930fc", 2493 | "sha256": "98ce20547135be57ef9ee9b6e85df5081ba8b907f113c6d19b3e4a296b3930fc" 2494 | }, 2495 | "sonoma": { 2496 | "cellar": ":any_skip_relocation", 2497 | "url": "https://ghcr.io/v2/homebrew/core/gnu-tar/blobs/sha256:da82f5abafab8ba2bfc25a33e500a546985e0b2789ea915d7ad05292b41a373b", 2498 | "sha256": "da82f5abafab8ba2bfc25a33e500a546985e0b2789ea915d7ad05292b41a373b" 2499 | }, 2500 | "ventura": { 2501 | "cellar": ":any_skip_relocation", 2502 | "url": "https://ghcr.io/v2/homebrew/core/gnu-tar/blobs/sha256:5078709c3c1643d2ac42da4fc354baee127d06e4a4f8b04c9770867ec5166188", 2503 | "sha256": "5078709c3c1643d2ac42da4fc354baee127d06e4a4f8b04c9770867ec5166188" 2504 | }, 2505 | "monterey": { 2506 | "cellar": ":any_skip_relocation", 2507 | "url": "https://ghcr.io/v2/homebrew/core/gnu-tar/blobs/sha256:b083b4ca16eea4b23615ce1b90b7e1a3ee52dd90cd5a4275567cb0ea55339ee4", 2508 | "sha256": "b083b4ca16eea4b23615ce1b90b7e1a3ee52dd90cd5a4275567cb0ea55339ee4" 2509 | }, 2510 | "big_sur": { 2511 | "cellar": ":any_skip_relocation", 2512 | "url": "https://ghcr.io/v2/homebrew/core/gnu-tar/blobs/sha256:d7947a84f5bd5458a1faf9854a90d788c7661a6aba37b7ff7f8fba1e9d04ac24", 2513 | "sha256": "d7947a84f5bd5458a1faf9854a90d788c7661a6aba37b7ff7f8fba1e9d04ac24" 2514 | }, 2515 | "x86_64_linux": { 2516 | "cellar": "/home/linuxbrew/.linuxbrew/Cellar", 2517 | "url": "https://ghcr.io/v2/homebrew/core/gnu-tar/blobs/sha256:5209eb2c2693093b26bc232c09df1caf0b5254f9a2003aa88b81a7c7f9f2391a", 2518 | "sha256": "5209eb2c2693093b26bc232c09df1caf0b5254f9a2003aa88b81a7c7f9f2391a" 2519 | } 2520 | } 2521 | } 2522 | }, 2523 | "flock": { 2524 | "version": "0.4.0", 2525 | "bottle": { 2526 | "rebuild": 0, 2527 | "root_url": "https://ghcr.io/v2/homebrew/core", 2528 | "files": { 2529 | "arm64_sonoma": { 2530 | "cellar": ":any_skip_relocation", 2531 | "url": "https://ghcr.io/v2/homebrew/core/flock/blobs/sha256:81934a5818c68542712a6d8b56c6b92f303308394a39cdaf8618c057f6c75b93", 2532 | "sha256": "81934a5818c68542712a6d8b56c6b92f303308394a39cdaf8618c057f6c75b93" 2533 | }, 2534 | "arm64_ventura": { 2535 | "cellar": ":any_skip_relocation", 2536 | "url": "https://ghcr.io/v2/homebrew/core/flock/blobs/sha256:37a4abe9f2dc5ad5297a5dfdcb10fc1aeafe587b06a7a275231d05a3dd48b572", 2537 | "sha256": "37a4abe9f2dc5ad5297a5dfdcb10fc1aeafe587b06a7a275231d05a3dd48b572" 2538 | }, 2539 | "arm64_monterey": { 2540 | "cellar": ":any_skip_relocation", 2541 | "url": "https://ghcr.io/v2/homebrew/core/flock/blobs/sha256:0a65c4619ce6f133e7a5b9e82d7648b7da9ace48a09f89d69eb66f38bd6e2b6a", 2542 | "sha256": "0a65c4619ce6f133e7a5b9e82d7648b7da9ace48a09f89d69eb66f38bd6e2b6a" 2543 | }, 2544 | "arm64_big_sur": { 2545 | "cellar": ":any_skip_relocation", 2546 | "url": "https://ghcr.io/v2/homebrew/core/flock/blobs/sha256:2d6b63e6990f0bb2509aa01abc38208de8d809446fa32cd86961dec0aaffae4b", 2547 | "sha256": "2d6b63e6990f0bb2509aa01abc38208de8d809446fa32cd86961dec0aaffae4b" 2548 | }, 2549 | "sonoma": { 2550 | "cellar": ":any_skip_relocation", 2551 | "url": "https://ghcr.io/v2/homebrew/core/flock/blobs/sha256:1fb35d13877bd0daabd25938b4c40edcdb9a65395875801bfee73ebf16ada08a", 2552 | "sha256": "1fb35d13877bd0daabd25938b4c40edcdb9a65395875801bfee73ebf16ada08a" 2553 | }, 2554 | "ventura": { 2555 | "cellar": ":any_skip_relocation", 2556 | "url": "https://ghcr.io/v2/homebrew/core/flock/blobs/sha256:0b28bbaccdc54d4f0bcbc960731cd45dad2dd3538bc24f5e728e0ef0defa4a33", 2557 | "sha256": "0b28bbaccdc54d4f0bcbc960731cd45dad2dd3538bc24f5e728e0ef0defa4a33" 2558 | }, 2559 | "monterey": { 2560 | "cellar": ":any_skip_relocation", 2561 | "url": "https://ghcr.io/v2/homebrew/core/flock/blobs/sha256:ec7c9523be673e50dec3b6aa3d17ef4905076e0f804e9ebccbca128bbf8855c5", 2562 | "sha256": "ec7c9523be673e50dec3b6aa3d17ef4905076e0f804e9ebccbca128bbf8855c5" 2563 | }, 2564 | "big_sur": { 2565 | "cellar": ":any_skip_relocation", 2566 | "url": "https://ghcr.io/v2/homebrew/core/flock/blobs/sha256:1f9fc94a66a10a05c005b8043b477fe5f8ec4c995efbc853a9d56c541370ac97", 2567 | "sha256": "1f9fc94a66a10a05c005b8043b477fe5f8ec4c995efbc853a9d56c541370ac97" 2568 | }, 2569 | "catalina": { 2570 | "cellar": ":any_skip_relocation", 2571 | "url": "https://ghcr.io/v2/homebrew/core/flock/blobs/sha256:b781487b76eed046d9e7c5d2db71a7c81001dc6b80926b9215bc7cb4e7a3c162", 2572 | "sha256": "b781487b76eed046d9e7c5d2db71a7c81001dc6b80926b9215bc7cb4e7a3c162" 2573 | }, 2574 | "x86_64_linux": { 2575 | "cellar": ":any_skip_relocation", 2576 | "url": "https://ghcr.io/v2/homebrew/core/flock/blobs/sha256:ca5c17cfc66b0b2589e07c696cfbe385addb1ed8905c5d851d64b2dbbee00940", 2577 | "sha256": "ca5c17cfc66b0b2589e07c696cfbe385addb1ed8905c5d851d64b2dbbee00940" 2578 | } 2579 | } 2580 | } 2581 | }, 2582 | "pidof": { 2583 | "version": "0.1.4", 2584 | "bottle": { 2585 | "rebuild": 2, 2586 | "root_url": "https://ghcr.io/v2/homebrew/core", 2587 | "files": { 2588 | "arm64_sonoma": { 2589 | "cellar": ":any_skip_relocation", 2590 | "url": "https://ghcr.io/v2/homebrew/core/pidof/blobs/sha256:b066475e9ddce61ef79c68b32e46f173c2c8c685a7269f30fb966efc137bccd8", 2591 | "sha256": "b066475e9ddce61ef79c68b32e46f173c2c8c685a7269f30fb966efc137bccd8" 2592 | }, 2593 | "arm64_ventura": { 2594 | "cellar": ":any_skip_relocation", 2595 | "url": "https://ghcr.io/v2/homebrew/core/pidof/blobs/sha256:964d09783be4f829eeac50a16939ba0f289fa2c88dc7fba155f258683f009884", 2596 | "sha256": "964d09783be4f829eeac50a16939ba0f289fa2c88dc7fba155f258683f009884" 2597 | }, 2598 | "arm64_monterey": { 2599 | "cellar": ":any_skip_relocation", 2600 | "url": "https://ghcr.io/v2/homebrew/core/pidof/blobs/sha256:6b299aebe4224da62d4f287f46a6816362986a9a78089c3315ab2c4e2f946420", 2601 | "sha256": "6b299aebe4224da62d4f287f46a6816362986a9a78089c3315ab2c4e2f946420" 2602 | }, 2603 | "arm64_big_sur": { 2604 | "cellar": ":any_skip_relocation", 2605 | "url": "https://ghcr.io/v2/homebrew/core/pidof/blobs/sha256:a7d1943e3d14377270554f16198f105b0e00cc9d53da79c7d22bc7974b711a23", 2606 | "sha256": "a7d1943e3d14377270554f16198f105b0e00cc9d53da79c7d22bc7974b711a23" 2607 | }, 2608 | "sonoma": { 2609 | "cellar": ":any_skip_relocation", 2610 | "url": "https://ghcr.io/v2/homebrew/core/pidof/blobs/sha256:e6282b449ff80b52362718d1fc34cdcb13ee00a570fbd0897a8a171040f5022b", 2611 | "sha256": "e6282b449ff80b52362718d1fc34cdcb13ee00a570fbd0897a8a171040f5022b" 2612 | }, 2613 | "ventura": { 2614 | "cellar": ":any_skip_relocation", 2615 | "url": "https://ghcr.io/v2/homebrew/core/pidof/blobs/sha256:0accd2ab3d57c68efa55bd50dfc7c5343ce1da7f6c9e76d534a6d6a234209973", 2616 | "sha256": "0accd2ab3d57c68efa55bd50dfc7c5343ce1da7f6c9e76d534a6d6a234209973" 2617 | }, 2618 | "monterey": { 2619 | "cellar": ":any_skip_relocation", 2620 | "url": "https://ghcr.io/v2/homebrew/core/pidof/blobs/sha256:1509f0473f6860e3836d43ed83f594982c3e4aa4af5b2a6be3f69ee55e1f74d1", 2621 | "sha256": "1509f0473f6860e3836d43ed83f594982c3e4aa4af5b2a6be3f69ee55e1f74d1" 2622 | }, 2623 | "big_sur": { 2624 | "cellar": ":any_skip_relocation", 2625 | "url": "https://ghcr.io/v2/homebrew/core/pidof/blobs/sha256:c3a5a73563d4ca6e329d293423f19639e98151ec72505fb926b00eab067cac55", 2626 | "sha256": "c3a5a73563d4ca6e329d293423f19639e98151ec72505fb926b00eab067cac55" 2627 | }, 2628 | "catalina": { 2629 | "cellar": ":any_skip_relocation", 2630 | "url": "https://ghcr.io/v2/homebrew/core/pidof/blobs/sha256:634f42559aaa0582a6700c268737ba7cb7ec3bdadf2f3aa37c5a846604759459", 2631 | "sha256": "634f42559aaa0582a6700c268737ba7cb7ec3bdadf2f3aa37c5a846604759459" 2632 | }, 2633 | "mojave": { 2634 | "cellar": ":any_skip_relocation", 2635 | "url": "https://ghcr.io/v2/homebrew/core/pidof/blobs/sha256:1a88c923954c4511fb64fe6cbfb27f5248c39d1676053c671ab71c652a377a2f", 2636 | "sha256": "1a88c923954c4511fb64fe6cbfb27f5248c39d1676053c671ab71c652a377a2f" 2637 | }, 2638 | "high_sierra": { 2639 | "cellar": ":any_skip_relocation", 2640 | "url": "https://ghcr.io/v2/homebrew/core/pidof/blobs/sha256:fd5f89cf3a9685142e08a23980d9438e961096d74ee508a96ccbaecb55da6e1a", 2641 | "sha256": "fd5f89cf3a9685142e08a23980d9438e961096d74ee508a96ccbaecb55da6e1a" 2642 | }, 2643 | "sierra": { 2644 | "cellar": ":any_skip_relocation", 2645 | "url": "https://ghcr.io/v2/homebrew/core/pidof/blobs/sha256:6991d110a73724959f84edc398647e3cac5a029645daedef5f263ae51218130d", 2646 | "sha256": "6991d110a73724959f84edc398647e3cac5a029645daedef5f263ae51218130d" 2647 | }, 2648 | "el_capitan": { 2649 | "cellar": ":any_skip_relocation", 2650 | "url": "https://ghcr.io/v2/homebrew/core/pidof/blobs/sha256:d02c826db5564d7750c0e309a771b164f7764250507955d0b87d09837c3c2ba6", 2651 | "sha256": "d02c826db5564d7750c0e309a771b164f7764250507955d0b87d09837c3c2ba6" 2652 | } 2653 | } 2654 | } 2655 | }, 2656 | "dasel": { 2657 | "version": "2.7.0", 2658 | "bottle": { 2659 | "rebuild": 0, 2660 | "root_url": "https://ghcr.io/v2/homebrew/core", 2661 | "files": { 2662 | "arm64_sonoma": { 2663 | "cellar": ":any_skip_relocation", 2664 | "url": "https://ghcr.io/v2/homebrew/core/dasel/blobs/sha256:fec290343a1a8dbc375dc4faba2ae251f8961e5772f0bf0de34d70f9ce3cc139", 2665 | "sha256": "fec290343a1a8dbc375dc4faba2ae251f8961e5772f0bf0de34d70f9ce3cc139" 2666 | }, 2667 | "arm64_ventura": { 2668 | "cellar": ":any_skip_relocation", 2669 | "url": "https://ghcr.io/v2/homebrew/core/dasel/blobs/sha256:7e046dbba28e70b74cdc3835fe109660b2e867ede346361fdaed2fe03446b5f7", 2670 | "sha256": "7e046dbba28e70b74cdc3835fe109660b2e867ede346361fdaed2fe03446b5f7" 2671 | }, 2672 | "arm64_monterey": { 2673 | "cellar": ":any_skip_relocation", 2674 | "url": "https://ghcr.io/v2/homebrew/core/dasel/blobs/sha256:f5d1e821658aae921875d488b9ab5ef79f4bf01f3df765d8dec1f8b08d235ae7", 2675 | "sha256": "f5d1e821658aae921875d488b9ab5ef79f4bf01f3df765d8dec1f8b08d235ae7" 2676 | }, 2677 | "sonoma": { 2678 | "cellar": ":any_skip_relocation", 2679 | "url": "https://ghcr.io/v2/homebrew/core/dasel/blobs/sha256:f2a772a19564489c6c1ecf9ff0a2afee5737061ca72b399248c6638ad0bd59da", 2680 | "sha256": "f2a772a19564489c6c1ecf9ff0a2afee5737061ca72b399248c6638ad0bd59da" 2681 | }, 2682 | "ventura": { 2683 | "cellar": ":any_skip_relocation", 2684 | "url": "https://ghcr.io/v2/homebrew/core/dasel/blobs/sha256:cc75c3431d74e115127b5960d95943ec626fd2d88291da44f925481b7b8265a4", 2685 | "sha256": "cc75c3431d74e115127b5960d95943ec626fd2d88291da44f925481b7b8265a4" 2686 | }, 2687 | "monterey": { 2688 | "cellar": ":any_skip_relocation", 2689 | "url": "https://ghcr.io/v2/homebrew/core/dasel/blobs/sha256:12461cec08dd41774cc591847d1b0d00f9e0de58ee465ee842223d6a691b0a05", 2690 | "sha256": "12461cec08dd41774cc591847d1b0d00f9e0de58ee465ee842223d6a691b0a05" 2691 | }, 2692 | "x86_64_linux": { 2693 | "cellar": ":any_skip_relocation", 2694 | "url": "https://ghcr.io/v2/homebrew/core/dasel/blobs/sha256:c22e48a8cf7360eace9ea21000f46b70b0c5eb8b1cc5d2fef0f6952c8e3d8517", 2695 | "sha256": "c22e48a8cf7360eace9ea21000f46b70b0c5eb8b1cc5d2fef0f6952c8e3d8517" 2696 | } 2697 | } 2698 | } 2699 | } 2700 | }, 2701 | "cask": { 2702 | "1password": { 2703 | "version": "7.7", 2704 | "options": { 2705 | "full_name": "1password" 2706 | } 2707 | }, 2708 | "alfred": { 2709 | "version": "5.0.5,2096", 2710 | "options": { 2711 | "full_name": "alfred" 2712 | } 2713 | }, 2714 | "avibrazil-rdm": { 2715 | "version": "2.2", 2716 | "options": { 2717 | "full_name": "avibrazil-rdm" 2718 | } 2719 | }, 2720 | "bartender": { 2721 | "version": "5.0.49", 2722 | "options": { 2723 | "full_name": "bartender" 2724 | } 2725 | }, 2726 | "daisydisk": { 2727 | "version": "4.30", 2728 | "options": { 2729 | "full_name": "daisydisk" 2730 | } 2731 | }, 2732 | "flux": { 2733 | "version": "42.2", 2734 | "options": { 2735 | "full_name": "flux" 2736 | } 2737 | }, 2738 | "numi": { 2739 | "version": "3.32.721", 2740 | "options": { 2741 | "full_name": "numi" 2742 | } 2743 | }, 2744 | "screenflow": { 2745 | "version": "10.0.10", 2746 | "options": { 2747 | "full_name": "screenflow" 2748 | } 2749 | }, 2750 | "kap": { 2751 | "version": "2.2.0", 2752 | "options": { 2753 | "full_name": "kap" 2754 | } 2755 | }, 2756 | "firefox": { 2757 | "version": "124.0.2", 2758 | "options": { 2759 | "full_name": "firefox" 2760 | } 2761 | }, 2762 | "google-backup-and-sync": { 2763 | "version": "latest", 2764 | "options": { 2765 | "full_name": "google-backup-and-sync" 2766 | } 2767 | }, 2768 | "google-chrome": { 2769 | "version": "123.0.6312.87", 2770 | "options": { 2771 | "full_name": "google-chrome" 2772 | } 2773 | }, 2774 | "qlcolorcode": { 2775 | "version": "2.1.0", 2776 | "options": { 2777 | "full_name": "qlcolorcode" 2778 | } 2779 | }, 2780 | "qlmarkdown": { 2781 | "version": "1.3.6", 2782 | "options": { 2783 | "full_name": "qlmarkdown" 2784 | } 2785 | }, 2786 | "qlstephen": { 2787 | "version": "1.5.1", 2788 | "options": { 2789 | "full_name": "qlstephen" 2790 | } 2791 | }, 2792 | "quicklook-json": { 2793 | "version": "latest", 2794 | "options": { 2795 | "full_name": "quicklook-json" 2796 | } 2797 | }, 2798 | "github": { 2799 | "version": "3.3.12-a21e55b3", 2800 | "options": { 2801 | "full_name": "github" 2802 | } 2803 | }, 2804 | "sublime-text": { 2805 | "version": "4169", 2806 | "options": { 2807 | "full_name": "sublime-text" 2808 | } 2809 | }, 2810 | "visual-studio-code": { 2811 | "version": "1.87.2", 2812 | "options": { 2813 | "full_name": "visual-studio-code" 2814 | } 2815 | }, 2816 | "docker": { 2817 | "version": "4.28.0,139021", 2818 | "options": { 2819 | "full_name": "docker" 2820 | } 2821 | }, 2822 | "insomnia": { 2823 | "version": "8.6.1", 2824 | "options": { 2825 | "full_name": "insomnia" 2826 | } 2827 | }, 2828 | "iterm2": { 2829 | "version": "3.4.23", 2830 | "options": { 2831 | "full_name": "iterm2" 2832 | } 2833 | }, 2834 | "java": { 2835 | "version": "14.0.1,7:664493ef4a6946b186ff29eb326336a2", 2836 | "options": { 2837 | "full_name": "java" 2838 | } 2839 | }, 2840 | "postman": { 2841 | "version": "10.24.3", 2842 | "options": { 2843 | "full_name": "postman" 2844 | } 2845 | }, 2846 | "sequel-pro": { 2847 | "version": "1.1.2", 2848 | "options": { 2849 | "full_name": "sequel-pro" 2850 | } 2851 | }, 2852 | "figma": { 2853 | "version": "116.17.11", 2854 | "options": { 2855 | "full_name": "figma" 2856 | } 2857 | }, 2858 | "processing": { 2859 | "version": "3.5.3" 2860 | }, 2861 | "boom-3d": { 2862 | "version": "1.3.6", 2863 | "options": { 2864 | "full_name": "boom-3d" 2865 | } 2866 | }, 2867 | "dofus": { 2868 | "version": "latest", 2869 | "options": { 2870 | "full_name": "dofus" 2871 | } 2872 | }, 2873 | "signal": { 2874 | "version": "7.4.0", 2875 | "options": { 2876 | "full_name": "signal" 2877 | } 2878 | }, 2879 | "skype": { 2880 | "version": "8.32.0.44", 2881 | "options": { 2882 | "full_name": "skype" 2883 | } 2884 | }, 2885 | "slack": { 2886 | "version": "4.37.94", 2887 | "options": { 2888 | "full_name": "slack" 2889 | } 2890 | }, 2891 | "spotify": { 2892 | "version": "1.2.33.1042,26c92729,4487", 2893 | "options": { 2894 | "full_name": "spotify" 2895 | } 2896 | }, 2897 | "vlc": { 2898 | "version": "3.0.20", 2899 | "options": { 2900 | "full_name": "vlc" 2901 | } 2902 | }, 2903 | "whatsapp": { 2904 | "version": "2.24.5.76", 2905 | "options": { 2906 | "full_name": "whatsapp" 2907 | } 2908 | }, 2909 | "twist": { 2910 | "version": "1.6.22,7024", 2911 | "options": { 2912 | "full_name": "twist" 2913 | } 2914 | }, 2915 | "anylist": { 2916 | "version": "1.2,3", 2917 | "options": { 2918 | "full_name": "anylist" 2919 | } 2920 | }, 2921 | "sip": { 2922 | "version": "3.4.1", 2923 | "options": { 2924 | "full_name": "sip" 2925 | } 2926 | }, 2927 | "notion": { 2928 | "version": "3.3.0", 2929 | "options": { 2930 | "full_name": "notion" 2931 | } 2932 | }, 2933 | "rocket": { 2934 | "version": "1.6.1,62", 2935 | "options": { 2936 | "full_name": "rocket" 2937 | } 2938 | }, 2939 | "vagrant": { 2940 | "version": "2.2.6" 2941 | }, 2942 | "station": { 2943 | "version": "1.63.4" 2944 | }, 2945 | "phpstorm": { 2946 | "version": "2021.2.3,212.5457.49", 2947 | "options": { 2948 | "full_name": "phpstorm" 2949 | } 2950 | }, 2951 | "cheatsheet": { 2952 | "version": "1.6.4", 2953 | "options": { 2954 | "full_name": "cheatsheet" 2955 | } 2956 | }, 2957 | "tower": { 2958 | "version": "3.6.0,205:1262a183", 2959 | "options": { 2960 | "full_name": "tower" 2961 | } 2962 | }, 2963 | "gitkraken": { 2964 | "version": "6.5.1", 2965 | "options": { 2966 | "full_name": "gitkraken" 2967 | } 2968 | }, 2969 | "amethyst": { 2970 | "version": "0.15.3", 2971 | "options": { 2972 | "full_name": "amethyst" 2973 | } 2974 | }, 2975 | "insync": { 2976 | "version": "3.8.7.50505", 2977 | "options": { 2978 | "full_name": "insync" 2979 | } 2980 | }, 2981 | "gpg-suite": { 2982 | "version": "2023.3", 2983 | "options": { 2984 | "full_name": "gpg-suite" 2985 | } 2986 | }, 2987 | "tableplus": { 2988 | "version": "5.9.6,546", 2989 | "options": { 2990 | "full_name": "tableplus" 2991 | } 2992 | }, 2993 | "dbngin": { 2994 | "version": "7.0,70", 2995 | "options": { 2996 | "full_name": "dbngin" 2997 | } 2998 | }, 2999 | "zoom": { 3000 | "version": "5.17.11.31580", 3001 | "options": { 3002 | "full_name": "zoom" 3003 | } 3004 | }, 3005 | "hey": { 3006 | "version": "1.2.10", 3007 | "options": { 3008 | "full_name": "hey" 3009 | } 3010 | }, 3011 | "discord": { 3012 | "version": "0.0.298", 3013 | "options": { 3014 | "full_name": "discord" 3015 | } 3016 | }, 3017 | "telegram": { 3018 | "version": "10.10,261674", 3019 | "options": { 3020 | "full_name": "telegram" 3021 | } 3022 | }, 3023 | "cleanshot": { 3024 | "version": "4.6.2", 3025 | "options": { 3026 | "full_name": "cleanshot" 3027 | } 3028 | }, 3029 | "jetbrains-toolbox": { 3030 | "version": "2.2.3,2.2.3.20090", 3031 | "options": { 3032 | "full_name": "jetbrains-toolbox" 3033 | } 3034 | }, 3035 | "krisp": { 3036 | "version": "1.42.13", 3037 | "options": { 3038 | "full_name": "krisp" 3039 | } 3040 | }, 3041 | "pixelsnap": { 3042 | "version": "2.5.4", 3043 | "options": { 3044 | "full_name": "pixelsnap" 3045 | } 3046 | }, 3047 | "ngrok": { 3048 | "version": "3.8.0,4JvNoWcrBdQ,a", 3049 | "options": { 3050 | "full_name": "ngrok" 3051 | } 3052 | }, 3053 | "imageoptim": { 3054 | "version": "1.9.3", 3055 | "options": { 3056 | "full_name": "imageoptim" 3057 | } 3058 | }, 3059 | "arc": { 3060 | "version": "1.36.0,48035", 3061 | "options": { 3062 | "full_name": "arc" 3063 | } 3064 | }, 3065 | "raycast": { 3066 | "version": "1.70.3", 3067 | "options": { 3068 | "full_name": "raycast" 3069 | } 3070 | }, 3071 | "moom": { 3072 | "version": "3.2.26", 3073 | "options": { 3074 | "full_name": "moom" 3075 | } 3076 | }, 3077 | "elgato-control-center": { 3078 | "version": "1.5.20289", 3079 | "options": { 3080 | "full_name": "elgato-control-center" 3081 | } 3082 | } 3083 | }, 3084 | "mas": { 3085 | "Bear": { 3086 | "id": "1091189122", 3087 | "version": "2.1" 3088 | }, 3089 | "Magnet": { 3090 | "id": "441258766", 3091 | "version": "2.5.0" 3092 | }, 3093 | "Spark": { 3094 | "id": "1176895641", 3095 | "version": "2.11.37" 3096 | }, 3097 | "Trello": { 3098 | "id": "1278508951", 3099 | "version": "2.11.7" 3100 | }, 3101 | "Unsplash Wallpapers": { 3102 | "id": "1284863847", 3103 | "version": "1.4.4" 3104 | }, 3105 | "Spark Desktop": { 3106 | "id": "6445813049", 3107 | "version": "3.14.5" 3108 | } 3109 | } 3110 | }, 3111 | "system": { 3112 | "macos": { 3113 | "catalina": { 3114 | "HOMEBREW_VERSION": "2.2.16", 3115 | "HOMEBREW_PREFIX": "/usr/local", 3116 | "Homebrew/homebrew-core": "e33e3cbe24a510b331eef007b73829df2c621d30", 3117 | "CLT": "", 3118 | "Xcode": "12.2", 3119 | "macOS": "10.15.7" 3120 | }, 3121 | "big_sur": { 3122 | "HOMEBREW_VERSION": "3.0.2", 3123 | "HOMEBREW_PREFIX": "/usr/local", 3124 | "Homebrew/homebrew-core": "7dda5907ef2b7f64f9a82d1fbed6c730c3e99de3", 3125 | "CLT": "", 3126 | "Xcode": "12.4", 3127 | "macOS": "11.2.1" 3128 | }, 3129 | "monterey": { 3130 | "HOMEBREW_VERSION": "3.6.14", 3131 | "HOMEBREW_PREFIX": "/opt/homebrew", 3132 | "Homebrew/homebrew-core": "bc244f6903a860f7e784efe359b8a67572482fbb", 3133 | "CLT": "14.0.0.0.1.1661618636", 3134 | "Xcode": "14.1", 3135 | "macOS": "12.6" 3136 | }, 3137 | "sonoma": { 3138 | "HOMEBREW_VERSION": "4.2.16", 3139 | "HOMEBREW_PREFIX": "/opt/homebrew", 3140 | "Homebrew/homebrew-core": "api", 3141 | "CLT": "15.3.0.0.1.1708646388", 3142 | "Xcode": "15.1", 3143 | "macOS": "14.4" 3144 | } 3145 | } 3146 | } 3147 | } 3148 | --------------------------------------------------------------------------------