60 lines
1.3 KiB
Ruby
60 lines
1.3 KiB
Ruby
|
class Composer < Formula
|
||
|
desc "Dependency Manager for PHP"
|
||
|
homepage "https://getcomposer.org/"
|
||
|
url "https://github.com/composer/composer/releases/download/1.6.3/composer.phar"
|
||
|
sha256 "52cb7bbbaee720471e3b34c8ae6db53a38f0b759c06078a80080db739e4dcab6"
|
||
|
|
||
|
bottle :unneeded
|
||
|
|
||
|
def install
|
||
|
bin.install "composer.phar" => "composer"
|
||
|
end
|
||
|
|
||
|
test do
|
||
|
(testpath/"composer.json").write <<~EOS
|
||
|
{
|
||
|
"name": "homebrew/test",
|
||
|
"authors": [
|
||
|
{
|
||
|
"name": "Homebrew"
|
||
|
}
|
||
|
],
|
||
|
"require": {
|
||
|
"php": ">=5.3.4"
|
||
|
},
|
||
|
"autoload": {
|
||
|
"psr-0": {
|
||
|
"HelloWorld": "src/"
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
EOS
|
||
|
|
||
|
(testpath/"src/HelloWorld/greetings.php").write <<~EOS
|
||
|
<?php
|
||
|
|
||
|
namespace HelloWorld;
|
||
|
|
||
|
class Greetings {
|
||
|
public static function sayHelloWorld() {
|
||
|
return 'HelloHomebrew';
|
||
|
}
|
||
|
}
|
||
|
EOS
|
||
|
|
||
|
(testpath/"tests/test.php").write <<~EOS
|
||
|
<?php
|
||
|
|
||
|
// Autoload files using the Composer autoloader.
|
||
|
require_once __DIR__ . '/../vendor/autoload.php';
|
||
|
|
||
|
use HelloWorld\\Greetings;
|
||
|
|
||
|
echo Greetings::sayHelloWorld();
|
||
|
EOS
|
||
|
|
||
|
system "#{bin}/composer", "install"
|
||
|
assert_match /^HelloHomebrew$/, shell_output("php tests/test.php")
|
||
|
end
|
||
|
end
|