Skip to content

Instantly share code, notes, and snippets.

@paragonie-scott
Created April 16, 2015 02:34
Show Gist options
  • Save paragonie-scott/ccb86b34ff0577d229bc to your computer and use it in GitHub Desktop.
Save paragonie-scott/ccb86b34ff0577d229bc to your computer and use it in GitHub Desktop.
Composer.phar
diff --git a/tmp/phr_471Znr/vendor/autoload.php b/tmp/phr_6bTGzo/vendor/autoload.php
index 46c0c70..65ab5cb 100644
--- a/tmp/phr_471Znr/vendor/autoload.php
+++ b/tmp/phr_6bTGzo/vendor/autoload.php
@@ -4,4 +4,4 @@
require_once __DIR__ . '/composer' . '/autoload_real.php';
-return ComposerAutoloaderInit0d991f5b8a84042e16cf24b4b1b48953::getLoader();
+return ComposerAutoloaderInit6ccd5a50ed5df4dc5993d5b375e26928::getLoader();
diff --git a/tmp/phr_471Znr/vendor/composer/ClassLoader.php b/tmp/phr_6bTGzo/vendor/composer/ClassLoader.php
index 2a4beca..a60ab4f 100644
--- a/tmp/phr_471Znr/vendor/composer/ClassLoader.php
+++ b/tmp/phr_6bTGzo/vendor/composer/ClassLoader.php
@@ -54,17 +54,11 @@ private $fallbackDirsPsr0 = array();
private $useIncludePath = false;
private $classMap = array();
-private $classMapAuthoritative = false;
-
public function getPrefixes()
{
-if (!empty($this->prefixesPsr0)) {
return call_user_func_array('array_merge', $this->prefixesPsr0);
}
-return array();
-}
-
public function getPrefixesPsr4()
{
return $this->prefixDirsPsr4;
@@ -150,8 +144,6 @@ $this->prefixesPsr0[$first][$prefix],
-
-
public function addPsr4($prefix, $paths, $prepend = false)
{
if (!$prefix) {
@@ -213,10 +205,7 @@ $this->prefixesPsr0[$prefix[0]][$prefix] = (array) $paths;
-
-
-public function setPsr4($prefix, $paths)
-{
+public function setPsr4($prefix, $paths) {
if (!$prefix) {
$this->fallbackDirsPsr4 = (array) $paths;
} else {
@@ -255,27 +244,6 @@ return $this->useIncludePath;
-
-public function setClassMapAuthoritative($classMapAuthoritative)
-{
-$this->classMapAuthoritative = $classMapAuthoritative;
-}
-
-
-
-
-
-
-public function isClassMapAuthoritative()
-{
-return $this->classMapAuthoritative;
-}
-
-
-
-
-
-
public function register($prepend = false)
{
spl_autoload_register(array($this, 'loadClass'), true, $prepend);
@@ -298,7 +266,7 @@ spl_autoload_unregister(array($this, 'loadClass'));
public function loadClass($class)
{
if ($file = $this->findFile($class)) {
-includeFile($file);
+include $file;
return true;
}
@@ -322,29 +290,9 @@ $class = substr($class, 1);
if (isset($this->classMap[$class])) {
return $this->classMap[$class];
}
-if ($this->classMapAuthoritative) {
-return false;
-}
-
-$file = $this->findFileWithExtension($class, '.php');
-
-
- if ($file === null && defined('HHVM_VERSION')) {
-$file = $this->findFileWithExtension($class, '.hh');
-}
-
-if ($file === null) {
-
- return $this->classMap[$class] = false;
-}
-
-return $file;
-}
-private function findFileWithExtension($class, $ext)
-{
- $logicalPathPsr4 = strtr($class, '\\', DIRECTORY_SEPARATOR) . $ext;
+ $logicalPathPsr4 = strtr($class, '\\', DIRECTORY_SEPARATOR) . '.php';
$first = $class[0];
if (isset($this->prefixLengthsPsr4[$first])) {
@@ -373,7 +321,7 @@ return $file;
. strtr(substr($logicalPathPsr4, $pos + 1), '_', DIRECTORY_SEPARATOR);
} else {
- $logicalPathPsr0 = strtr($class, '_', DIRECTORY_SEPARATOR) . $ext;
+ $logicalPathPsr0 = strtr($class, '_', DIRECTORY_SEPARATOR) . '.php';
}
if (isset($this->prefixesPsr0[$first])) {
@@ -399,15 +347,8 @@ return $file;
if ($this->useIncludePath && $file = stream_resolve_include_path($logicalPathPsr0)) {
return $file;
}
-}
-}
-
-
-
-
-function includeFile($file)
-{
-include $file;
+ return $this->classMap[$class] = false;
+}
}
diff --git a/tmp/phr_471Znr/vendor/composer/autoload_classmap.php b/tmp/phr_6bTGzo/vendor/composer/autoload_classmap.php
index dbcf780..bde4dbf 100644
--- a/tmp/phr_471Znr/vendor/composer/autoload_classmap.php
+++ b/tmp/phr_6bTGzo/vendor/composer/autoload_classmap.php
@@ -6,402 +6,4 @@ $vendorDir = dirname(dirname(__FILE__));
$baseDir = dirname($vendorDir);
return array(
-'File_Iterator' => $vendorDir . '/phpunit/php-file-iterator/File/Iterator.php',
-'File_Iterator_Facade' => $vendorDir . '/phpunit/php-file-iterator/File/Iterator/Facade.php',
-'File_Iterator_Factory' => $vendorDir . '/phpunit/php-file-iterator/File/Iterator/Factory.php',
-'PHPUnit_Exception' => $vendorDir . '/phpunit/phpunit/src/Exception.php',
-'PHPUnit_Extensions_GroupTestSuite' => $vendorDir . '/phpunit/phpunit/src/Extensions/GroupTestSuite.php',
-'PHPUnit_Extensions_PhptTestCase' => $vendorDir . '/phpunit/phpunit/src/Extensions/PhptTestCase.php',
-'PHPUnit_Extensions_PhptTestSuite' => $vendorDir . '/phpunit/phpunit/src/Extensions/PhptTestSuite.php',
-'PHPUnit_Extensions_RepeatedTest' => $vendorDir . '/phpunit/phpunit/src/Extensions/RepeatedTest.php',
-'PHPUnit_Extensions_TestDecorator' => $vendorDir . '/phpunit/phpunit/src/Extensions/TestDecorator.php',
-'PHPUnit_Extensions_TicketListener' => $vendorDir . '/phpunit/phpunit/src/Extensions/TicketListener.php',
-'PHPUnit_Framework_Assert' => $vendorDir . '/phpunit/phpunit/src/Framework/Assert.php',
-'PHPUnit_Framework_AssertionFailedError' => $vendorDir . '/phpunit/phpunit/src/Framework/AssertionFailedError.php',
-'PHPUnit_Framework_BaseTestListener' => $vendorDir . '/phpunit/phpunit/src/Framework/BaseTestListener.php',
-'PHPUnit_Framework_CodeCoverageException' => $vendorDir . '/phpunit/phpunit/src/Framework/CodeCoverageException.php',
-'PHPUnit_Framework_Constraint' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint.php',
-'PHPUnit_Framework_Constraint_And' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/And.php',
-'PHPUnit_Framework_Constraint_ArrayHasKey' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/ArrayHasKey.php',
-'PHPUnit_Framework_Constraint_Attribute' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/Attribute.php',
-'PHPUnit_Framework_Constraint_Callback' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/Callback.php',
-'PHPUnit_Framework_Constraint_ClassHasAttribute' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/ClassHasAttribute.php',
-'PHPUnit_Framework_Constraint_ClassHasStaticAttribute' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/ClassHasStaticAttribute.php',
-'PHPUnit_Framework_Constraint_Composite' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/Composite.php',
-'PHPUnit_Framework_Constraint_Count' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/Count.php',
-'PHPUnit_Framework_Constraint_Exception' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/Exception.php',
-'PHPUnit_Framework_Constraint_ExceptionCode' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/ExceptionCode.php',
-'PHPUnit_Framework_Constraint_ExceptionMessage' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/ExceptionMessage.php',
-'PHPUnit_Framework_Constraint_ExceptionMessageRegExp' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/ExceptionMessageRegExp.php',
-'PHPUnit_Framework_Constraint_FileExists' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/FileExists.php',
-'PHPUnit_Framework_Constraint_GreaterThan' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/GreaterThan.php',
-'PHPUnit_Framework_Constraint_IsAnything' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/IsAnything.php',
-'PHPUnit_Framework_Constraint_IsEmpty' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/IsEmpty.php',
-'PHPUnit_Framework_Constraint_IsEqual' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/IsEqual.php',
-'PHPUnit_Framework_Constraint_IsFalse' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/IsFalse.php',
-'PHPUnit_Framework_Constraint_IsIdentical' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/IsIdentical.php',
-'PHPUnit_Framework_Constraint_IsInstanceOf' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/IsInstanceOf.php',
-'PHPUnit_Framework_Constraint_IsJson' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/IsJson.php',
-'PHPUnit_Framework_Constraint_IsNull' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/IsNull.php',
-'PHPUnit_Framework_Constraint_IsTrue' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/IsTrue.php',
-'PHPUnit_Framework_Constraint_IsType' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/IsType.php',
-'PHPUnit_Framework_Constraint_JsonMatches' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/JsonMatches.php',
-'PHPUnit_Framework_Constraint_JsonMatches_ErrorMessageProvider' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/JsonMatches/ErrorMessageProvider.php',
-'PHPUnit_Framework_Constraint_LessThan' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/LessThan.php',
-'PHPUnit_Framework_Constraint_Not' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/Not.php',
-'PHPUnit_Framework_Constraint_ObjectHasAttribute' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/ObjectHasAttribute.php',
-'PHPUnit_Framework_Constraint_Or' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/Or.php',
-'PHPUnit_Framework_Constraint_PCREMatch' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/PCREMatch.php',
-'PHPUnit_Framework_Constraint_SameSize' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/SameSize.php',
-'PHPUnit_Framework_Constraint_StringContains' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/StringContains.php',
-'PHPUnit_Framework_Constraint_StringEndsWith' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/StringEndsWith.php',
-'PHPUnit_Framework_Constraint_StringMatches' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/StringMatches.php',
-'PHPUnit_Framework_Constraint_StringStartsWith' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/StringStartsWith.php',
-'PHPUnit_Framework_Constraint_TraversableContains' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/TraversableContains.php',
-'PHPUnit_Framework_Constraint_TraversableContainsOnly' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/TraversableContainsOnly.php',
-'PHPUnit_Framework_Constraint_Xor' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/Xor.php',
-'PHPUnit_Framework_Error' => $vendorDir . '/phpunit/phpunit/src/Framework/Error.php',
-'PHPUnit_Framework_Error_Deprecated' => $vendorDir . '/phpunit/phpunit/src/Framework/Error/Deprecated.php',
-'PHPUnit_Framework_Error_Notice' => $vendorDir . '/phpunit/phpunit/src/Framework/Error/Notice.php',
-'PHPUnit_Framework_Error_Warning' => $vendorDir . '/phpunit/phpunit/src/Framework/Error/Warning.php',
-'PHPUnit_Framework_Exception' => $vendorDir . '/phpunit/phpunit/src/Framework/Exception.php',
-'PHPUnit_Framework_ExceptionWrapper' => $vendorDir . '/phpunit/phpunit/src/Framework/ExceptionWrapper.php',
-'PHPUnit_Framework_ExpectationFailedException' => $vendorDir . '/phpunit/phpunit/src/Framework/ExpectationFailedException.php',
-'PHPUnit_Framework_IncompleteTest' => $vendorDir . '/phpunit/phpunit/src/Framework/IncompleteTest.php',
-'PHPUnit_Framework_IncompleteTestCase' => $vendorDir . '/phpunit/phpunit/src/Framework/IncompleteTestCase.php',
-'PHPUnit_Framework_IncompleteTestError' => $vendorDir . '/phpunit/phpunit/src/Framework/IncompleteTestError.php',
-'PHPUnit_Framework_InvalidCoversTargetError' => $vendorDir . '/phpunit/phpunit/src/Framework/InvalidCoversTargetError.php',
-'PHPUnit_Framework_InvalidCoversTargetException' => $vendorDir . '/phpunit/phpunit/src/Framework/InvalidCoversTargetException.php',
-'PHPUnit_Framework_MockObject_BadMethodCallException' => $vendorDir . '/phpunit/phpunit-mock-objects/src/Framework/MockObject/Exception/BadMethodCallException.php',
-'PHPUnit_Framework_MockObject_Builder_Identity' => $vendorDir . '/phpunit/phpunit-mock-objects/src/Framework/MockObject/Builder/Identity.php',
-'PHPUnit_Framework_MockObject_Builder_InvocationMocker' => $vendorDir . '/phpunit/phpunit-mock-objects/src/Framework/MockObject/Builder/InvocationMocker.php',
-'PHPUnit_Framework_MockObject_Builder_Match' => $vendorDir . '/phpunit/phpunit-mock-objects/src/Framework/MockObject/Builder/Match.php',
-'PHPUnit_Framework_MockObject_Builder_MethodNameMatch' => $vendorDir . '/phpunit/phpunit-mock-objects/src/Framework/MockObject/Builder/MethodNameMatch.php',
-'PHPUnit_Framework_MockObject_Builder_Namespace' => $vendorDir . '/phpunit/phpunit-mock-objects/src/Framework/MockObject/Builder/Namespace.php',
-'PHPUnit_Framework_MockObject_Builder_ParametersMatch' => $vendorDir . '/phpunit/phpunit-mock-objects/src/Framework/MockObject/Builder/ParametersMatch.php',
-'PHPUnit_Framework_MockObject_Builder_Stub' => $vendorDir . '/phpunit/phpunit-mock-objects/src/Framework/MockObject/Builder/Stub.php',
-'PHPUnit_Framework_MockObject_Exception' => $vendorDir . '/phpunit/phpunit-mock-objects/src/Framework/MockObject/Exception/Exception.php',
-'PHPUnit_Framework_MockObject_Generator' => $vendorDir . '/phpunit/phpunit-mock-objects/src/Framework/MockObject/Generator.php',
-'PHPUnit_Framework_MockObject_Invocation' => $vendorDir . '/phpunit/phpunit-mock-objects/src/Framework/MockObject/Invocation.php',
-'PHPUnit_Framework_MockObject_InvocationMocker' => $vendorDir . '/phpunit/phpunit-mock-objects/src/Framework/MockObject/InvocationMocker.php',
-'PHPUnit_Framework_MockObject_Invocation_Object' => $vendorDir . '/phpunit/phpunit-mock-objects/src/Framework/MockObject/Invocation/Object.php',
-'PHPUnit_Framework_MockObject_Invocation_Static' => $vendorDir . '/phpunit/phpunit-mock-objects/src/Framework/MockObject/Invocation/Static.php',
-'PHPUnit_Framework_MockObject_Invokable' => $vendorDir . '/phpunit/phpunit-mock-objects/src/Framework/MockObject/Invokable.php',
-'PHPUnit_Framework_MockObject_Matcher' => $vendorDir . '/phpunit/phpunit-mock-objects/src/Framework/MockObject/Matcher.php',
-'PHPUnit_Framework_MockObject_Matcher_AnyInvokedCount' => $vendorDir . '/phpunit/phpunit-mock-objects/src/Framework/MockObject/Matcher/AnyInvokedCount.php',
-'PHPUnit_Framework_MockObject_Matcher_AnyParameters' => $vendorDir . '/phpunit/phpunit-mock-objects/src/Framework/MockObject/Matcher/AnyParameters.php',
-'PHPUnit_Framework_MockObject_Matcher_ConsecutiveParameters' => $vendorDir . '/phpunit/phpunit-mock-objects/src/Framework/MockObject/Matcher/ConsecutiveParameters.php',
-'PHPUnit_Framework_MockObject_Matcher_Invocation' => $vendorDir . '/phpunit/phpunit-mock-objects/src/Framework/MockObject/Matcher/Invocation.php',
-'PHPUnit_Framework_MockObject_Matcher_InvokedAtIndex' => $vendorDir . '/phpunit/phpunit-mock-objects/src/Framework/MockObject/Matcher/InvokedAtIndex.php',
-'PHPUnit_Framework_MockObject_Matcher_InvokedAtLeastCount' => $vendorDir . '/phpunit/phpunit-mock-objects/src/Framework/MockObject/Matcher/InvokedAtLeastCount.php',
-'PHPUnit_Framework_MockObject_Matcher_InvokedAtLeastOnce' => $vendorDir . '/phpunit/phpunit-mock-objects/src/Framework/MockObject/Matcher/InvokedAtLeastOnce.php',
-'PHPUnit_Framework_MockObject_Matcher_InvokedAtMostCount' => $vendorDir . '/phpunit/phpunit-mock-objects/src/Framework/MockObject/Matcher/InvokedAtMostCount.php',
-'PHPUnit_Framework_MockObject_Matcher_InvokedCount' => $vendorDir . '/phpunit/phpunit-mock-objects/src/Framework/MockObject/Matcher/InvokedCount.php',
-'PHPUnit_Framework_MockObject_Matcher_InvokedRecorder' => $vendorDir . '/phpunit/phpunit-mock-objects/src/Framework/MockObject/Matcher/InvokedRecorder.php',
-'PHPUnit_Framework_MockObject_Matcher_MethodName' => $vendorDir . '/phpunit/phpunit-mock-objects/src/Framework/MockObject/Matcher/MethodName.php',
-'PHPUnit_Framework_MockObject_Matcher_Parameters' => $vendorDir . '/phpunit/phpunit-mock-objects/src/Framework/MockObject/Matcher/Parameters.php',
-'PHPUnit_Framework_MockObject_Matcher_StatelessInvocation' => $vendorDir . '/phpunit/phpunit-mock-objects/src/Framework/MockObject/Matcher/StatelessInvocation.php',
-'PHPUnit_Framework_MockObject_MockBuilder' => $vendorDir . '/phpunit/phpunit-mock-objects/src/Framework/MockObject/MockBuilder.php',
-'PHPUnit_Framework_MockObject_MockObject' => $vendorDir . '/phpunit/phpunit-mock-objects/src/Framework/MockObject/MockObject.php',
-'PHPUnit_Framework_MockObject_RuntimeException' => $vendorDir . '/phpunit/phpunit-mock-objects/src/Framework/MockObject/Exception/RuntimeException.php',
-'PHPUnit_Framework_MockObject_Stub' => $vendorDir . '/phpunit/phpunit-mock-objects/src/Framework/MockObject/Stub.php',
-'PHPUnit_Framework_MockObject_Stub_ConsecutiveCalls' => $vendorDir . '/phpunit/phpunit-mock-objects/src/Framework/MockObject/Stub/ConsecutiveCalls.php',
-'PHPUnit_Framework_MockObject_Stub_Exception' => $vendorDir . '/phpunit/phpunit-mock-objects/src/Framework/MockObject/Stub/Exception.php',
-'PHPUnit_Framework_MockObject_Stub_MatcherCollection' => $vendorDir . '/phpunit/phpunit-mock-objects/src/Framework/MockObject/Stub/MatcherCollection.php',
-'PHPUnit_Framework_MockObject_Stub_Return' => $vendorDir . '/phpunit/phpunit-mock-objects/src/Framework/MockObject/Stub/Return.php',
-'PHPUnit_Framework_MockObject_Stub_ReturnArgument' => $vendorDir . '/phpunit/phpunit-mock-objects/src/Framework/MockObject/Stub/ReturnArgument.php',
-'PHPUnit_Framework_MockObject_Stub_ReturnCallback' => $vendorDir . '/phpunit/phpunit-mock-objects/src/Framework/MockObject/Stub/ReturnCallback.php',
-'PHPUnit_Framework_MockObject_Stub_ReturnSelf' => $vendorDir . '/phpunit/phpunit-mock-objects/src/Framework/MockObject/Stub/ReturnSelf.php',
-'PHPUnit_Framework_MockObject_Stub_ReturnValueMap' => $vendorDir . '/phpunit/phpunit-mock-objects/src/Framework/MockObject/Stub/ReturnValueMap.php',
-'PHPUnit_Framework_MockObject_Verifiable' => $vendorDir . '/phpunit/phpunit-mock-objects/src/Framework/MockObject/Verifiable.php',
-'PHPUnit_Framework_OutputError' => $vendorDir . '/phpunit/phpunit/src/Framework/OutputError.php',
-'PHPUnit_Framework_RiskyTest' => $vendorDir . '/phpunit/phpunit/src/Framework/RiskyTest.php',
-'PHPUnit_Framework_RiskyTestError' => $vendorDir . '/phpunit/phpunit/src/Framework/RiskyTestError.php',
-'PHPUnit_Framework_SelfDescribing' => $vendorDir . '/phpunit/phpunit/src/Framework/SelfDescribing.php',
-'PHPUnit_Framework_SkippedTest' => $vendorDir . '/phpunit/phpunit/src/Framework/SkippedTest.php',
-'PHPUnit_Framework_SkippedTestCase' => $vendorDir . '/phpunit/phpunit/src/Framework/SkippedTestCase.php',
-'PHPUnit_Framework_SkippedTestError' => $vendorDir . '/phpunit/phpunit/src/Framework/SkippedTestError.php',
-'PHPUnit_Framework_SkippedTestSuiteError' => $vendorDir . '/phpunit/phpunit/src/Framework/SkippedTestSuiteError.php',
-'PHPUnit_Framework_SyntheticError' => $vendorDir . '/phpunit/phpunit/src/Framework/SyntheticError.php',
-'PHPUnit_Framework_Test' => $vendorDir . '/phpunit/phpunit/src/Framework/Test.php',
-'PHPUnit_Framework_TestCase' => $vendorDir . '/phpunit/phpunit/src/Framework/TestCase.php',
-'PHPUnit_Framework_TestFailure' => $vendorDir . '/phpunit/phpunit/src/Framework/TestFailure.php',
-'PHPUnit_Framework_TestListener' => $vendorDir . '/phpunit/phpunit/src/Framework/TestListener.php',
-'PHPUnit_Framework_TestResult' => $vendorDir . '/phpunit/phpunit/src/Framework/TestResult.php',
-'PHPUnit_Framework_TestSuite' => $vendorDir . '/phpunit/phpunit/src/Framework/TestSuite.php',
-'PHPUnit_Framework_TestSuite_DataProvider' => $vendorDir . '/phpunit/phpunit/src/Framework/TestSuite/DataProvider.php',
-'PHPUnit_Framework_UnintentionallyCoveredCodeError' => $vendorDir . '/phpunit/phpunit/src/Framework/UnintentionallyCoveredCodeError.php',
-'PHPUnit_Framework_Warning' => $vendorDir . '/phpunit/phpunit/src/Framework/Warning.php',
-'PHPUnit_Runner_BaseTestRunner' => $vendorDir . '/phpunit/phpunit/src/Runner/BaseTestRunner.php',
-'PHPUnit_Runner_Exception' => $vendorDir . '/phpunit/phpunit/src/Runner/Exception.php',
-'PHPUnit_Runner_Filter_Factory' => $vendorDir . '/phpunit/phpunit/src/Runner/Filter/Factory.php',
-'PHPUnit_Runner_Filter_GroupFilterIterator' => $vendorDir . '/phpunit/phpunit/src/Runner/Filter/Group.php',
-'PHPUnit_Runner_Filter_Group_Exclude' => $vendorDir . '/phpunit/phpunit/src/Runner/Filter/Group/Exclude.php',
-'PHPUnit_Runner_Filter_Group_Include' => $vendorDir . '/phpunit/phpunit/src/Runner/Filter/Group/Include.php',
-'PHPUnit_Runner_Filter_Test' => $vendorDir . '/phpunit/phpunit/src/Runner/Filter/Test.php',
-'PHPUnit_Runner_StandardTestSuiteLoader' => $vendorDir . '/phpunit/phpunit/src/Runner/StandardTestSuiteLoader.php',
-'PHPUnit_Runner_TestSuiteLoader' => $vendorDir . '/phpunit/phpunit/src/Runner/TestSuiteLoader.php',
-'PHPUnit_Runner_Version' => $vendorDir . '/phpunit/phpunit/src/Runner/Version.php',
-'PHPUnit_TextUI_Command' => $vendorDir . '/phpunit/phpunit/src/TextUI/Command.php',
-'PHPUnit_TextUI_ResultPrinter' => $vendorDir . '/phpunit/phpunit/src/TextUI/ResultPrinter.php',
-'PHPUnit_TextUI_TestRunner' => $vendorDir . '/phpunit/phpunit/src/TextUI/TestRunner.php',
-'PHPUnit_Util_Blacklist' => $vendorDir . '/phpunit/phpunit/src/Util/Blacklist.php',
-'PHPUnit_Util_Configuration' => $vendorDir . '/phpunit/phpunit/src/Util/Configuration.php',
-'PHPUnit_Util_ErrorHandler' => $vendorDir . '/phpunit/phpunit/src/Util/ErrorHandler.php',
-'PHPUnit_Util_Fileloader' => $vendorDir . '/phpunit/phpunit/src/Util/Fileloader.php',
-'PHPUnit_Util_Filesystem' => $vendorDir . '/phpunit/phpunit/src/Util/Filesystem.php',
-'PHPUnit_Util_Filter' => $vendorDir . '/phpunit/phpunit/src/Util/Filter.php',
-'PHPUnit_Util_Getopt' => $vendorDir . '/phpunit/phpunit/src/Util/Getopt.php',
-'PHPUnit_Util_GlobalState' => $vendorDir . '/phpunit/phpunit/src/Util/GlobalState.php',
-'PHPUnit_Util_InvalidArgumentHelper' => $vendorDir . '/phpunit/phpunit/src/Util/InvalidArgumentHelper.php',
-'PHPUnit_Util_Log_JSON' => $vendorDir . '/phpunit/phpunit/src/Util/Log/JSON.php',
-'PHPUnit_Util_Log_JUnit' => $vendorDir . '/phpunit/phpunit/src/Util/Log/JUnit.php',
-'PHPUnit_Util_Log_TAP' => $vendorDir . '/phpunit/phpunit/src/Util/Log/TAP.php',
-'PHPUnit_Util_PHP' => $vendorDir . '/phpunit/phpunit/src/Util/PHP.php',
-'PHPUnit_Util_PHP_Default' => $vendorDir . '/phpunit/phpunit/src/Util/PHP/Default.php',
-'PHPUnit_Util_PHP_Windows' => $vendorDir . '/phpunit/phpunit/src/Util/PHP/Windows.php',
-'PHPUnit_Util_Printer' => $vendorDir . '/phpunit/phpunit/src/Util/Printer.php',
-'PHPUnit_Util_Regex' => $vendorDir . '/phpunit/phpunit/src/Util/Regex.php',
-'PHPUnit_Util_String' => $vendorDir . '/phpunit/phpunit/src/Util/String.php',
-'PHPUnit_Util_Test' => $vendorDir . '/phpunit/phpunit/src/Util/Test.php',
-'PHPUnit_Util_TestDox_NamePrettifier' => $vendorDir . '/phpunit/phpunit/src/Util/TestDox/NamePrettifier.php',
-'PHPUnit_Util_TestDox_ResultPrinter' => $vendorDir . '/phpunit/phpunit/src/Util/TestDox/ResultPrinter.php',
-'PHPUnit_Util_TestDox_ResultPrinter_HTML' => $vendorDir . '/phpunit/phpunit/src/Util/TestDox/ResultPrinter/HTML.php',
-'PHPUnit_Util_TestDox_ResultPrinter_Text' => $vendorDir . '/phpunit/phpunit/src/Util/TestDox/ResultPrinter/Text.php',
-'PHPUnit_Util_TestSuiteIterator' => $vendorDir . '/phpunit/phpunit/src/Util/TestSuiteIterator.php',
-'PHPUnit_Util_Type' => $vendorDir . '/phpunit/phpunit/src/Util/Type.php',
-'PHPUnit_Util_XML' => $vendorDir . '/phpunit/phpunit/src/Util/XML.php',
-'PHP_CodeCoverage' => $vendorDir . '/phpunit/php-code-coverage/src/CodeCoverage.php',
-'PHP_CodeCoverage_Driver' => $vendorDir . '/phpunit/php-code-coverage/src/CodeCoverage/Driver.php',
-'PHP_CodeCoverage_Driver_HHVM' => $vendorDir . '/phpunit/php-code-coverage/src/CodeCoverage/Driver/HHVM.php',
-'PHP_CodeCoverage_Driver_Xdebug' => $vendorDir . '/phpunit/php-code-coverage/src/CodeCoverage/Driver/Xdebug.php',
-'PHP_CodeCoverage_Exception' => $vendorDir . '/phpunit/php-code-coverage/src/CodeCoverage/Exception.php',
-'PHP_CodeCoverage_Exception_UnintentionallyCoveredCode' => $vendorDir . '/phpunit/php-code-coverage/src/CodeCoverage/Exception/UnintentionallyCoveredCode.php',
-'PHP_CodeCoverage_Filter' => $vendorDir . '/phpunit/php-code-coverage/src/CodeCoverage/Filter.php',
-'PHP_CodeCoverage_Report_Clover' => $vendorDir . '/phpunit/php-code-coverage/src/CodeCoverage/Report/Clover.php',
-'PHP_CodeCoverage_Report_Crap4j' => $vendorDir . '/phpunit/php-code-coverage/src/CodeCoverage/Report/Crap4j.php',
-'PHP_CodeCoverage_Report_Factory' => $vendorDir . '/phpunit/php-code-coverage/src/CodeCoverage/Report/Factory.php',
-'PHP_CodeCoverage_Report_HTML' => $vendorDir . '/phpunit/php-code-coverage/src/CodeCoverage/Report/HTML.php',
-'PHP_CodeCoverage_Report_HTML_Renderer' => $vendorDir . '/phpunit/php-code-coverage/src/CodeCoverage/Report/HTML/Renderer.php',
-'PHP_CodeCoverage_Report_HTML_Renderer_Dashboard' => $vendorDir . '/phpunit/php-code-coverage/src/CodeCoverage/Report/HTML/Renderer/Dashboard.php',
-'PHP_CodeCoverage_Report_HTML_Renderer_Directory' => $vendorDir . '/phpunit/php-code-coverage/src/CodeCoverage/Report/HTML/Renderer/Directory.php',
-'PHP_CodeCoverage_Report_HTML_Renderer_File' => $vendorDir . '/phpunit/php-code-coverage/src/CodeCoverage/Report/HTML/Renderer/File.php',
-'PHP_CodeCoverage_Report_Node' => $vendorDir . '/phpunit/php-code-coverage/src/CodeCoverage/Report/Node.php',
-'PHP_CodeCoverage_Report_Node_Directory' => $vendorDir . '/phpunit/php-code-coverage/src/CodeCoverage/Report/Node/Directory.php',
-'PHP_CodeCoverage_Report_Node_File' => $vendorDir . '/phpunit/php-code-coverage/src/CodeCoverage/Report/Node/File.php',
-'PHP_CodeCoverage_Report_Node_Iterator' => $vendorDir . '/phpunit/php-code-coverage/src/CodeCoverage/Report/Node/Iterator.php',
-'PHP_CodeCoverage_Report_PHP' => $vendorDir . '/phpunit/php-code-coverage/src/CodeCoverage/Report/PHP.php',
-'PHP_CodeCoverage_Report_Text' => $vendorDir . '/phpunit/php-code-coverage/src/CodeCoverage/Report/Text.php',
-'PHP_CodeCoverage_Report_XML' => $vendorDir . '/phpunit/php-code-coverage/src/CodeCoverage/Report/XML.php',
-'PHP_CodeCoverage_Report_XML_Directory' => $vendorDir . '/phpunit/php-code-coverage/src/CodeCoverage/Report/XML/Directory.php',
-'PHP_CodeCoverage_Report_XML_File' => $vendorDir . '/phpunit/php-code-coverage/src/CodeCoverage/Report/XML/File.php',
-'PHP_CodeCoverage_Report_XML_File_Coverage' => $vendorDir . '/phpunit/php-code-coverage/src/CodeCoverage/Report/XML/File/Coverage.php',
-'PHP_CodeCoverage_Report_XML_File_Method' => $vendorDir . '/phpunit/php-code-coverage/src/CodeCoverage/Report/XML/File/Method.php',
-'PHP_CodeCoverage_Report_XML_File_Report' => $vendorDir . '/phpunit/php-code-coverage/src/CodeCoverage/Report/XML/File/Report.php',
-'PHP_CodeCoverage_Report_XML_File_Unit' => $vendorDir . '/phpunit/php-code-coverage/src/CodeCoverage/Report/XML/File/Unit.php',
-'PHP_CodeCoverage_Report_XML_Node' => $vendorDir . '/phpunit/php-code-coverage/src/CodeCoverage/Report/XML/Node.php',
-'PHP_CodeCoverage_Report_XML_Project' => $vendorDir . '/phpunit/php-code-coverage/src/CodeCoverage/Report/XML/Project.php',
-'PHP_CodeCoverage_Report_XML_Tests' => $vendorDir . '/phpunit/php-code-coverage/src/CodeCoverage/Report/XML/Tests.php',
-'PHP_CodeCoverage_Report_XML_Totals' => $vendorDir . '/phpunit/php-code-coverage/src/CodeCoverage/Report/XML/Totals.php',
-'PHP_CodeCoverage_Util' => $vendorDir . '/phpunit/php-code-coverage/src/CodeCoverage/Util.php',
-'PHP_CodeCoverage_Util_InvalidArgumentHelper' => $vendorDir . '/phpunit/php-code-coverage/src/CodeCoverage/Util/InvalidArgumentHelper.php',
-'PHP_Timer' => $vendorDir . '/phpunit/php-timer/PHP/Timer.php',
-'PHP_Token' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
-'PHP_TokenWithScope' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
-'PHP_TokenWithScopeAndVisibility' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
-'PHP_Token_ABSTRACT' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
-'PHP_Token_AMPERSAND' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
-'PHP_Token_AND_EQUAL' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
-'PHP_Token_ARRAY' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
-'PHP_Token_ARRAY_CAST' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
-'PHP_Token_AS' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
-'PHP_Token_AT' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
-'PHP_Token_BACKTICK' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
-'PHP_Token_BAD_CHARACTER' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
-'PHP_Token_BOOLEAN_AND' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
-'PHP_Token_BOOLEAN_OR' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
-'PHP_Token_BOOL_CAST' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
-'PHP_Token_BREAK' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
-'PHP_Token_CALLABLE' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
-'PHP_Token_CARET' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
-'PHP_Token_CASE' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
-'PHP_Token_CATCH' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
-'PHP_Token_CHARACTER' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
-'PHP_Token_CLASS' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
-'PHP_Token_CLASS_C' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
-'PHP_Token_CLASS_NAME_CONSTANT' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
-'PHP_Token_CLONE' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
-'PHP_Token_CLOSE_BRACKET' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
-'PHP_Token_CLOSE_CURLY' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
-'PHP_Token_CLOSE_SQUARE' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
-'PHP_Token_CLOSE_TAG' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
-'PHP_Token_COLON' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
-'PHP_Token_COMMA' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
-'PHP_Token_COMMENT' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
-'PHP_Token_CONCAT_EQUAL' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
-'PHP_Token_CONST' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
-'PHP_Token_CONSTANT_ENCAPSED_STRING' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
-'PHP_Token_CONTINUE' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
-'PHP_Token_CURLY_OPEN' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
-'PHP_Token_DEC' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
-'PHP_Token_DECLARE' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
-'PHP_Token_DEFAULT' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
-'PHP_Token_DIR' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
-'PHP_Token_DIV' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
-'PHP_Token_DIV_EQUAL' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
-'PHP_Token_DNUMBER' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
-'PHP_Token_DO' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
-'PHP_Token_DOC_COMMENT' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
-'PHP_Token_DOLLAR' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
-'PHP_Token_DOLLAR_OPEN_CURLY_BRACES' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
-'PHP_Token_DOT' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
-'PHP_Token_DOUBLE_ARROW' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
-'PHP_Token_DOUBLE_CAST' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
-'PHP_Token_DOUBLE_COLON' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
-'PHP_Token_DOUBLE_QUOTES' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
-'PHP_Token_ECHO' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
-'PHP_Token_ELLIPSIS' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
-'PHP_Token_ELSE' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
-'PHP_Token_ELSEIF' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
-'PHP_Token_EMPTY' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
-'PHP_Token_ENCAPSED_AND_WHITESPACE' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
-'PHP_Token_ENDDECLARE' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
-'PHP_Token_ENDFOR' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
-'PHP_Token_ENDFOREACH' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
-'PHP_Token_ENDIF' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
-'PHP_Token_ENDSWITCH' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
-'PHP_Token_ENDWHILE' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
-'PHP_Token_END_HEREDOC' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
-'PHP_Token_EQUAL' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
-'PHP_Token_EVAL' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
-'PHP_Token_EXCLAMATION_MARK' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
-'PHP_Token_EXIT' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
-'PHP_Token_EXTENDS' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
-'PHP_Token_FILE' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
-'PHP_Token_FINAL' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
-'PHP_Token_FINALLY' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
-'PHP_Token_FOR' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
-'PHP_Token_FOREACH' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
-'PHP_Token_FUNCTION' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
-'PHP_Token_FUNC_C' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
-'PHP_Token_GLOBAL' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
-'PHP_Token_GOTO' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
-'PHP_Token_GT' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
-'PHP_Token_HALT_COMPILER' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
-'PHP_Token_IF' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
-'PHP_Token_IMPLEMENTS' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
-'PHP_Token_INC' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
-'PHP_Token_INCLUDE' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
-'PHP_Token_INCLUDE_ONCE' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
-'PHP_Token_INLINE_HTML' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
-'PHP_Token_INSTANCEOF' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
-'PHP_Token_INSTEADOF' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
-'PHP_Token_INTERFACE' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
-'PHP_Token_INT_CAST' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
-'PHP_Token_ISSET' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
-'PHP_Token_IS_EQUAL' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
-'PHP_Token_IS_GREATER_OR_EQUAL' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
-'PHP_Token_IS_IDENTICAL' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
-'PHP_Token_IS_NOT_EQUAL' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
-'PHP_Token_IS_NOT_IDENTICAL' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
-'PHP_Token_IS_SMALLER_OR_EQUAL' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
-'PHP_Token_Includes' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
-'PHP_Token_LINE' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
-'PHP_Token_LIST' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
-'PHP_Token_LNUMBER' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
-'PHP_Token_LOGICAL_AND' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
-'PHP_Token_LOGICAL_OR' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
-'PHP_Token_LOGICAL_XOR' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
-'PHP_Token_LT' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
-'PHP_Token_METHOD_C' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
-'PHP_Token_MINUS' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
-'PHP_Token_MINUS_EQUAL' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
-'PHP_Token_MOD_EQUAL' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
-'PHP_Token_MULT' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
-'PHP_Token_MUL_EQUAL' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
-'PHP_Token_NAMESPACE' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
-'PHP_Token_NEW' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
-'PHP_Token_NS_C' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
-'PHP_Token_NS_SEPARATOR' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
-'PHP_Token_NUM_STRING' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
-'PHP_Token_OBJECT_CAST' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
-'PHP_Token_OBJECT_OPERATOR' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
-'PHP_Token_OPEN_BRACKET' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
-'PHP_Token_OPEN_CURLY' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
-'PHP_Token_OPEN_SQUARE' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
-'PHP_Token_OPEN_TAG' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
-'PHP_Token_OPEN_TAG_WITH_ECHO' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
-'PHP_Token_OR_EQUAL' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
-'PHP_Token_PAAMAYIM_NEKUDOTAYIM' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
-'PHP_Token_PERCENT' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
-'PHP_Token_PIPE' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
-'PHP_Token_PLUS' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
-'PHP_Token_PLUS_EQUAL' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
-'PHP_Token_POW' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
-'PHP_Token_POW_EQUAL' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
-'PHP_Token_PRINT' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
-'PHP_Token_PRIVATE' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
-'PHP_Token_PROTECTED' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
-'PHP_Token_PUBLIC' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
-'PHP_Token_QUESTION_MARK' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
-'PHP_Token_REQUIRE' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
-'PHP_Token_REQUIRE_ONCE' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
-'PHP_Token_RETURN' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
-'PHP_Token_SEMICOLON' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
-'PHP_Token_SL' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
-'PHP_Token_SL_EQUAL' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
-'PHP_Token_SR' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
-'PHP_Token_SR_EQUAL' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
-'PHP_Token_START_HEREDOC' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
-'PHP_Token_STATIC' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
-'PHP_Token_STRING' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
-'PHP_Token_STRING_CAST' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
-'PHP_Token_STRING_VARNAME' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
-'PHP_Token_SWITCH' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
-'PHP_Token_Stream' => $vendorDir . '/phpunit/php-token-stream/src/Token/Stream.php',
-'PHP_Token_Stream_CachingFactory' => $vendorDir . '/phpunit/php-token-stream/src/Token/Stream/CachingFactory.php',
-'PHP_Token_THROW' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
-'PHP_Token_TILDE' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
-'PHP_Token_TRAIT' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
-'PHP_Token_TRAIT_C' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
-'PHP_Token_TRY' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
-'PHP_Token_UNSET' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
-'PHP_Token_UNSET_CAST' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
-'PHP_Token_USE' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
-'PHP_Token_VAR' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
-'PHP_Token_VARIABLE' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
-'PHP_Token_WHILE' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
-'PHP_Token_WHITESPACE' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
-'PHP_Token_XOR_EQUAL' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
-'PHP_Token_YIELD' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
-'SebastianBergmann\\Comparator\\ArrayComparator' => $vendorDir . '/sebastian/comparator/src/ArrayComparator.php',
-'SebastianBergmann\\Comparator\\Comparator' => $vendorDir . '/sebastian/comparator/src/Comparator.php',
-'SebastianBergmann\\Comparator\\ComparisonFailure' => $vendorDir . '/sebastian/comparator/src/ComparisonFailure.php',
-'SebastianBergmann\\Comparator\\DOMNodeComparator' => $vendorDir . '/sebastian/comparator/src/DOMNodeComparator.php',
-'SebastianBergmann\\Comparator\\DateTimeComparator' => $vendorDir . '/sebastian/comparator/src/DateTimeComparator.php',
-'SebastianBergmann\\Comparator\\DoubleComparator' => $vendorDir . '/sebastian/comparator/src/DoubleComparator.php',
-'SebastianBergmann\\Comparator\\ExceptionComparator' => $vendorDir . '/sebastian/comparator/src/ExceptionComparator.php',
-'SebastianBergmann\\Comparator\\Factory' => $vendorDir . '/sebastian/comparator/src/Factory.php',
-'SebastianBergmann\\Comparator\\MockObjectComparator' => $vendorDir . '/sebastian/comparator/src/MockObjectComparator.php',
-'SebastianBergmann\\Comparator\\NumericComparator' => $vendorDir . '/sebastian/comparator/src/NumericComparator.php',
-'SebastianBergmann\\Comparator\\ObjectComparator' => $vendorDir . '/sebastian/comparator/src/ObjectComparator.php',
-'SebastianBergmann\\Comparator\\ResourceComparator' => $vendorDir . '/sebastian/comparator/src/ResourceComparator.php',
-'SebastianBergmann\\Comparator\\ScalarComparator' => $vendorDir . '/sebastian/comparator/src/ScalarComparator.php',
-'SebastianBergmann\\Comparator\\SplObjectStorageComparator' => $vendorDir . '/sebastian/comparator/src/SplObjectStorageComparator.php',
-'SebastianBergmann\\Comparator\\TypeComparator' => $vendorDir . '/sebastian/comparator/src/TypeComparator.php',
-'SebastianBergmann\\Diff\\Chunk' => $vendorDir . '/sebastian/diff/src/Chunk.php',
-'SebastianBergmann\\Diff\\Diff' => $vendorDir . '/sebastian/diff/src/Diff.php',
-'SebastianBergmann\\Diff\\Differ' => $vendorDir . '/sebastian/diff/src/Differ.php',
-'SebastianBergmann\\Diff\\LCS\\LongestCommonSubsequence' => $vendorDir . '/sebastian/diff/src/LCS/LongestCommonSubsequence.php',
-'SebastianBergmann\\Diff\\LCS\\MemoryEfficientImplementation' => $vendorDir . '/sebastian/diff/src/LCS/MemoryEfficientLongestCommonSubsequenceImplementation.php',
-'SebastianBergmann\\Diff\\LCS\\TimeEfficientImplementation' => $vendorDir . '/sebastian/diff/src/LCS/TimeEfficientLongestCommonSubsequenceImplementation.php',
-'SebastianBergmann\\Diff\\Line' => $vendorDir . '/sebastian/diff/src/Line.php',
-'SebastianBergmann\\Diff\\Parser' => $vendorDir . '/sebastian/diff/src/Parser.php',
-'SebastianBergmann\\Environment\\Console' => $vendorDir . '/sebastian/environment/src/Console.php',
-'SebastianBergmann\\Environment\\Runtime' => $vendorDir . '/sebastian/environment/src/Runtime.php',
-'SebastianBergmann\\Exporter\\Context' => $vendorDir . '/sebastian/exporter/src/Context.php',
-'SebastianBergmann\\Exporter\\Exception' => $vendorDir . '/sebastian/exporter/src/Exception.php',
-'SebastianBergmann\\Exporter\\Exporter' => $vendorDir . '/sebastian/exporter/src/Exporter.php',
-'SebastianBergmann\\Version' => $vendorDir . '/sebastian/version/src/Version.php',
-'Text_Template' => $vendorDir . '/phpunit/php-text-template/Text/Template.php',
);
diff --git a/tmp/phr_471Znr/vendor/composer/autoload_namespaces.php b/tmp/phr_6bTGzo/vendor/composer/autoload_namespaces.php
index 37016b4..2825727 100644
--- a/tmp/phr_471Znr/vendor/composer/autoload_namespaces.php
+++ b/tmp/phr_6bTGzo/vendor/composer/autoload_namespaces.php
@@ -6,12 +6,9 @@ $vendorDir = dirname(dirname(__FILE__));
$baseDir = dirname($vendorDir);
return array(
-'Symfony\\Component\\Yaml\\' => array($vendorDir . '/symfony/yaml'),
'Symfony\\Component\\Process\\' => array($vendorDir . '/symfony/process'),
'Symfony\\Component\\Finder\\' => array($vendorDir . '/symfony/finder'),
'Symfony\\Component\\Console\\' => array($vendorDir . '/symfony/console'),
'JsonSchema' => array($vendorDir . '/justinrainbow/json-schema/src'),
-'Doctrine\\Instantiator\\' => array($vendorDir . '/doctrine/instantiator/src'),
-'Composer\\Test' => array($baseDir . '/tests'),
'Composer' => array($baseDir . '/src'),
);
diff --git a/tmp/phr_471Znr/vendor/composer/autoload_real.php b/tmp/phr_6bTGzo/vendor/composer/autoload_real.php
index 6b8f3be..5bf1980 100644
--- a/tmp/phr_471Znr/vendor/composer/autoload_real.php
+++ b/tmp/phr_6bTGzo/vendor/composer/autoload_real.php
@@ -2,7 +2,7 @@
-class ComposerAutoloaderInit0d991f5b8a84042e16cf24b4b1b48953
+class ComposerAutoloaderInit6ccd5a50ed5df4dc5993d5b375e26928
{
private static $loader;
@@ -19,13 +19,12 @@ if (null !== self::$loader) {
return self::$loader;
}
-spl_autoload_register(array('ComposerAutoloaderInit0d991f5b8a84042e16cf24b4b1b48953', 'loadClassLoader'), true, true);
+spl_autoload_register(array('ComposerAutoloaderInit6ccd5a50ed5df4dc5993d5b375e26928', 'loadClassLoader'), true, true);
self::$loader = $loader = new \Composer\Autoload\ClassLoader();
-spl_autoload_unregister(array('ComposerAutoloaderInit0d991f5b8a84042e16cf24b4b1b48953', 'loadClassLoader'));
+spl_autoload_unregister(array('ComposerAutoloaderInit6ccd5a50ed5df4dc5993d5b375e26928', 'loadClassLoader'));
-$includePaths = require __DIR__ . '/include_paths.php';
-array_push($includePaths, get_include_path());
-set_include_path(join(PATH_SEPARATOR, $includePaths));
+$vendorDir = dirname(__DIR__);
+$baseDir = dirname($vendorDir);
$map = require __DIR__ . '/autoload_namespaces.php';
foreach ($map as $namespace => $path) {
@@ -47,8 +46,3 @@ $loader->register(true);
return $loader;
}
}
-
-function composerRequire0d991f5b8a84042e16cf24b4b1b48953($file)
-{
-require $file;
-}
diff --git a/tmp/phr_471Znr/vendor/composer/include_paths.php b/tmp/phr_6bTGzo/vendor/composer/include_paths.php
index 054bfc0..ca0f9f1 100644
--- a/tmp/phr_471Znr/vendor/composer/include_paths.php
+++ b/tmp/phr_6bTGzo/vendor/composer/include_paths.php
@@ -6,9 +6,11 @@ $vendorDir = dirname(dirname(__FILE__));
$baseDir = dirname($vendorDir);
return array(
-$vendorDir . '/phpunit/php-text-template',
+$vendorDir . '/phpunit/phpunit-mock-objects',
$vendorDir . '/phpunit/php-timer',
+$vendorDir . '/phpunit/php-token-stream',
$vendorDir . '/phpunit/php-file-iterator',
+$vendorDir . '/phpunit/php-text-template',
$vendorDir . '/phpunit/php-code-coverage',
$vendorDir . '/phpunit/phpunit',
$vendorDir . '/symfony/yaml',
diff --git a/tmp/phr_471Znr/vendor/symfony/yaml/Symfony/Component/Yaml/Dumper.php b/tmp/phr_471Znr/vendor/symfony/yaml/Symfony/Component/Yaml/Dumper.php
deleted file mode 100644
index 4dfc9a2..0000000
--- a/tmp/phr_471Znr/vendor/symfony/yaml/Symfony/Component/Yaml/Dumper.php
+++ /dev/null
@@ -1,73 +0,0 @@
-<?php
-
-
-
-
-
-
-
-
-
-
-namespace Symfony\Component\Yaml;
-
-
-
-
-
-
-class Dumper
-{
-
-
-
-
-
-protected $indentation = 4;
-
-
-
-
-
-
-public function setIndentation($num)
-{
-$this->indentation = (int) $num;
-}
-
-
-
-
-
-
-
-
-
-
-
-
-public function dump($input, $inline = 0, $indent = 0, $exceptionOnInvalidType = false, $objectSupport = false)
-{
-$output = '';
-$prefix = $indent ? str_repeat(' ', $indent) : '';
-
-if ($inline <= 0 || !is_array($input) || empty($input)) {
-$output .= $prefix.Inline::dump($input, $exceptionOnInvalidType, $objectSupport);
-} else {
-$isAHash = array_keys($input) !== range(0, count($input) - 1);
-
-foreach ($input as $key => $value) {
-$willBeInlined = $inline - 1 <= 0 || !is_array($value) || empty($value);
-
-$output .= sprintf('%s%s%s%s',
-$prefix,
-$isAHash ? Inline::dump($key, $exceptionOnInvalidType, $objectSupport).':' : '-',
-$willBeInlined ? ' ' : "\n",
-$this->dump($value, $inline - 1, $willBeInlined ? 0 : $indent + $this->indentation, $exceptionOnInvalidType, $objectSupport)
-).($willBeInlined ? "\n" : '');
-}
-}
-
-return $output;
-}
-}
diff --git a/tmp/phr_471Znr/vendor/symfony/yaml/Symfony/Component/Yaml/Escaper.php b/tmp/phr_471Znr/vendor/symfony/yaml/Symfony/Component/Yaml/Escaper.php
deleted file mode 100644
index ab7a181..0000000
--- a/tmp/phr_471Znr/vendor/symfony/yaml/Symfony/Component/Yaml/Escaper.php
+++ /dev/null
@@ -1,89 +0,0 @@
-<?php
-
-
-
-
-
-
-
-
-
-
-namespace Symfony\Component\Yaml;
-
-
-
-
-
-
-
-class Escaper
-{
-
- const REGEX_CHARACTER_TO_ESCAPE = "[\\x00-\\x1f]|\xc2\x85|\xc2\xa0|\xe2\x80\xa8|\xe2\x80\xa9";
-
-
-
-
-
- private static $escapees = array('\\', '\\\\', '\\"', '"',
-"\x00", "\x01", "\x02", "\x03", "\x04", "\x05", "\x06", "\x07",
-"\x08", "\x09", "\x0a", "\x0b", "\x0c", "\x0d", "\x0e", "\x0f",
-"\x10", "\x11", "\x12", "\x13", "\x14", "\x15", "\x16", "\x17",
-"\x18", "\x19", "\x1a", "\x1b", "\x1c", "\x1d", "\x1e", "\x1f",
-"\xc2\x85", "\xc2\xa0", "\xe2\x80\xa8", "\xe2\x80\xa9",);
-private static $escaped = array('\\\\', '\\"', '\\\\', '\\"',
-"\\0", "\\x01", "\\x02", "\\x03", "\\x04", "\\x05", "\\x06", "\\a",
-"\\b", "\\t", "\\n", "\\v", "\\f", "\\r", "\\x0e", "\\x0f",
-"\\x10", "\\x11", "\\x12", "\\x13", "\\x14", "\\x15", "\\x16", "\\x17",
-"\\x18", "\\x19", "\\x1a", "\\e", "\\x1c", "\\x1d", "\\x1e", "\\x1f",
-"\\N", "\\_", "\\L", "\\P",);
-
-
-
-
-
-
-
-
-public static function requiresDoubleQuoting($value)
-{
-return preg_match('/'.self::REGEX_CHARACTER_TO_ESCAPE.'/u', $value);
-}
-
-
-
-
-
-
-
-
-public static function escapeWithDoubleQuotes($value)
-{
-return sprintf('"%s"', str_replace(self::$escapees, self::$escaped, $value));
-}
-
-
-
-
-
-
-
-
-public static function requiresSingleQuoting($value)
-{
-return preg_match('/[ \s \' " \: \{ \} \[ \] , & \* \# \?] | \A[ \- ? | < > = ! % @ ` ]/x', $value);
-}
-
-
-
-
-
-
-
-
-public static function escapeWithSingleQuotes($value)
-{
-return sprintf("'%s'", str_replace('\'', '\'\'', $value));
-}
-}
diff --git a/tmp/phr_471Znr/vendor/symfony/yaml/Symfony/Component/Yaml/Exception/DumpException.php b/tmp/phr_471Znr/vendor/symfony/yaml/Symfony/Component/Yaml/Exception/DumpException.php
deleted file mode 100644
index 54cb6ed..0000000
--- a/tmp/phr_471Znr/vendor/symfony/yaml/Symfony/Component/Yaml/Exception/DumpException.php
+++ /dev/null
@@ -1,23 +0,0 @@
-<?php
-
-
-
-
-
-
-
-
-
-
-namespace Symfony\Component\Yaml\Exception;
-
-
-
-
-
-
-
-
-class DumpException extends RuntimeException
-{
-}
diff --git a/tmp/phr_471Znr/vendor/symfony/yaml/Symfony/Component/Yaml/Exception/ExceptionInterface.php b/tmp/phr_471Znr/vendor/symfony/yaml/Symfony/Component/Yaml/Exception/ExceptionInterface.php
deleted file mode 100644
index 5849601..0000000
--- a/tmp/phr_471Znr/vendor/symfony/yaml/Symfony/Component/Yaml/Exception/ExceptionInterface.php
+++ /dev/null
@@ -1,23 +0,0 @@
-<?php
-
-
-
-
-
-
-
-
-
-
-namespace Symfony\Component\Yaml\Exception;
-
-
-
-
-
-
-
-
-interface ExceptionInterface
-{
-}
diff --git a/tmp/phr_471Znr/vendor/symfony/yaml/Symfony/Component/Yaml/Exception/ParseException.php b/tmp/phr_471Znr/vendor/symfony/yaml/Symfony/Component/Yaml/Exception/ParseException.php
deleted file mode 100644
index 100e745..0000000
--- a/tmp/phr_471Znr/vendor/symfony/yaml/Symfony/Component/Yaml/Exception/ParseException.php
+++ /dev/null
@@ -1,148 +0,0 @@
-<?php
-
-
-
-
-
-
-
-
-
-
-namespace Symfony\Component\Yaml\Exception;
-
-
-
-
-
-
-
-
-class ParseException extends RuntimeException
-{
-private $parsedFile;
-private $parsedLine;
-private $snippet;
-private $rawMessage;
-
-
-
-
-
-
-
-
-
-
-public function __construct($message, $parsedLine = -1, $snippet = null, $parsedFile = null, \Exception $previous = null)
-{
-$this->parsedFile = $parsedFile;
-$this->parsedLine = $parsedLine;
-$this->snippet = $snippet;
-$this->rawMessage = $message;
-
-$this->updateRepr();
-
-parent::__construct($this->message, 0, $previous);
-}
-
-
-
-
-
-
-public function getSnippet()
-{
-return $this->snippet;
-}
-
-
-
-
-
-
-public function setSnippet($snippet)
-{
-$this->snippet = $snippet;
-
-$this->updateRepr();
-}
-
-
-
-
-
-
-
-
-public function getParsedFile()
-{
-return $this->parsedFile;
-}
-
-
-
-
-
-
-public function setParsedFile($parsedFile)
-{
-$this->parsedFile = $parsedFile;
-
-$this->updateRepr();
-}
-
-
-
-
-
-
-public function getParsedLine()
-{
-return $this->parsedLine;
-}
-
-
-
-
-
-
-public function setParsedLine($parsedLine)
-{
-$this->parsedLine = $parsedLine;
-
-$this->updateRepr();
-}
-
-private function updateRepr()
-{
-$this->message = $this->rawMessage;
-
-$dot = false;
-if ('.' === substr($this->message, -1)) {
-$this->message = substr($this->message, 0, -1);
-$dot = true;
-}
-
-if (null !== $this->parsedFile) {
-if (PHP_VERSION_ID >= 50400) {
-$jsonOptions = JSON_UNESCAPED_SLASHES | JSON_UNESCAPED_UNICODE;
-} else {
-$jsonOptions = 0;
-}
-$this->message .= sprintf(' in %s', json_encode($this->parsedFile, $jsonOptions));
-}
-
-if ($this->parsedLine >= 0) {
-$this->message .= sprintf(' at line %d', $this->parsedLine);
-}
-
-if ($this->snippet) {
-$this->message .= sprintf(' (near "%s")', $this->snippet);
-}
-
-if ($dot) {
-$this->message .= '.';
-}
-}
-}
diff --git a/tmp/phr_471Znr/vendor/symfony/yaml/Symfony/Component/Yaml/Exception/RuntimeException.php b/tmp/phr_471Znr/vendor/symfony/yaml/Symfony/Component/Yaml/Exception/RuntimeException.php
deleted file mode 100644
index 78a9f2e..0000000
--- a/tmp/phr_471Znr/vendor/symfony/yaml/Symfony/Component/Yaml/Exception/RuntimeException.php
+++ /dev/null
@@ -1,23 +0,0 @@
-<?php
-
-
-
-
-
-
-
-
-
-
-namespace Symfony\Component\Yaml\Exception;
-
-
-
-
-
-
-
-
-class RuntimeException extends \RuntimeException implements ExceptionInterface
-{
-}
diff --git a/tmp/phr_471Znr/vendor/symfony/yaml/Symfony/Component/Yaml/Inline.php b/tmp/phr_471Znr/vendor/symfony/yaml/Symfony/Component/Yaml/Inline.php
deleted file mode 100644
index 7ea0b7f..0000000
--- a/tmp/phr_471Znr/vendor/symfony/yaml/Symfony/Component/Yaml/Inline.php
+++ /dev/null
@@ -1,535 +0,0 @@
-<?php
-
-
-
-
-
-
-
-
-
-
-namespace Symfony\Component\Yaml;
-
-use Symfony\Component\Yaml\Exception\ParseException;
-use Symfony\Component\Yaml\Exception\DumpException;
-
-
-
-
-
-
-class Inline
-{
-const REGEX_QUOTED_STRING = '(?:"([^"\\\\]*(?:\\\\.[^"\\\\]*)*)"|\'([^\']*(?:\'\'[^\']*)*)\')';
-
-private static $exceptionOnInvalidType = false;
-private static $objectSupport = false;
-private static $objectForMap = false;
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-public static function parse($value, $exceptionOnInvalidType = false, $objectSupport = false, $objectForMap = false, $references = array())
-{
-self::$exceptionOnInvalidType = $exceptionOnInvalidType;
-self::$objectSupport = $objectSupport;
-self::$objectForMap = $objectForMap;
-
-$value = trim($value);
-
-if (0 == strlen($value)) {
-return '';
-}
-
-if (function_exists('mb_internal_encoding') && ((int) ini_get('mbstring.func_overload')) & 2) {
-$mbEncoding = mb_internal_encoding();
-mb_internal_encoding('ASCII');
-}
-
-$i = 0;
-switch ($value[0]) {
-case '[':
-$result = self::parseSequence($value, $i, $references);
-++$i;
-break;
-case '{':
-$result = self::parseMapping($value, $i, $references);
-++$i;
-break;
-default:
-$result = self::parseScalar($value, null, array('"', "'"), $i, true, $references);
-}
-
-
- if (preg_replace('/\s+#.*$/A', '', substr($value, $i))) {
-throw new ParseException(sprintf('Unexpected characters near "%s".', substr($value, $i)));
-}
-
-if (isset($mbEncoding)) {
-mb_internal_encoding($mbEncoding);
-}
-
-return $result;
-}
-
-
-
-
-
-
-
-
-
-
-
-
-public static function dump($value, $exceptionOnInvalidType = false, $objectSupport = false)
-{
-switch (true) {
-case is_resource($value):
-if ($exceptionOnInvalidType) {
-throw new DumpException(sprintf('Unable to dump PHP resources in a YAML file ("%s").', get_resource_type($value)));
-}
-
-return 'null';
-case is_object($value):
-if ($objectSupport) {
-return '!!php/object:'.serialize($value);
-}
-
-if ($exceptionOnInvalidType) {
-throw new DumpException('Object support when dumping a YAML file has been disabled.');
-}
-
-return 'null';
-case is_array($value):
-return self::dumpArray($value, $exceptionOnInvalidType, $objectSupport);
-case null === $value:
-return 'null';
-case true === $value:
-return 'true';
-case false === $value:
-return 'false';
-case ctype_digit($value):
-return is_string($value) ? "'$value'" : (int) $value;
-case is_numeric($value):
-$locale = setlocale(LC_NUMERIC, 0);
-if (false !== $locale) {
-setlocale(LC_NUMERIC, 'C');
-}
-if (is_float($value)) {
-$repr = strval($value);
-if (is_infinite($value)) {
-$repr = str_ireplace('INF', '.Inf', $repr);
-} elseif (floor($value) == $value && $repr == $value) {
-
- $repr = '!!float '.$repr;
-}
-} else {
-$repr = is_string($value) ? "'$value'" : strval($value);
-}
-if (false !== $locale) {
-setlocale(LC_NUMERIC, $locale);
-}
-
-return $repr;
-case Escaper::requiresDoubleQuoting($value):
-return Escaper::escapeWithDoubleQuotes($value);
-case Escaper::requiresSingleQuoting($value):
-return Escaper::escapeWithSingleQuotes($value);
-case '' == $value:
-return "''";
-case preg_match(self::getTimestampRegex(), $value):
-case in_array(strtolower($value), array('null', '~', 'true', 'false')):
-return "'$value'";
-default:
-return $value;
-}
-}
-
-
-
-
-
-
-
-
-
-
-private static function dumpArray($value, $exceptionOnInvalidType, $objectSupport)
-{
-
- $keys = array_keys($value);
-if ((1 == count($keys) && '0' == $keys[0])
-|| (count($keys) > 1 && array_reduce($keys, function ($v, $w) { return (int) $v + $w; }, 0) == count($keys) * (count($keys) - 1) / 2)
-) {
-$output = array();
-foreach ($value as $val) {
-$output[] = self::dump($val, $exceptionOnInvalidType, $objectSupport);
-}
-
-return sprintf('[%s]', implode(', ', $output));
-}
-
-
- $output = array();
-foreach ($value as $key => $val) {
-$output[] = sprintf('%s: %s', self::dump($key, $exceptionOnInvalidType, $objectSupport), self::dump($val, $exceptionOnInvalidType, $objectSupport));
-}
-
-return sprintf('{ %s }', implode(', ', $output));
-}
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-public static function parseScalar($scalar, $delimiters = null, $stringDelimiters = array('"', "'"), &$i = 0, $evaluate = true, $references = array())
-{
-if (in_array($scalar[$i], $stringDelimiters)) {
-
- $output = self::parseQuotedScalar($scalar, $i);
-
-if (null !== $delimiters) {
-$tmp = ltrim(substr($scalar, $i), ' ');
-if (!in_array($tmp[0], $delimiters)) {
-throw new ParseException(sprintf('Unexpected characters (%s).', substr($scalar, $i)));
-}
-}
-} else {
-
- if (!$delimiters) {
-$output = substr($scalar, $i);
-$i += strlen($output);
-
-
- if (false !== $strpos = strpos($output, ' #')) {
-$output = rtrim(substr($output, 0, $strpos));
-}
-} elseif (preg_match('/^(.+?)('.implode('|', $delimiters).')/', substr($scalar, $i), $match)) {
-$output = $match[1];
-$i += strlen($output);
-} else {
-throw new ParseException(sprintf('Malformed inline YAML string (%s).', $scalar));
-}
-
-if ($evaluate) {
-$output = self::evaluateScalar($output, $references);
-}
-}
-
-return $output;
-}
-
-
-
-
-
-
-
-
-
-
-
-private static function parseQuotedScalar($scalar, &$i)
-{
-if (!preg_match('/'.self::REGEX_QUOTED_STRING.'/Au', substr($scalar, $i), $match)) {
-throw new ParseException(sprintf('Malformed inline YAML string (%s).', substr($scalar, $i)));
-}
-
-$output = substr($match[0], 1, strlen($match[0]) - 2);
-
-$unescaper = new Unescaper();
-if ('"' == $scalar[$i]) {
-$output = $unescaper->unescapeDoubleQuotedString($output);
-} else {
-$output = $unescaper->unescapeSingleQuotedString($output);
-}
-
-$i += strlen($match[0]);
-
-return $output;
-}
-
-
-
-
-
-
-
-
-
-
-
-
-private static function parseSequence($sequence, &$i = 0, $references = array())
-{
-$output = array();
-$len = strlen($sequence);
-$i += 1;
-
-
- while ($i < $len) {
-switch ($sequence[$i]) {
-case '[':
-
- $output[] = self::parseSequence($sequence, $i, $references);
-break;
-case '{':
-
- $output[] = self::parseMapping($sequence, $i, $references);
-break;
-case ']':
-return $output;
-case ',':
-case ' ':
-break;
-default:
-$isQuoted = in_array($sequence[$i], array('"', "'"));
-$value = self::parseScalar($sequence, array(',', ']'), array('"', "'"), $i, true, $references);
-
-
- if (!is_array($value) && !$isQuoted && false !== strpos($value, ': ')) {
-
- try {
-$pos = 0;
-$value = self::parseMapping('{'.$value.'}', $pos, $references);
-} catch (\InvalidArgumentException $e) {
-
- }
-}
-
-$output[] = $value;
-
---$i;
-}
-
-++$i;
-}
-
-throw new ParseException(sprintf('Malformed inline YAML string %s', $sequence));
-}
-
-
-
-
-
-
-
-
-
-
-
-
-private static function parseMapping($mapping, &$i = 0, $references = array())
-{
-$output = array();
-$len = strlen($mapping);
-$i += 1;
-
-
- while ($i < $len) {
-switch ($mapping[$i]) {
-case ' ':
-case ',':
-++$i;
-continue 2;
-case '}':
-if (self::$objectForMap) {
-return (object) $output;
-}
-
-return $output;
-}
-
-
- $key = self::parseScalar($mapping, array(':', ' '), array('"', "'"), $i, false);
-
-
- $done = false;
-
-while ($i < $len) {
-switch ($mapping[$i]) {
-case '[':
-
- $value = self::parseSequence($mapping, $i, $references);
-
-
-
- if (!isset($output[$key])) {
-$output[$key] = $value;
-}
-$done = true;
-break;
-case '{':
-
- $value = self::parseMapping($mapping, $i, $references);
-
-
-
- if (!isset($output[$key])) {
-$output[$key] = $value;
-}
-$done = true;
-break;
-case ':':
-case ' ':
-break;
-default:
-$value = self::parseScalar($mapping, array(',', '}'), array('"', "'"), $i, true, $references);
-
-
-
- if (!isset($output[$key])) {
-$output[$key] = $value;
-}
-$done = true;
---$i;
-}
-
-++$i;
-
-if ($done) {
-continue 2;
-}
-}
-}
-
-throw new ParseException(sprintf('Malformed inline YAML string %s', $mapping));
-}
-
-
-
-
-
-
-
-
-
-
-
-private static function evaluateScalar($scalar, $references = array())
-{
-$scalar = trim($scalar);
-$scalarLower = strtolower($scalar);
-
-if (0 === strpos($scalar, '*')) {
-if (false !== $pos = strpos($scalar, '#')) {
-$value = substr($scalar, 1, $pos - 2);
-} else {
-$value = substr($scalar, 1);
-}
-
-
- if (false === $value || '' === $value) {
-throw new ParseException('A reference must contain at least one character.');
-}
-
-if (!array_key_exists($value, $references)) {
-throw new ParseException(sprintf('Reference "%s" does not exist.', $value));
-}
-
-return $references[$value];
-}
-
-switch (true) {
-case 'null' === $scalarLower:
-case '' === $scalar:
-case '~' === $scalar:
-return;
-case 'true' === $scalarLower:
-return true;
-case 'false' === $scalarLower:
-return false;
-
- case $scalar[0] === '+' || $scalar[0] === '-' || $scalar[0] === '.' || $scalar[0] === '!' || is_numeric($scalar[0]):
-switch (true) {
-case 0 === strpos($scalar, '!str'):
-return (string) substr($scalar, 5);
-case 0 === strpos($scalar, '! '):
-return intval(self::parseScalar(substr($scalar, 2)));
-case 0 === strpos($scalar, '!!php/object:'):
-if (self::$objectSupport) {
-return unserialize(substr($scalar, 13));
-}
-
-if (self::$exceptionOnInvalidType) {
-throw new ParseException('Object support when parsing a YAML file has been disabled.');
-}
-
-return;
-case 0 === strpos($scalar, '!!float '):
-return (float) substr($scalar, 8);
-case ctype_digit($scalar):
-$raw = $scalar;
-$cast = intval($scalar);
-
-return '0' == $scalar[0] ? octdec($scalar) : (((string) $raw == (string) $cast) ? $cast : $raw);
-case '-' === $scalar[0] && ctype_digit(substr($scalar, 1)):
-$raw = $scalar;
-$cast = intval($scalar);
-
-return '0' == $scalar[1] ? octdec($scalar) : (((string) $raw == (string) $cast) ? $cast : $raw);
-case is_numeric($scalar):
-return '0x' == $scalar[0].$scalar[1] ? hexdec($scalar) : floatval($scalar);
-case '.inf' === $scalarLower:
-case '.nan' === $scalarLower:
-return -log(0);
-case '-.inf' === $scalarLower:
-return log(0);
-case preg_match('/^(-|\+)?[0-9,]+(\.[0-9]+)?$/', $scalar):
-return floatval(str_replace(',', '', $scalar));
-case preg_match(self::getTimestampRegex(), $scalar):
-return strtotime($scalar);
-}
-default:
-return (string) $scalar;
-}
-}
-
-
-
-
-
-
-
-
-private static function getTimestampRegex()
-{
-return <<<EOF
- ~^
- (?P<year>[0-9][0-9][0-9][0-9])
- -(?P<month>[0-9][0-9]?)
- -(?P<day>[0-9][0-9]?)
- (?:(?:[Tt]|[ \t]+)
- (?P<hour>[0-9][0-9]?)
- :(?P<minute>[0-9][0-9])
- :(?P<second>[0-9][0-9])
- (?:\.(?P<fraction>[0-9]*))?
- (?:[ \t]*(?P<tz>Z|(?P<tz_sign>[-+])(?P<tz_hour>[0-9][0-9]?)
- (?::(?P<tz_minute>[0-9][0-9]))?))?)?
- $~x
-EOF;
-}
-}
diff --git a/tmp/phr_471Znr/vendor/symfony/yaml/Symfony/Component/Yaml/Parser.php b/tmp/phr_471Znr/vendor/symfony/yaml/Symfony/Component/Yaml/Parser.php
deleted file mode 100644
index 5d5fdb4..0000000
--- a/tmp/phr_471Znr/vendor/symfony/yaml/Symfony/Component/Yaml/Parser.php
+++ /dev/null
@@ -1,692 +0,0 @@
-<?php
-
-
-
-
-
-
-
-
-
-
-namespace Symfony\Component\Yaml;
-
-use Symfony\Component\Yaml\Exception\ParseException;
-
-
-
-
-
-
-class Parser
-{
-const FOLDED_SCALAR_PATTERN = '(?P<separator>\||>)(?P<modifiers>\+|\-|\d+|\+\d+|\-\d+|\d+\+|\d+\-)?(?P<comments> +#.*)?';
-
-private $offset = 0;
-private $lines = array();
-private $currentLineNb = -1;
-private $currentLine = '';
-private $refs = array();
-
-
-
-
-
-
-public function __construct($offset = 0)
-{
-$this->offset = $offset;
-}
-
-
-
-
-
-
-
-
-
-
-
-
-
-public function parse($value, $exceptionOnInvalidType = false, $objectSupport = false, $objectForMap = false)
-{
-$this->currentLineNb = -1;
-$this->currentLine = '';
-$this->lines = explode("\n", $this->cleanup($value));
-
-if (!preg_match('//u', $value)) {
-throw new ParseException('The YAML value does not appear to be valid UTF-8.');
-}
-
-if (function_exists('mb_internal_encoding') && ((int) ini_get('mbstring.func_overload')) & 2) {
-$mbEncoding = mb_internal_encoding();
-mb_internal_encoding('UTF-8');
-}
-
-$data = array();
-$context = null;
-$allowOverwrite = false;
-while ($this->moveToNextLine()) {
-if ($this->isCurrentLineEmpty()) {
-continue;
-}
-
-
- if ("\t" === $this->currentLine[0]) {
-throw new ParseException('A YAML file cannot contain tabs as indentation.', $this->getRealCurrentLineNb() + 1, $this->currentLine);
-}
-
-$isRef = $mergeNode = false;
-if (preg_match('#^\-((?P<leadspaces>\s+)(?P<value>.+?))?\s*$#u', $this->currentLine, $values)) {
-if ($context && 'mapping' == $context) {
-throw new ParseException('You cannot define a sequence item when in a mapping');
-}
-$context = 'sequence';
-
-if (isset($values['value']) && preg_match('#^&(?P<ref>[^ ]+) *(?P<value>.*)#u', $values['value'], $matches)) {
-$isRef = $matches['ref'];
-$values['value'] = $matches['value'];
-}
-
-
- if (!isset($values['value']) || '' == trim($values['value'], ' ') || 0 === strpos(ltrim($values['value'], ' '), '#')) {
-$c = $this->getRealCurrentLineNb() + 1;
-$parser = new Parser($c);
-$parser->refs = & $this->refs;
-$data[] = $parser->parse($this->getNextEmbedBlock(null, true), $exceptionOnInvalidType, $objectSupport, $objectForMap);
-} else {
-if (isset($values['leadspaces'])
-&& ' ' == $values['leadspaces']
-&& preg_match('#^(?P<key>'.Inline::REGEX_QUOTED_STRING.'|[^ \'"\{\[].*?) *\:(\s+(?P<value>.+?))?\s*$#u', $values['value'], $matches)
-) {
-
- $c = $this->getRealCurrentLineNb();
-$parser = new Parser($c);
-$parser->refs = & $this->refs;
-
-$block = $values['value'];
-if ($this->isNextLineIndented()) {
-$block .= "\n".$this->getNextEmbedBlock($this->getCurrentLineIndentation() + 2);
-}
-
-$data[] = $parser->parse($block, $exceptionOnInvalidType, $objectSupport, $objectForMap);
-} else {
-$data[] = $this->parseValue($values['value'], $exceptionOnInvalidType, $objectSupport, $objectForMap);
-}
-}
-} elseif (preg_match('#^(?P<key>'.Inline::REGEX_QUOTED_STRING.'|[^ \'"\[\{].*?) *\:(\s+(?P<value>.+?))?\s*$#u', $this->currentLine, $values) && (false === strpos($values['key'],' #') || in_array($values['key'][0], array('"', "'")))) {
-if ($context && 'sequence' == $context) {
-throw new ParseException('You cannot define a mapping item when in a sequence');
-}
-$context = 'mapping';
-
-
- Inline::parse(null, $exceptionOnInvalidType, $objectSupport, $objectForMap, $this->refs);
-try {
-$key = Inline::parseScalar($values['key']);
-} catch (ParseException $e) {
-$e->setParsedLine($this->getRealCurrentLineNb() + 1);
-$e->setSnippet($this->currentLine);
-
-throw $e;
-}
-
-if ('<<' === $key) {
-$mergeNode = true;
-$allowOverwrite = true;
-if (isset($values['value']) && 0 === strpos($values['value'], '*')) {
-$refName = substr($values['value'], 1);
-if (!array_key_exists($refName, $this->refs)) {
-throw new ParseException(sprintf('Reference "%s" does not exist.', $refName), $this->getRealCurrentLineNb() + 1, $this->currentLine);
-}
-
-$refValue = $this->refs[$refName];
-
-if (!is_array($refValue)) {
-throw new ParseException('YAML merge keys used with a scalar value instead of an array.', $this->getRealCurrentLineNb() + 1, $this->currentLine);
-}
-
-foreach ($refValue as $key => $value) {
-if (!isset($data[$key])) {
-$data[$key] = $value;
-}
-}
-} else {
-if (isset($values['value']) && $values['value'] !== '') {
-$value = $values['value'];
-} else {
-$value = $this->getNextEmbedBlock();
-}
-$c = $this->getRealCurrentLineNb() + 1;
-$parser = new Parser($c);
-$parser->refs = & $this->refs;
-$parsed = $parser->parse($value, $exceptionOnInvalidType, $objectSupport, $objectForMap);
-
-if (!is_array($parsed)) {
-throw new ParseException('YAML merge keys used with a scalar value instead of an array.', $this->getRealCurrentLineNb() + 1, $this->currentLine);
-}
-
-if (isset($parsed[0])) {
-
-
-
- foreach ($parsed as $parsedItem) {
-if (!is_array($parsedItem)) {
-throw new ParseException('Merge items must be arrays.', $this->getRealCurrentLineNb() + 1, $parsedItem);
-}
-
-foreach ($parsedItem as $key => $value) {
-if (!isset($data[$key])) {
-$data[$key] = $value;
-}
-}
-}
-} else {
-
-
- foreach ($parsed as $key => $value) {
-if (!isset($data[$key])) {
-$data[$key] = $value;
-}
-}
-}
-}
-} elseif (isset($values['value']) && preg_match('#^&(?P<ref>[^ ]+) *(?P<value>.*)#u', $values['value'], $matches)) {
-$isRef = $matches['ref'];
-$values['value'] = $matches['value'];
-}
-
-if ($mergeNode) {
-
- } elseif (!isset($values['value']) || '' == trim($values['value'], ' ') || 0 === strpos(ltrim($values['value'], ' '), '#')) {
-
-
- if (!$this->isNextLineIndented() && !$this->isNextLineUnIndentedCollection()) {
-
-
- if ($allowOverwrite || !isset($data[$key])) {
-$data[$key] = null;
-}
-} else {
-$c = $this->getRealCurrentLineNb() + 1;
-$parser = new Parser($c);
-$parser->refs = & $this->refs;
-$value = $parser->parse($this->getNextEmbedBlock(), $exceptionOnInvalidType, $objectSupport, $objectForMap);
-
-
- if ($allowOverwrite || !isset($data[$key])) {
-$data[$key] = $value;
-}
-}
-} else {
-$value = $this->parseValue($values['value'], $exceptionOnInvalidType, $objectSupport, $objectForMap);
-
-
- if ($allowOverwrite || !isset($data[$key])) {
-$data[$key] = $value;
-}
-}
-} else {
-
- if ('---' === $this->currentLine) {
-throw new ParseException('Multiple documents are not supported.');
-}
-
-
- $lineCount = count($this->lines);
-if (1 === $lineCount || (2 === $lineCount && empty($this->lines[1]))) {
-try {
-$value = Inline::parse($this->lines[0], $exceptionOnInvalidType, $objectSupport, $objectForMap, $this->refs);
-} catch (ParseException $e) {
-$e->setParsedLine($this->getRealCurrentLineNb() + 1);
-$e->setSnippet($this->currentLine);
-
-throw $e;
-}
-
-if (is_array($value)) {
-$first = reset($value);
-if (is_string($first) && 0 === strpos($first, '*')) {
-$data = array();
-foreach ($value as $alias) {
-$data[] = $this->refs[substr($alias, 1)];
-}
-$value = $data;
-}
-}
-
-if (isset($mbEncoding)) {
-mb_internal_encoding($mbEncoding);
-}
-
-return $value;
-}
-
-switch (preg_last_error()) {
-case PREG_INTERNAL_ERROR:
-$error = 'Internal PCRE error.';
-break;
-case PREG_BACKTRACK_LIMIT_ERROR:
-$error = 'pcre.backtrack_limit reached.';
-break;
-case PREG_RECURSION_LIMIT_ERROR:
-$error = 'pcre.recursion_limit reached.';
-break;
-case PREG_BAD_UTF8_ERROR:
-$error = 'Malformed UTF-8 data.';
-break;
-case PREG_BAD_UTF8_OFFSET_ERROR:
-$error = 'Offset doesn\'t correspond to the begin of a valid UTF-8 code point.';
-break;
-default:
-$error = 'Unable to parse.';
-}
-
-throw new ParseException($error, $this->getRealCurrentLineNb() + 1, $this->currentLine);
-}
-
-if ($isRef) {
-$this->refs[$isRef] = end($data);
-}
-}
-
-if (isset($mbEncoding)) {
-mb_internal_encoding($mbEncoding);
-}
-
-return empty($data) ? null : $data;
-}
-
-
-
-
-
-
-private function getRealCurrentLineNb()
-{
-return $this->currentLineNb + $this->offset;
-}
-
-
-
-
-
-
-private function getCurrentLineIndentation()
-{
-return strlen($this->currentLine) - strlen(ltrim($this->currentLine, ' '));
-}
-
-
-
-
-
-
-
-
-
-
-
-private function getNextEmbedBlock($indentation = null, $inSequence = false)
-{
-$oldLineIndentation = $this->getCurrentLineIndentation();
-
-if (!$this->moveToNextLine()) {
-return;
-}
-
-if (null === $indentation) {
-$newIndent = $this->getCurrentLineIndentation();
-
-$unindentedEmbedBlock = $this->isStringUnIndentedCollectionItem($this->currentLine);
-
-if (!$this->isCurrentLineEmpty() && 0 === $newIndent && !$unindentedEmbedBlock) {
-throw new ParseException('Indentation problem.', $this->getRealCurrentLineNb() + 1, $this->currentLine);
-}
-} else {
-$newIndent = $indentation;
-}
-
-$data = array(substr($this->currentLine, $newIndent));
-
-if ($inSequence && $oldLineIndentation === $newIndent && '-' === $data[0][0]) {
-
-
- $this->moveToPreviousLine();
-
-return;
-}
-
-$isItUnindentedCollection = $this->isStringUnIndentedCollectionItem($this->currentLine);
-
-
- $removeCommentsPattern = '~'.self::FOLDED_SCALAR_PATTERN.'$~';
-$removeComments = !preg_match($removeCommentsPattern, $this->currentLine);
-
-while ($this->moveToNextLine()) {
-$indent = $this->getCurrentLineIndentation();
-
-if ($indent === $newIndent) {
-$removeComments = !preg_match($removeCommentsPattern, $this->currentLine);
-}
-
-if ($isItUnindentedCollection && !$this->isStringUnIndentedCollectionItem($this->currentLine)) {
-$this->moveToPreviousLine();
-break;
-}
-
-if ($this->isCurrentLineBlank()) {
-$data[] = substr($this->currentLine, $newIndent);
-continue;
-}
-
-if ($removeComments && $this->isCurrentLineComment()) {
-continue;
-}
-
-if ($indent >= $newIndent) {
-$data[] = substr($this->currentLine, $newIndent);
-} elseif (0 == $indent) {
-$this->moveToPreviousLine();
-
-break;
-} else {
-throw new ParseException('Indentation problem.', $this->getRealCurrentLineNb() + 1, $this->currentLine);
-}
-}
-
-return implode("\n", $data);
-}
-
-
-
-
-
-
-private function moveToNextLine()
-{
-if ($this->currentLineNb >= count($this->lines) - 1) {
-return false;
-}
-
-$this->currentLine = $this->lines[++$this->currentLineNb];
-
-return true;
-}
-
-
-
-
-private function moveToPreviousLine()
-{
-$this->currentLine = $this->lines[--$this->currentLineNb];
-}
-
-
-
-
-
-
-
-
-
-
-
-
-
-private function parseValue($value, $exceptionOnInvalidType, $objectSupport, $objectForMap)
-{
-if (0 === strpos($value, '*')) {
-if (false !== $pos = strpos($value, '#')) {
-$value = substr($value, 1, $pos - 2);
-} else {
-$value = substr($value, 1);
-}
-
-if (!array_key_exists($value, $this->refs)) {
-throw new ParseException(sprintf('Reference "%s" does not exist.', $value), $this->currentLine);
-}
-
-return $this->refs[$value];
-}
-
-if (preg_match('/^'.self::FOLDED_SCALAR_PATTERN.'$/', $value, $matches)) {
-$modifiers = isset($matches['modifiers']) ? $matches['modifiers'] : '';
-
-return $this->parseFoldedScalar($matches['separator'], preg_replace('#\d+#', '', $modifiers), intval(abs($modifiers)));
-}
-
-try {
-return Inline::parse($value, $exceptionOnInvalidType, $objectSupport, $objectForMap, $this->refs);
-} catch (ParseException $e) {
-$e->setParsedLine($this->getRealCurrentLineNb() + 1);
-$e->setSnippet($this->currentLine);
-
-throw $e;
-}
-}
-
-
-
-
-
-
-
-
-
-
-private function parseFoldedScalar($separator, $indicator = '', $indentation = 0)
-{
-$notEOF = $this->moveToNextLine();
-if (!$notEOF) {
-return '';
-}
-
-$isCurrentLineBlank = $this->isCurrentLineBlank();
-$text = '';
-
-
- while ($notEOF && $isCurrentLineBlank) {
-
- if ($notEOF = $this->moveToNextLine()) {
-$text .= "\n";
-$isCurrentLineBlank = $this->isCurrentLineBlank();
-}
-}
-
-
- if (0 === $indentation) {
-if (preg_match('/^ +/', $this->currentLine, $matches)) {
-$indentation = strlen($matches[0]);
-}
-}
-
-if ($indentation > 0) {
-$pattern = sprintf('/^ {%d}(.*)$/', $indentation);
-
-while (
-$notEOF && (
-$isCurrentLineBlank ||
-preg_match($pattern, $this->currentLine, $matches)
-)
-) {
-if ($isCurrentLineBlank) {
-$text .= substr($this->currentLine, $indentation);
-} else {
-$text .= $matches[1];
-}
-
-
- if ($notEOF = $this->moveToNextLine()) {
-$text .= "\n";
-$isCurrentLineBlank = $this->isCurrentLineBlank();
-}
-}
-} elseif ($notEOF) {
-$text .= "\n";
-}
-
-if ($notEOF) {
-$this->moveToPreviousLine();
-}
-
-
- if ('>' === $separator) {
-preg_match('/(\n*)$/', $text, $matches);
-$text = preg_replace('/(?<!\n)\n(?!\n)/', ' ', rtrim($text, "\n"));
-$text .= $matches[1];
-}
-
-
- if ('' === $indicator) {
-$text = preg_replace('/\n+$/s', "\n", $text);
-} elseif ('-' === $indicator) {
-$text = preg_replace('/\n+$/s', '', $text);
-}
-
-return $text;
-}
-
-
-
-
-
-
-private function isNextLineIndented()
-{
-$currentIndentation = $this->getCurrentLineIndentation();
-$EOF = !$this->moveToNextLine();
-
-while (!$EOF && $this->isCurrentLineEmpty()) {
-$EOF = !$this->moveToNextLine();
-}
-
-if ($EOF) {
-return false;
-}
-
-$ret = false;
-if ($this->getCurrentLineIndentation() > $currentIndentation) {
-$ret = true;
-}
-
-$this->moveToPreviousLine();
-
-return $ret;
-}
-
-
-
-
-
-
-private function isCurrentLineEmpty()
-{
-return $this->isCurrentLineBlank() || $this->isCurrentLineComment();
-}
-
-
-
-
-
-
-private function isCurrentLineBlank()
-{
-return '' == trim($this->currentLine, ' ');
-}
-
-
-
-
-
-
-private function isCurrentLineComment()
-{
-
- $ltrimmedLine = ltrim($this->currentLine, ' ');
-
-return $ltrimmedLine[0] === '#';
-}
-
-
-
-
-
-
-
-
-private function cleanup($value)
-{
-$value = str_replace(array("\r\n", "\r"), "\n", $value);
-
-
- $count = 0;
-$value = preg_replace('#^\%YAML[: ][\d\.]+.*\n#su', '', $value, -1, $count);
-$this->offset += $count;
-
-
- $trimmedValue = preg_replace('#^(\#.*?\n)+#s', '', $value, -1, $count);
-if ($count == 1) {
-
- $this->offset += substr_count($value, "\n") - substr_count($trimmedValue, "\n");
-$value = $trimmedValue;
-}
-
-
- $trimmedValue = preg_replace('#^\-\-\-.*?\n#s', '', $value, -1, $count);
-if ($count == 1) {
-
- $this->offset += substr_count($value, "\n") - substr_count($trimmedValue, "\n");
-$value = $trimmedValue;
-
-
- $value = preg_replace('#\.\.\.\s*$#s', '', $value);
-}
-
-return $value;
-}
-
-
-
-
-
-
-private function isNextLineUnIndentedCollection()
-{
-$currentIndentation = $this->getCurrentLineIndentation();
-$notEOF = $this->moveToNextLine();
-
-while ($notEOF && $this->isCurrentLineEmpty()) {
-$notEOF = $this->moveToNextLine();
-}
-
-if (false === $notEOF) {
-return false;
-}
-
-$ret = false;
-if (
-$this->getCurrentLineIndentation() == $currentIndentation
-&&
-$this->isStringUnIndentedCollectionItem($this->currentLine)
-) {
-$ret = true;
-}
-
-$this->moveToPreviousLine();
-
-return $ret;
-}
-
-
-
-
-
-
-private function isStringUnIndentedCollectionItem()
-{
-return (0 === strpos($this->currentLine, '- '));
-}
-}
diff --git a/tmp/phr_471Znr/vendor/symfony/yaml/Symfony/Component/Yaml/Unescaper.php b/tmp/phr_471Znr/vendor/symfony/yaml/Symfony/Component/Yaml/Unescaper.php
deleted file mode 100644
index 441bca3..0000000
--- a/tmp/phr_471Znr/vendor/symfony/yaml/Symfony/Component/Yaml/Unescaper.php
+++ /dev/null
@@ -1,141 +0,0 @@
-<?php
-
-
-
-
-
-
-
-
-
-
-namespace Symfony\Component\Yaml;
-
-
-
-
-
-
-
-class Unescaper
-{
-
-
-
- const ENCODING = 'UTF-8';
-
-
-
- const REGEX_ESCAPED_CHARACTER = "\\\\([0abt\tnvfre \\\"\\/\\\\N_LP]|x[0-9a-fA-F]{2}|u[0-9a-fA-F]{4}|U[0-9a-fA-F]{8})";
-
-
-
-
-
-
-
-
-public function unescapeSingleQuotedString($value)
-{
-return str_replace('\'\'', '\'', $value);
-}
-
-
-
-
-
-
-
-
-public function unescapeDoubleQuotedString($value)
-{
-$self = $this;
-$callback = function ($match) use ($self) {
-return $self->unescapeCharacter($match[0]);
-};
-
-
- return preg_replace_callback('/'.self::REGEX_ESCAPED_CHARACTER.'/u', $callback, $value);
-}
-
-
-
-
-
-
-
-
-public function unescapeCharacter($value)
-{
-switch ($value{1}) {
-case '0':
-return "\x0";
-case 'a':
-return "\x7";
-case 'b':
-return "\x8";
-case 't':
-return "\t";
-case "\t":
-return "\t";
-case 'n':
-return "\n";
-case 'v':
-return "\xB";
-case 'f':
-return "\xC";
-case 'r':
-return "\r";
-case 'e':
-return "\x1B";
-case ' ':
-return ' ';
-case '"':
-return '"';
-case '/':
-return '/';
-case '\\':
-return '\\';
-case 'N':
-
- return "\xC2\x85";
-case '_':
-
- return "\xC2\xA0";
-case 'L':
-
- return "\xE2\x80\xA8";
-case 'P':
-
- return "\xE2\x80\xA9";
-case 'x':
-return self::utf8chr(hexdec(substr($value, 2, 2)));
-case 'u':
-return self::utf8chr(hexdec(substr($value, 2, 4)));
-case 'U':
-return self::utf8chr(hexdec(substr($value, 2, 8)));
-}
-}
-
-
-
-
-
-
-
-
-private static function utf8chr($c)
-{
-if (0x80 > $c %= 0x200000) {
-return chr($c);
-}
-if (0x800 > $c) {
-return chr(0xC0 | $c >> 6).chr(0x80 | $c & 0x3F);
-}
-if (0x10000 > $c) {
-return chr(0xE0 | $c >> 12).chr(0x80 | $c >> 6 & 0x3F).chr(0x80 | $c & 0x3F);
-}
-
-return chr(0xF0 | $c >> 18).chr(0x80 | $c >> 12 & 0x3F).chr(0x80 | $c >> 6 & 0x3F).chr(0x80 | $c & 0x3F);
-}
-}
diff --git a/tmp/phr_471Znr/vendor/symfony/yaml/Symfony/Component/Yaml/Yaml.php b/tmp/phr_471Znr/vendor/symfony/yaml/Symfony/Component/Yaml/Yaml.php
deleted file mode 100644
index 4e40cd9..0000000
--- a/tmp/phr_471Znr/vendor/symfony/yaml/Symfony/Component/Yaml/Yaml.php
+++ /dev/null
@@ -1,100 +0,0 @@
-<?php
-
-
-
-
-
-
-
-
-
-
-namespace Symfony\Component\Yaml;
-
-use Symfony\Component\Yaml\Exception\ParseException;
-
-
-
-
-
-
-
-
-class Yaml
-{
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-public static function parse($input, $exceptionOnInvalidType = false, $objectSupport = false)
-{
-
- $file = '';
-if (strpos($input, "\n") === false && is_file($input)) {
-if (false === is_readable($input)) {
-throw new ParseException(sprintf('Unable to parse "%s" as the file is not readable.', $input));
-}
-
-$file = $input;
-$input = file_get_contents($file);
-}
-
-$yaml = new Parser();
-
-try {
-return $yaml->parse($input, $exceptionOnInvalidType, $objectSupport);
-} catch (ParseException $e) {
-if ($file) {
-$e->setParsedFile($file);
-}
-
-throw $e;
-}
-}
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-public static function dump($array, $inline = 2, $indent = 4, $exceptionOnInvalidType = false, $objectSupport = false)
-{
-$yaml = new Dumper();
-$yaml->setIndentation($indent);
-
-return $yaml->dump($array, $inline, 0, $exceptionOnInvalidType, $objectSupport);
-}
-}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment