1#!/usr/bin/env php
2<?php
3
4/**
5 * Proxy PHP file generated by Composer
6 *
7 * This file includes the referenced bin path (../symfony/yaml/Resources/bin/yaml-lint) using eval to remove the shebang if present
8 *
9 * @generated
10 */
11
12$binPath = realpath(__DIR__ . "/" . '../symfony/yaml/Resources/bin/yaml-lint');
13$contents = file_get_contents($binPath);
14$contents = preg_replace('{^#!/.+\r?\n<\?(php)?}', '', $contents, 1, $replaced);
15if ($replaced) {
16    $contents = strtr($contents, array(
17        '__FILE__' => var_export($binPath, true),
18        '__DIR__' => var_export(dirname($binPath), true),
19    ));
20
21    eval($contents);
22    exit(0);
23}
24include $binPath;
25