100 lines
3.0 KiB
Ruby
100 lines
3.0 KiB
Ruby
class Psalm < Formula
|
|
desc "PHP Static Analysis Tool"
|
|
homepage "https://psalm.dev"
|
|
url "https://github.com/vimeo/psalm/releases/download/5.4.0/psalm.phar"
|
|
sha256 "7798dfebcb3e2e9a540f011141aaabfabcbc2fe666a1bf15c1eb58910faf2148"
|
|
license "MIT"
|
|
|
|
bottle do
|
|
sha256 cellar: :any_skip_relocation, arm64_ventura: "75e4e4a6f7adad0dfe420a1eb58c081620be97e2e721922e27e80ad448d0efa2"
|
|
sha256 cellar: :any_skip_relocation, arm64_monterey: "75e4e4a6f7adad0dfe420a1eb58c081620be97e2e721922e27e80ad448d0efa2"
|
|
sha256 cellar: :any_skip_relocation, arm64_big_sur: "75e4e4a6f7adad0dfe420a1eb58c081620be97e2e721922e27e80ad448d0efa2"
|
|
sha256 cellar: :any_skip_relocation, ventura: "1afa6368a74a957fb933ee616ac388888fbdaba83fd4870889e297cf49f84673"
|
|
sha256 cellar: :any_skip_relocation, monterey: "1afa6368a74a957fb933ee616ac388888fbdaba83fd4870889e297cf49f84673"
|
|
sha256 cellar: :any_skip_relocation, big_sur: "1afa6368a74a957fb933ee616ac388888fbdaba83fd4870889e297cf49f84673"
|
|
sha256 cellar: :any_skip_relocation, x86_64_linux: "75e4e4a6f7adad0dfe420a1eb58c081620be97e2e721922e27e80ad448d0efa2"
|
|
end
|
|
|
|
depends_on "composer" => :test
|
|
depends_on "php"
|
|
|
|
# Keg-relocation breaks the formula when it replaces `/usr/local` with a non-default prefix
|
|
on_macos do
|
|
on_intel do
|
|
pour_bottle? only_if: :default_prefix
|
|
end
|
|
end
|
|
|
|
def install
|
|
bin.install "psalm.phar" => "psalm"
|
|
end
|
|
|
|
test do
|
|
(testpath/"composer.json").write <<~EOS
|
|
{
|
|
"name": "homebrew/psalm-test",
|
|
"description": "Testing if Psalm has been installed properly.",
|
|
"type": "project",
|
|
"require": {
|
|
"php": ">=7.1.3"
|
|
},
|
|
"license": "MIT",
|
|
"autoload": {
|
|
"psr-4": {
|
|
"Homebrew\\\\PsalmTest\\\\": "src/"
|
|
}
|
|
},
|
|
"minimum-stability": "stable"
|
|
}
|
|
EOS
|
|
|
|
(testpath/"src/Email.php").write <<~EOS
|
|
<?php
|
|
declare(strict_types=1);
|
|
|
|
namespace Homebrew\\PsalmTest;
|
|
|
|
final class Email
|
|
{
|
|
private string $email;
|
|
|
|
private function __construct(string $email)
|
|
{
|
|
$this->ensureIsValidEmail($email);
|
|
|
|
$this->email = $email;
|
|
}
|
|
|
|
public static function fromString(string $email): self
|
|
{
|
|
return new self($email);
|
|
}
|
|
|
|
public function __toString(): string
|
|
{
|
|
return $this->email;
|
|
}
|
|
|
|
private function ensureIsValidEmail(string $email): void
|
|
{
|
|
if (!filter_var($email, FILTER_VALIDATE_EMAIL)) {
|
|
throw new \\InvalidArgumentException(
|
|
sprintf(
|
|
'"%s" is not a valid email address',
|
|
$email
|
|
)
|
|
);
|
|
}
|
|
}
|
|
}
|
|
EOS
|
|
|
|
system "composer", "install"
|
|
|
|
assert_match "Config file created successfully. Please re-run psalm.",
|
|
shell_output("#{bin}/psalm --init")
|
|
assert_match "No errors found!",
|
|
shell_output("#{bin}/psalm")
|
|
end
|
|
end
|