42 lines
1.3 KiB
Ruby
42 lines
1.3 KiB
Ruby
class PhpCodeSniffer < Formula
|
|
desc "Check coding standards in PHP, JavaScript and CSS"
|
|
homepage "https://github.com/squizlabs/PHP_CodeSniffer/"
|
|
url "https://github.com/squizlabs/PHP_CodeSniffer/releases/download/3.6.0/phpcs.phar"
|
|
sha256 "3f7e099bd4b03681e12f96582ce0d76e065213ba15a3b1c22d79349e213ab169"
|
|
license "BSD-3-Clause"
|
|
revision 1
|
|
|
|
bottle do
|
|
sha256 cellar: :any_skip_relocation, all: "25ce66947a536c9a0901e068382f4e8cbb05c1515ff5258260be2869f9ae7500"
|
|
end
|
|
|
|
resource "phpcbf.phar" do
|
|
url "https://github.com/squizlabs/PHP_CodeSniffer/releases/download/3.6.0/phpcbf.phar"
|
|
sha256 "e19755c44800f955cd4d234657f90ead1ecb08c4957528fcad6424526b0c8b13"
|
|
end
|
|
|
|
def install
|
|
bin.install "phpcs.phar" => "phpcs"
|
|
resource("phpcbf.phar").stage { bin.install "phpcbf.phar" => "phpcbf" }
|
|
end
|
|
|
|
test do
|
|
(testpath/"test.php").write <<~EOS
|
|
<?php
|
|
/**
|
|
* PHP version 5
|
|
*
|
|
* @category Homebrew
|
|
* @package Homebrew_Test
|
|
* @author Homebrew <do.not@email.me>
|
|
* @license BSD Licence
|
|
* @link https://brew.sh/
|
|
*/
|
|
EOS
|
|
|
|
assert_match "FOUND 13 ERRORS", shell_output("#{bin}/phpcs --runtime-set ignore_errors_on_exit true test.php")
|
|
assert_match "13 ERRORS WERE FIXED", shell_output("#{bin}/phpcbf test.php", 1)
|
|
system "#{bin}/phpcs", "test.php"
|
|
end
|
|
end
|