mirror of
https://github.com/composer/composer
synced 2025-05-08 16:17:37 +00:00
12 lines
194 B
PHP
Executable file
12 lines
194 B
PHP
Executable file
#!/usr/bin/env php
|
|
<?php
|
|
|
|
require __DIR__.'/../src/bootstrap.php';
|
|
|
|
use Composer\Compiler;
|
|
|
|
error_reporting(-1);
|
|
ini_set('display_errors', 1);
|
|
|
|
$compiler = new Compiler();
|
|
$compiler->compile();
|