cask 'phpstorm' do version '2017.1.3,171.4424.11' sha256 'b631cb4eb030da9f45b0e4a4080fb7cd7172897c6644cc1e57f833ea7276168e' url "https://download.jetbrains.com/webide/PhpStorm-#{version.before_comma}.dmg" appcast 'https://data.services.jetbrains.com/products/releases?code=PS&latest=true&type=release', checkpoint: '0a667867d115bab920b770529d0b11e8b088dc9e6fe0e0789c06b0a5f31001cd' name 'JetBrains PhpStorm' homepage 'https://www.jetbrains.com/phpstorm/' auto_updates true conflicts_with cask: 'phpstorm-eap' app 'PhpStorm.app' uninstall_postflight do ENV['PATH'].split(File::PATH_SEPARATOR).map { |path| File.join(path, 'pstorm') }.each { |path| File.delete(path) if File.exist?(path) } end zap delete: [ "~/Library/Preferences/PhpStorm#{version.major_minor}", "~/Library/Caches/PhpStorm#{version.major_minor}", "~/Library/Logs/PhpStorm#{version.major_minor}", "~/Library/Application Support/PhpStorm#{version.major_minor}", '~/Library/Preferences/jetbrains.phpstorm.*.plist', ] end