cask "phpstorm" do arch arm: "-aarch64" version "2023.3.2,233.13135.108" sha256 arm: "10713f0b4c8741bd940c650a3e2b084f69d7e3e7e910d81e6b52bd30545407e9", intel: "a55592cd5e6122f75446588f7c1ea5372aed2f16bab7e188e53291e697ac04ae" url "https://download.jetbrains.com/webide/PhpStorm-#{version.csv.first}#{arch}.dmg" name "JetBrains PhpStorm" desc "PHP IDE by JetBrains" homepage "https://www.jetbrains.com/phpstorm/" livecheck do url "https://data.services.jetbrains.com/products/releases?code=PS&latest=true&type=release" strategy :json do |json| json["PS"].map do |release| "#{release["version"]},#{release["build"]}" end end end auto_updates true depends_on macos: ">= :high_sierra" app "PhpStorm.app" binary "#{appdir}/PhpStorm.app/Contents/MacOS/phpstorm" zap trash: [ "~/Library/Application Support/PhpStorm#{version.major_minor}", "~/Library/Caches/PhpStorm#{version.major_minor}", "~/Library/Logs/PhpStorm#{version.major_minor}", "~/Library/Preferences/jetbrains.phpstorm.*.plist", "~/Library/Preferences/PhpStorm#{version.major_minor}", ] end