├── vendor ├── psr │ └── log │ │ ├── .gitignore │ │ └── Psr │ │ └── Log │ │ ├── InvalidArgumentException.php │ │ ├── LoggerAwareInterface.php │ │ └── LogLevel.php ├── symfony │ ├── finder │ │ ├── Tests │ │ │ └── Fixtures │ │ │ │ ├── one │ │ │ │ ├── a │ │ │ │ └── b │ │ │ │ │ ├── c.neon │ │ │ │ │ └── d.neon │ │ │ │ ├── A │ │ │ │ ├── B │ │ │ │ │ ├── ab.dat │ │ │ │ │ └── C │ │ │ │ │ │ └── abc.dat │ │ │ │ └── a.dat │ │ │ │ ├── copy │ │ │ │ └── A │ │ │ │ │ ├── B │ │ │ │ │ ├── ab.dat.copy │ │ │ │ │ └── C │ │ │ │ │ │ └── abc.dat.copy │ │ │ │ │ └── a.dat.copy │ │ │ │ ├── with space │ │ │ │ └── foo.txt │ │ │ │ ├── r+e.gex[c]a(r)s │ │ │ │ └── dir │ │ │ │ │ └── bar.dat │ │ │ │ ├── dolor.txt │ │ │ │ ├── ipsum.txt │ │ │ │ └── lorem.txt │ │ └── .gitignore │ ├── config │ │ ├── Tests │ │ │ └── Fixtures │ │ │ │ ├── foo.xml │ │ │ │ ├── Again │ │ │ │ └── foo.xml │ │ │ │ ├── Util │ │ │ │ ├── invalid.xml │ │ │ │ ├── invalid_schema.xml │ │ │ │ ├── valid.xml │ │ │ │ ├── document_type.xml │ │ │ │ └── schema.xsd │ │ │ │ └── BarNode.php │ │ └── .gitignore │ ├── console │ │ ├── Tests │ │ │ └── Fixtures │ │ │ │ ├── input_definition_1.md │ │ │ │ ├── input_definition_1.txt │ │ │ │ ├── application_gethelp.txt │ │ │ │ ├── application_run4.txt │ │ │ │ ├── input_argument_1.txt │ │ │ │ ├── input_option_1.txt │ │ │ │ ├── input_argument_2.txt │ │ │ │ ├── input_definition_1.json │ │ │ │ ├── input_definition_2.txt │ │ │ │ ├── input_option_3.txt │ │ │ │ ├── input_definition_3.txt │ │ │ │ ├── input_option_6.txt │ │ │ │ ├── input_argument_4.txt │ │ │ │ ├── Style │ │ │ │ └── SymfonyStyle │ │ │ │ │ ├── output │ │ │ │ │ ├── output_3.txt │ │ │ │ │ ├── output_7.txt │ │ │ │ │ ├── interactive_output_1.txt │ │ │ │ │ ├── output_17.txt │ │ │ │ │ ├── output_0.txt │ │ │ │ │ ├── output_1.txt │ │ │ │ │ ├── output_6.txt │ │ │ │ │ ├── output_11.txt │ │ │ │ │ └── output_9.txt │ │ │ │ │ └── command │ │ │ │ │ ├── command_0.php │ │ │ │ │ └── command_3.php │ │ │ │ ├── input_argument_3.txt │ │ │ │ ├── input_option_2.txt │ │ │ │ ├── input_option_4.txt │ │ │ │ ├── input_option_5.txt │ │ │ │ ├── input_argument_with_style.txt │ │ │ │ ├── input_definition_1.xml │ │ │ │ ├── command_1.txt │ │ │ │ ├── input_option_with_style.txt │ │ │ │ ├── application_renderexception_doublewidth1.txt │ │ │ │ ├── input_argument_1.md │ │ │ │ ├── input_definition_4.txt │ │ │ │ ├── input_argument_1.json │ │ │ │ ├── input_argument_2.md │ │ │ │ ├── input_argument_3.md │ │ │ │ ├── input_argument_2.json │ │ │ │ ├── input_argument_4.md │ │ │ │ ├── input_argument_1.xml │ │ │ │ ├── input_argument_with_style.md │ │ │ │ ├── input_definition_2.md │ │ │ │ ├── Foo5Command.php │ │ │ │ ├── input_argument_3.json │ │ │ │ ├── input_argument_4.json │ │ │ │ ├── application_renderexception_escapeslines.txt │ │ │ │ ├── input_option_1.xml │ │ │ │ ├── input_argument_2.xml │ │ │ │ ├── input_argument_with_style.json │ │ │ │ ├── command_1.md │ │ │ │ ├── input_option_1.md │ │ │ │ ├── input_argument_4.xml │ │ │ │ ├── application_renderexception_doublewidth2.txt │ │ │ │ ├── input_option_with_style_array.txt │ │ │ │ ├── input_option_3.md │ │ │ │ ├── application_renderexception_doublewidth1decorated.txt │ │ │ │ ├── input_option_4.md │ │ │ │ ├── BarBucCommand.php │ │ │ │ ├── input_option_1.json │ │ │ │ ├── input_option_2.md │ │ │ │ ├── input_option_3.xml │ │ │ │ ├── input_option_4.xml │ │ │ │ ├── Foo4Command.php │ │ │ │ ├── input_definition_3.md │ │ │ │ ├── input_option_5.md │ │ │ │ ├── input_option_6.md │ │ │ │ ├── input_option_3.json │ │ │ │ ├── input_option_4.json │ │ │ │ ├── input_option_5.xml │ │ │ │ ├── input_option_with_style.md │ │ │ │ ├── input_argument_3.xml │ │ │ │ ├── input_option_5.json │ │ │ │ ├── input_option_2.json │ │ │ │ ├── input_option_6.json │ │ │ │ ├── input_option_6.xml │ │ │ │ ├── Foo6Command.php │ │ │ │ ├── input_option_with_style.json │ │ │ │ ├── input_argument_with_style.xml │ │ │ │ ├── input_option_2.xml │ │ │ │ ├── input_definition_2.xml │ │ │ │ ├── input_option_with_style_array.md │ │ │ │ ├── input_definition_3.xml │ │ │ │ ├── application_renderexception1.txt │ │ │ │ ├── input_definition_2.json │ │ │ │ ├── input_option_with_style.xml │ │ │ │ ├── command_1.json │ │ │ │ ├── input_option_with_style_array.json │ │ │ │ ├── application_renderexception2.txt │ │ │ │ ├── application_renderexception4.txt │ │ │ │ ├── input_option_with_style_array.xml │ │ │ │ ├── command_1.xml │ │ │ │ ├── command_mbstring.txt │ │ │ │ ├── input_definition_3.json │ │ │ │ ├── command_2.txt │ │ │ │ ├── input_definition_4.md │ │ │ │ ├── input_definition_4.xml │ │ │ │ └── DescriptorApplication1.php │ │ ├── .gitignore │ │ └── Resources │ │ │ └── bin │ │ │ └── hiddeninput.exe │ ├── debug │ │ ├── .gitignore │ │ ├── Tests │ │ │ ├── Fixtures │ │ │ │ ├── PEARClass.php │ │ │ │ ├── notPsr0Bis.php │ │ │ │ ├── reallyNotPsr0.php │ │ │ │ ├── casemismatch.php │ │ │ │ ├── psr4 │ │ │ │ │ └── Psr4CaseMismatch.php │ │ │ │ ├── ClassAlias.php │ │ │ │ ├── NonDeprecatedInterface.php │ │ │ │ ├── DeprecatedClass.php │ │ │ │ └── DeprecatedInterface.php │ │ │ └── Fixtures2 │ │ │ │ └── RequiredTwice.php │ │ └── Resources │ │ │ └── ext │ │ │ └── config.w32 │ ├── yaml │ │ ├── .gitignore │ │ └── Tests │ │ │ └── Fixtures │ │ │ ├── embededPhp.yml │ │ │ ├── arrow.gif │ │ │ ├── sfObjects.yml │ │ │ ├── multiple_lines_as_literal_block.yml │ │ │ └── index.yml │ ├── filesystem │ │ └── .gitignore │ ├── process │ │ └── .gitignore │ ├── stopwatch │ │ └── .gitignore │ ├── event-dispatcher │ │ └── .gitignore │ └── polyfill-mbstring │ │ └── README.md ├── bin │ ├── phpunit │ ├── phpcs │ ├── coveralls │ ├── phpcbf │ └── php-cs-fixer ├── sebastian │ ├── version │ │ ├── .gitignore │ │ └── .gitattributes │ ├── environment │ │ ├── .gitignore │ │ └── .travis.yml │ ├── comparator │ │ ├── .gitignore │ │ ├── tests │ │ │ ├── bootstrap.php │ │ │ └── _files │ │ │ │ ├── TestClass.php │ │ │ │ └── TestClassComparator.php │ │ └── build │ │ │ └── travis-ci.xml │ ├── global-state │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── src │ │ │ ├── Exception.php │ │ │ └── RuntimeException.php │ │ └── tests │ │ │ └── _fixture │ │ │ ├── SnapshotFunctions.php │ │ │ ├── SnapshotTrait.php │ │ │ ├── BlacklistedInterface.php │ │ │ ├── BlacklistedChildClass.php │ │ │ ├── BlacklistedClass.php │ │ │ └── SnapshotDomDocument.php │ ├── exporter │ │ ├── .gitignore │ │ └── .travis.yml │ ├── recursion-context │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── src │ │ │ └── Exception.php │ │ └── README.md │ └── diff │ │ ├── .gitignore │ │ ├── tests │ │ └── fixtures │ │ │ └── patch.txt │ │ └── .travis.yml ├── guzzle │ └── guzzle │ │ ├── docs │ │ ├── _templates │ │ │ ├── leftbar.html │ │ │ └── nav_links.html │ │ ├── requirements.txt │ │ ├── _static │ │ │ ├── logo.png │ │ │ └── guzzle-icon.png │ │ ├── index.rst │ │ └── plugins │ │ │ └── plugins-list.rst.inc │ │ ├── tests │ │ ├── Guzzle │ │ │ └── Tests │ │ │ │ ├── TestData │ │ │ │ ├── FileBody.txt │ │ │ │ ├── mock_response │ │ │ │ ├── description │ │ │ │ │ ├── bar.json │ │ │ │ │ ├── recursive.json │ │ │ │ │ ├── baz.json │ │ │ │ │ └── foo.json │ │ │ │ ├── test_service2.json │ │ │ │ └── services │ │ │ │ │ └── json2.json │ │ │ │ ├── Mock │ │ │ │ ├── MockSubject.php │ │ │ │ ├── ExceptionMock.php │ │ │ │ └── MockMulti.php │ │ │ │ └── Service │ │ │ │ └── Mock │ │ │ │ └── Command │ │ │ │ └── Sub │ │ │ │ └── Sub.php │ │ └── bootstrap.php │ │ ├── src │ │ └── Guzzle │ │ │ ├── Common │ │ │ ├── Exception │ │ │ │ ├── GuzzleException.php │ │ │ │ ├── RuntimeException.php │ │ │ │ ├── BadMethodCallException.php │ │ │ │ ├── InvalidArgumentException.php │ │ │ │ └── UnexpectedValueException.php │ │ │ └── ToArrayInterface.php │ │ │ ├── Http │ │ │ └── Exception │ │ │ │ ├── TooManyRedirectsException.php │ │ │ │ ├── ClientErrorResponseException.php │ │ │ │ ├── CouldNotRewindStreamException.php │ │ │ │ ├── ServerErrorResponseException.php │ │ │ │ └── HttpException.php │ │ │ ├── Service │ │ │ └── Exception │ │ │ │ ├── ServiceNotFoundException.php │ │ │ │ ├── CommandException.php │ │ │ │ ├── ServiceBuilderException.php │ │ │ │ ├── DescriptionBuilderException.php │ │ │ │ └── ResponseClassException.php │ │ │ ├── Plugin │ │ │ ├── ErrorResponse │ │ │ │ └── Exception │ │ │ │ │ └── ErrorResponseException.php │ │ │ ├── Cookie │ │ │ │ └── Exception │ │ │ │ │ └── InvalidCookieException.php │ │ │ └── Cache │ │ │ │ └── CacheKeyProviderInterface.php │ │ │ ├── Log │ │ │ └── AbstractLogAdapter.php │ │ │ ├── Batch │ │ │ └── BatchTransferInterface.php │ │ │ └── Cache │ │ │ └── AbstractCacheAdapter.php │ │ ├── .travis.yml │ │ ├── phing │ │ └── build.properties.dist │ │ └── .gitignore ├── phpunit │ ├── php-timer │ │ ├── .gitattributes │ │ └── .gitignore │ ├── phpunit │ │ ├── tests │ │ │ ├── _files │ │ │ │ ├── bar.xml │ │ │ │ ├── foo.xml │ │ │ │ ├── expectedFileFormat.txt │ │ │ │ ├── JsonData │ │ │ │ │ ├── simpleObject.json │ │ │ │ │ └── arrayObject.json │ │ │ │ ├── NoTestCaseClass.php │ │ │ │ ├── configuration.colors.empty.xml │ │ │ │ ├── configuration.colors.true.xml │ │ │ │ ├── CoveredFunction.php │ │ │ │ ├── configuration.colors.false.xml │ │ │ │ ├── configuration.colors.invalid.xml │ │ │ │ ├── DummyException.php │ │ │ │ ├── CustomPrinter.php │ │ │ │ ├── NotVoidTestCase.php │ │ │ │ ├── EmptyTestCaseTest.php │ │ │ │ ├── NamespaceCoveredFunction.php │ │ │ │ ├── NonStatic.php │ │ │ │ ├── ConcreteTest.php │ │ │ │ ├── InheritedTestCase.php │ │ │ │ ├── Success.php │ │ │ │ ├── configuration.custom-printer.xml │ │ │ │ ├── NoTestCases.php │ │ │ │ ├── NothingTest.php │ │ │ │ ├── Inheritance │ │ │ │ │ ├── InheritanceA.php │ │ │ │ │ └── InheritanceB.php │ │ │ │ ├── OverrideTestCase.php │ │ │ │ ├── AbstractTest.php │ │ │ │ ├── ConcreteTest.my.php │ │ │ │ ├── MockRunner.php │ │ │ │ ├── NoArgTestCaseTest.php │ │ │ │ ├── Failure.php │ │ │ │ ├── ThrowNoExceptionTestCase.php │ │ │ │ ├── ClassWithScalarTypeDeclarations.php │ │ │ │ ├── Struct.php │ │ │ │ ├── TestTestError.php │ │ │ │ ├── TestSkipped.php │ │ │ │ ├── TestIncomplete.php │ │ │ │ ├── IncompleteTest.php │ │ │ │ ├── IniTest.php │ │ │ │ ├── WasRun.php │ │ │ │ ├── OneTestCase.php │ │ │ │ ├── ThrowExceptionTestCase.php │ │ │ │ ├── CoverageNoneTest.php │ │ │ │ ├── NotPublicTestCase.php │ │ │ │ ├── CoverageFunctionTest.php │ │ │ │ ├── CoverageNamespacedFunctionTest.php │ │ │ │ ├── ChangeCurrentWorkingDirectoryTest.php │ │ │ │ ├── SampleClass.php │ │ │ │ ├── BaseTestListenerSample.php │ │ │ │ ├── CoverageClassTest.php │ │ │ │ ├── CoverageFunctionParenthesesTest.php │ │ │ │ ├── Calculator.php │ │ │ │ ├── FatalTest.php │ │ │ │ ├── CoveragePrivateTest.php │ │ │ │ ├── CoveragePublicTest.php │ │ │ │ ├── CoverageFunctionParenthesesWhitespaceTest.php │ │ │ │ ├── CoverageMethodTest.php │ │ │ │ ├── CoverageNotPublicTest.php │ │ │ │ ├── CoverageNotPrivateTest.php │ │ │ │ ├── CoverageProtectedTest.php │ │ │ │ ├── CoverageClassExtendedTest.php │ │ │ │ ├── CoverageNotProtectedTest.php │ │ │ │ ├── NamespaceCoverageClassTest.php │ │ │ │ ├── CoverageMethodOneLineAnnotationTest.php │ │ │ │ ├── CoverageMethodParenthesesTest.php │ │ │ │ ├── NamespaceCoveragePublicTest.php │ │ │ │ ├── CoverageNothingTest.php │ │ │ │ ├── NamespaceCoverageMethodTest.php │ │ │ │ ├── NamespaceCoverageNotPublicTest.php │ │ │ │ ├── NamespaceCoveragePrivateTest.php │ │ │ │ ├── NamespaceCoverageNotPrivateTest.php │ │ │ │ ├── NamespaceCoverageProtectedTest.php │ │ │ │ ├── NamespaceCoverageClassExtendedTest.php │ │ │ │ ├── NamespaceCoverageNotProtectedTest.php │ │ │ │ ├── CoverageMethodParenthesesWhitespaceTest.php │ │ │ │ ├── DependencyTestSuite.php │ │ │ │ ├── IsolationTest.php │ │ │ │ ├── RequirementsClassBeforeClassHookTest.php │ │ │ │ ├── NamespaceCoverageCoversClassPublicTest.php │ │ │ │ ├── DependencySuccessTest.php │ │ │ │ ├── DependencyFailureTest.php │ │ │ │ ├── CoverageTwoDefaultClassAnnotations.php │ │ │ │ └── Singleton.php │ │ │ ├── Regression │ │ │ │ ├── GitHub │ │ │ │ │ ├── 74 │ │ │ │ │ │ ├── NewException.php │ │ │ │ │ │ └── Issue74Test.php │ │ │ │ │ ├── 322 │ │ │ │ │ │ ├── phpunit322.xml │ │ │ │ │ │ └── Issue322Test.php │ │ │ │ │ ├── 503 │ │ │ │ │ │ └── Issue503Test.php │ │ │ │ │ ├── 581 │ │ │ │ │ │ └── Issue581Test.php │ │ │ │ │ ├── 797 │ │ │ │ │ │ ├── bootstrap797.php │ │ │ │ │ │ └── Issue797Test.php │ │ │ │ │ ├── 873 │ │ │ │ │ │ └── Issue873Test.php │ │ │ │ │ ├── 1149 │ │ │ │ │ │ └── Issue1149Test.php │ │ │ │ │ ├── 1216 │ │ │ │ │ │ ├── bootstrap1216.php │ │ │ │ │ │ ├── phpunit1216.xml │ │ │ │ │ │ └── Issue1216Test.php │ │ │ │ │ ├── 1265 │ │ │ │ │ │ ├── phpunit1265.xml │ │ │ │ │ │ └── Issue1265Test.php │ │ │ │ │ ├── 1330 │ │ │ │ │ │ ├── phpunit1330.xml │ │ │ │ │ │ └── Issue1330Test.php │ │ │ │ │ ├── 1337 │ │ │ │ │ │ └── Issue1337Test.php │ │ │ │ │ ├── 1348 │ │ │ │ │ │ └── Issue1348Test.php │ │ │ │ │ ├── 1351 │ │ │ │ │ │ └── ChildProcessClass1351.php │ │ │ │ │ ├── 1374 │ │ │ │ │ │ └── Issue1374Test.php │ │ │ │ │ ├── 1437 │ │ │ │ │ │ └── Issue1437Test.php │ │ │ │ │ ├── 1468 │ │ │ │ │ │ └── Issue1468Test.php │ │ │ │ │ ├── 1471 │ │ │ │ │ │ └── Issue1471Test.php │ │ │ │ │ ├── 1570 │ │ │ │ │ │ └── Issue1570Test.php │ │ │ │ │ └── 2158 │ │ │ │ │ │ └── constant.inc │ │ │ │ └── Trac │ │ │ │ │ ├── 523 │ │ │ │ │ └── Issue523Test.php │ │ │ │ │ ├── 684 │ │ │ │ │ └── Issue684Test.php │ │ │ │ │ └── 783 │ │ │ │ │ ├── OneTest.php │ │ │ │ │ ├── TwoTest.php │ │ │ │ │ ├── ParentSuite.php │ │ │ │ │ └── ChildSuite.php │ │ │ ├── Fail │ │ │ │ └── fail.phpt │ │ │ └── bootstrap.php │ │ ├── .gitattributes │ │ ├── src │ │ │ ├── Util │ │ │ │ └── PHP │ │ │ │ │ └── eval-stdin.php │ │ │ ├── ForwardCompatibility │ │ │ │ ├── Assert.php │ │ │ │ ├── TestCase.php │ │ │ │ ├── TestListener.php │ │ │ │ └── BaseTestListener.php │ │ │ ├── Exception.php │ │ │ ├── Runner │ │ │ │ └── Exception.php │ │ │ └── Framework │ │ │ │ ├── CodeCoverageException.php │ │ │ │ ├── InvalidCoversTargetException.php │ │ │ │ └── SkippedTest.php │ │ └── .gitignore │ ├── php-code-coverage │ │ ├── .gitattributes │ │ ├── tests │ │ │ └── _files │ │ │ │ ├── CoveredFunction.php │ │ │ │ ├── source_without_ignore.php │ │ │ │ ├── CoverageNoneTest.php │ │ │ │ ├── CoverageFunctionTest.php │ │ │ │ ├── CoverageClassTest.php │ │ │ │ ├── CoverageFunctionParenthesesTest.php │ │ │ │ ├── CoveragePrivateTest.php │ │ │ │ ├── CoveragePublicTest.php │ │ │ │ ├── source_without_namespace.php │ │ │ │ ├── CoverageFunctionParenthesesWhitespaceTest.php │ │ │ │ ├── CoverageMethodTest.php │ │ │ │ ├── CoverageNotPublicTest.php │ │ │ │ ├── CoverageNotPrivateTest.php │ │ │ │ ├── CoverageProtectedTest.php │ │ │ │ ├── CoverageClassExtendedTest.php │ │ │ │ ├── CoverageNotProtectedTest.php │ │ │ │ ├── NamespaceCoverageClassTest.php │ │ │ │ ├── CoverageMethodOneLineAnnotationTest.php │ │ │ │ ├── CoverageMethodParenthesesTest.php │ │ │ │ ├── NamespaceCoveragePublicTest.php │ │ │ │ ├── CoverageNothingTest.php │ │ │ │ ├── NamespaceCoverageMethodTest.php │ │ │ │ ├── NamespaceCoverageNotPublicTest.php │ │ │ │ ├── NamespaceCoveragePrivateTest.php │ │ │ │ ├── NamespaceCoverageNotPrivateTest.php │ │ │ │ ├── NamespaceCoverageProtectedTest.php │ │ │ │ ├── NamespaceCoverageClassExtendedTest.php │ │ │ │ ├── NamespaceCoverageNotProtectedTest.php │ │ │ │ ├── source_with_namespace.php │ │ │ │ ├── CoverageMethodParenthesesWhitespaceTest.php │ │ │ │ ├── NamespaceCoverageCoversClassPublicTest.php │ │ │ │ └── CoverageTwoDefaultClassAnnotations.php │ │ ├── scripts │ │ │ ├── auto_append.php │ │ │ └── auto_prepend.php │ │ ├── .gitignore │ │ ├── src │ │ │ └── CodeCoverage │ │ │ │ └── Report │ │ │ │ ├── HTML │ │ │ │ └── Renderer │ │ │ │ │ └── Template │ │ │ │ │ ├── fonts │ │ │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ │ │ ├── glyphicons-halflings-regular.woff │ │ │ │ │ └── glyphicons-halflings-regular.woff2 │ │ │ │ │ └── coverage_bar.html.dist │ │ │ │ └── XML │ │ │ │ └── Directory.php │ │ ├── CONTRIBUTING.md │ │ └── .travis.yml │ ├── php-file-iterator │ │ ├── .gitattributes │ │ ├── .gitignore │ │ ├── ChangeLog.md │ │ └── README.md │ ├── php-text-template │ │ ├── .gitattributes │ │ ├── .gitignore │ │ └── README.md │ ├── php-token-stream │ │ ├── .gitattributes │ │ ├── tests │ │ │ ├── _fixture │ │ │ │ ├── issue19.php │ │ │ │ ├── classInNamespace.php │ │ │ │ ├── classUsesNamespacedFunction.php │ │ │ │ ├── issue30.php │ │ │ │ ├── classInScopedNamespace.php │ │ │ │ ├── source2.php │ │ │ │ ├── classExtendsNamespacedClass.php │ │ │ │ ├── multipleNamespacesWithOneClassUsingBraces.php │ │ │ │ ├── multipleNamespacesWithOneClassUsingNonBraceSyntax.php │ │ │ │ ├── closure.php │ │ │ │ ├── source5.php │ │ │ │ ├── class_with_method_that_declares_anonymous_class2.php │ │ │ │ ├── source3.php │ │ │ │ └── class_with_method_that_declares_anonymous_class.php │ │ │ └── bootstrap.php │ │ └── .gitignore │ └── phpunit-mock-objects │ │ ├── .gitattributes │ │ ├── tests │ │ ├── _fixture │ │ │ ├── AnInterface.php │ │ │ ├── AnotherInterface.php │ │ │ ├── TraversableMockTestInterface.php │ │ │ ├── Bar.php │ │ │ ├── InterfaceWithStaticMethod.php │ │ │ ├── ClassWithStaticMethod.php │ │ │ ├── Foo.php │ │ │ ├── MockTestInterface.php │ │ │ ├── FunctionCallback.php │ │ │ ├── SomeClass.php │ │ │ ├── AbstractMockTestClass.php │ │ │ ├── StaticMockTestClass.php │ │ │ ├── MethodCallbackByReference.php │ │ │ ├── AbstractTrait.php │ │ │ ├── PartialMockTestClass.php │ │ │ ├── ClassThatImplementsSerializable.php │ │ │ ├── SingletonClass.php │ │ │ └── MethodCallback.php │ │ └── bootstrap.php │ │ ├── src │ │ └── Framework │ │ │ └── MockObject │ │ │ └── Generator │ │ │ ├── trait_class.tpl.dist │ │ │ ├── wsdl_method.tpl.dist │ │ │ ├── mocked_clone.tpl.dist │ │ │ ├── mocked_static_method.tpl.dist │ │ │ ├── unmocked_clone.tpl.dist │ │ │ ├── wsdl_class.tpl.dist │ │ │ └── mocked_class_method.tpl.dist │ │ ├── .gitignore │ │ └── CONTRIBUTING.md ├── webmozart │ └── assert │ │ ├── .gitignore │ │ ├── .styleci.yml │ │ └── .composer-auth.json ├── phpdocumentor │ ├── reflection-common │ │ ├── README.md │ │ ├── .gitignore │ │ └── tests │ │ │ └── common │ │ │ └── bootstrap.php │ ├── reflection-docblock │ │ └── .gitignore │ └── type-resolver │ │ ├── .gitignore │ │ └── examples │ │ ├── Classy.php │ │ └── 01-resolving-simple-types.php ├── satooshi │ └── php-coveralls │ │ ├── tests │ │ ├── prj │ │ │ ├── coveralls.yml │ │ │ └── files │ │ │ │ ├── TestInterface.php │ │ │ │ ├── AbstractClass.php │ │ │ │ ├── test.php │ │ │ │ ├── test2.php │ │ │ │ ├── test3.php │ │ │ │ └── RepositoryTest │ │ │ │ ├── Coverage0.php │ │ │ │ ├── Coverage10.php │ │ │ │ ├── Coverage100.php │ │ │ │ ├── Coverage70.php │ │ │ │ ├── Coverage80.php │ │ │ │ └── Coverage90.php │ │ └── Satooshi │ │ │ └── Bundle │ │ │ └── CoverallsV1Bundle │ │ │ └── Config │ │ │ └── yaml │ │ │ ├── empty.yml │ │ │ ├── src_dir.yml │ │ │ ├── exclude_no_stmt_invalid.yml │ │ │ ├── exclude_no_stmt_true.yml │ │ │ ├── coverage_clover_invalid.yml │ │ │ ├── exclude_no_stmt_false.yml │ │ │ ├── json_path.yml │ │ │ ├── coverage_clover.yml │ │ │ ├── coverage_clover_glob.yml │ │ │ ├── coverage_clover_not_found.yml │ │ │ ├── json_path_not_found.yml │ │ │ └── coverage_clover_array.yml │ │ ├── .gitignore │ │ ├── src │ │ └── Satooshi │ │ │ └── Bundle │ │ │ ├── CoverallsBundle │ │ │ ├── CoverallsBundle.php │ │ │ └── Entity │ │ │ │ └── ArrayConvertable.php │ │ │ └── CoverallsV1Bundle │ │ │ ├── CoverallsV1Bundle.php │ │ │ └── Version.php │ │ ├── circle.yml │ │ └── devtools │ │ └── composer.json ├── phpspec │ └── prophecy │ │ ├── .gitignore │ │ ├── fixtures │ │ ├── EmptyClass.php │ │ ├── FinalClass.php │ │ ├── EmptyInterface.php │ │ ├── Named.php │ │ ├── WithStaticMethod.php │ │ ├── WithFinalMethod.php │ │ ├── WithProtectedAbstractMethod.php │ │ ├── WithVariadicArgument.php │ │ ├── ModifierInterface.php │ │ ├── WithReferences.php │ │ ├── WithTypehintedVariadicArgument.php │ │ ├── WithCallableArgument.php │ │ ├── WithFinalVirtuallyPrivateMethod.php │ │ ├── WithArguments.php │ │ ├── WithVirtuallyPrivateMethod.php │ │ ├── OptionalDepsClass.php │ │ └── WithReturnTypehints.php │ │ └── spec │ │ └── Prophecy │ │ └── Exception │ │ └── Doubler │ │ └── DoubleExceptionSpec.php ├── doctrine │ └── instantiator │ │ └── .gitignore ├── squizlabs │ └── php_codesniffer │ │ ├── .gitignore │ │ ├── CodeSniffer │ │ └── Standards │ │ │ ├── Generic │ │ │ ├── ruleset.xml │ │ │ └── Docs │ │ │ │ ├── Files │ │ │ │ ├── LowercasedFilenameStandard.xml │ │ │ │ ├── EndFileNewlineStandard.xml │ │ │ │ ├── EndFileNoNewlineStandard.xml │ │ │ │ ├── LineEndingsStandard.xml │ │ │ │ ├── LineLengthStandard.xml │ │ │ │ └── ByteOrderMarkStandard.xml │ │ │ │ ├── WhiteSpace │ │ │ │ ├── DisallowTabIndentStandard.xml │ │ │ │ └── DisallowSpaceIndentStandard.xml │ │ │ │ ├── PHP │ │ │ │ ├── BacktickOperatorStandard.xml │ │ │ │ ├── DisallowShortOpenTagStandard.xml │ │ │ │ └── DisallowAlternativePHPTagsStandard.xml │ │ │ │ ├── Metrics │ │ │ │ ├── NestingLevelStandard.xml │ │ │ │ └── CyclomaticComplexityStandard.xml │ │ │ │ └── VersionControl │ │ │ │ └── SubversionPropertiesStandard.xml │ │ │ ├── PSR2 │ │ │ └── Docs │ │ │ │ └── Files │ │ │ │ └── EndFileNewlineStandard.xml │ │ │ └── PEAR │ │ │ └── Docs │ │ │ └── Files │ │ │ └── LineLengthStandard.xml │ │ ├── CodeSniffer.conf.dist │ │ └── phpcs.xml.dist ├── autoload.php └── composer │ ├── autoload_files.php │ └── autoload_namespaces.php ├── generate.sh ├── .travis.yml ├── config.json └── docs └── Model ├── MetaObject.md ├── GifImagesLooping.md ├── InlineResponse400.md ├── Breadcrumb.md ├── TrendingTag.md ├── ShallowTag.md ├── InlineResponse2001.md ├── Tag.md ├── BaseChannelModelGifs.md └── InlineResponse2002.md /vendor/psr/log/.gitignore: -------------------------------------------------------------------------------- 1 | vendor 2 | -------------------------------------------------------------------------------- /vendor/symfony/finder/Tests/Fixtures/one/a: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/bin/phpunit: -------------------------------------------------------------------------------- 1 | ../phpunit/phpunit/phpunit -------------------------------------------------------------------------------- /vendor/sebastian/version/.gitignore: -------------------------------------------------------------------------------- 1 | /.idea 2 | -------------------------------------------------------------------------------- /vendor/symfony/config/Tests/Fixtures/foo.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/symfony/finder/Tests/Fixtures/A/B/ab.dat: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/symfony/finder/Tests/Fixtures/A/a.dat: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/guzzle/guzzle/docs/_templates/leftbar.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/symfony/config/Tests/Fixtures/Again/foo.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/symfony/finder/Tests/Fixtures/A/B/C/abc.dat: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/symfony/finder/Tests/Fixtures/one/b/c.neon: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/symfony/finder/Tests/Fixtures/one/b/d.neon: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/bin/phpcs: -------------------------------------------------------------------------------- 1 | ../squizlabs/php_codesniffer/scripts/phpcs -------------------------------------------------------------------------------- /vendor/phpunit/php-timer/.gitattributes: -------------------------------------------------------------------------------- 1 | *.php diff=php 2 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/bar.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/foo.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /vendor/sebastian/version/.gitattributes: -------------------------------------------------------------------------------- 1 | *.php diff=php 2 | -------------------------------------------------------------------------------- /vendor/symfony/finder/Tests/Fixtures/copy/A/B/ab.dat.copy: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/symfony/finder/Tests/Fixtures/copy/A/a.dat.copy: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/symfony/finder/Tests/Fixtures/with space/foo.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/bin/coveralls: -------------------------------------------------------------------------------- 1 | ../satooshi/php-coveralls/bin/coveralls -------------------------------------------------------------------------------- /vendor/bin/phpcbf: -------------------------------------------------------------------------------- 1 | ../squizlabs/php_codesniffer/scripts/phpcbf -------------------------------------------------------------------------------- /vendor/guzzle/guzzle/tests/Guzzle/Tests/TestData/FileBody.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/symfony/console/Tests/Fixtures/input_definition_1.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/symfony/console/Tests/Fixtures/input_definition_1.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/symfony/finder/Tests/Fixtures/copy/A/B/C/abc.dat.copy: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/bin/php-cs-fixer: -------------------------------------------------------------------------------- 1 | ../friendsofphp/php-cs-fixer/php-cs-fixer -------------------------------------------------------------------------------- /vendor/phpunit/php-code-coverage/.gitattributes: -------------------------------------------------------------------------------- 1 | *.php diff=php 2 | -------------------------------------------------------------------------------- /vendor/phpunit/php-file-iterator/.gitattributes: -------------------------------------------------------------------------------- 1 | *.php diff=php 2 | -------------------------------------------------------------------------------- /vendor/phpunit/php-text-template/.gitattributes: -------------------------------------------------------------------------------- 1 | *.php diff=php 2 | -------------------------------------------------------------------------------- /vendor/phpunit/php-token-stream/.gitattributes: -------------------------------------------------------------------------------- 1 | *.php diff=php 2 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/expectedFileFormat.txt: -------------------------------------------------------------------------------- 1 | FOO 2 | -------------------------------------------------------------------------------- /vendor/symfony/finder/Tests/Fixtures/r+e.gex[c]a(r)s/dir/bar.dat: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/webmozart/assert/.gitignore: -------------------------------------------------------------------------------- 1 | /vendor/ 2 | composer.lock 3 | -------------------------------------------------------------------------------- /vendor/phpdocumentor/reflection-common/README.md: -------------------------------------------------------------------------------- 1 | # ReflectionCommon 2 | -------------------------------------------------------------------------------- /vendor/phpdocumentor/reflection-docblock/.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | vendor 3 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit-mock-objects/.gitattributes: -------------------------------------------------------------------------------- 1 | *.php diff=php 2 | -------------------------------------------------------------------------------- /vendor/satooshi/php-coveralls/tests/prj/coveralls.yml: -------------------------------------------------------------------------------- 1 | # empty config 2 | -------------------------------------------------------------------------------- /vendor/symfony/console/Tests/Fixtures/application_gethelp.txt: -------------------------------------------------------------------------------- 1 | Console Tool -------------------------------------------------------------------------------- /vendor/symfony/config/.gitignore: -------------------------------------------------------------------------------- 1 | vendor/ 2 | composer.lock 3 | phpunit.xml 4 | -------------------------------------------------------------------------------- /vendor/symfony/console/Tests/Fixtures/application_run4.txt: -------------------------------------------------------------------------------- 1 | Console Tool 2 | -------------------------------------------------------------------------------- /vendor/symfony/debug/.gitignore: -------------------------------------------------------------------------------- 1 | vendor/ 2 | composer.lock 3 | phpunit.xml 4 | -------------------------------------------------------------------------------- /vendor/symfony/finder/.gitignore: -------------------------------------------------------------------------------- 1 | vendor/ 2 | composer.lock 3 | phpunit.xml 4 | -------------------------------------------------------------------------------- /vendor/symfony/yaml/.gitignore: -------------------------------------------------------------------------------- 1 | vendor/ 2 | composer.lock 3 | phpunit.xml 4 | -------------------------------------------------------------------------------- /vendor/phpunit/php-timer/.gitignore: -------------------------------------------------------------------------------- 1 | /.idea 2 | /vendor 3 | /composer.lock 4 | 5 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/JsonData/simpleObject.json: -------------------------------------------------------------------------------- 1 | {"Mascott":"Tux"} -------------------------------------------------------------------------------- /vendor/symfony/console/.gitignore: -------------------------------------------------------------------------------- 1 | vendor/ 2 | composer.lock 3 | phpunit.xml 4 | -------------------------------------------------------------------------------- /vendor/symfony/filesystem/.gitignore: -------------------------------------------------------------------------------- 1 | vendor/ 2 | composer.lock 3 | phpunit.xml 4 | -------------------------------------------------------------------------------- /vendor/symfony/finder/Tests/Fixtures/dolor.txt: -------------------------------------------------------------------------------- 1 | dolor sit amet 2 | DOLOR SIT AMET -------------------------------------------------------------------------------- /vendor/symfony/process/.gitignore: -------------------------------------------------------------------------------- 1 | vendor/ 2 | composer.lock 3 | phpunit.xml 4 | -------------------------------------------------------------------------------- /vendor/symfony/stopwatch/.gitignore: -------------------------------------------------------------------------------- 1 | vendor/ 2 | composer.lock 3 | phpunit.xml 4 | -------------------------------------------------------------------------------- /vendor/phpdocumentor/type-resolver/.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | composer.lock 3 | vendor 4 | -------------------------------------------------------------------------------- /vendor/symfony/event-dispatcher/.gitignore: -------------------------------------------------------------------------------- 1 | vendor/ 2 | composer.lock 3 | phpunit.xml 4 | -------------------------------------------------------------------------------- /vendor/symfony/yaml/Tests/Fixtures/embededPhp.yml: -------------------------------------------------------------------------------- 1 | value: 2 | -------------------------------------------------------------------------------- /vendor/guzzle/guzzle/docs/requirements.txt: -------------------------------------------------------------------------------- 1 | Sphinx>=1.2b1 2 | guzzle_sphinx_theme>=0.5.0 3 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/.gitattributes: -------------------------------------------------------------------------------- 1 | /build export-ignore 2 | 3 | *.php diff=php 4 | 5 | -------------------------------------------------------------------------------- /vendor/satooshi/php-coveralls/tests/Satooshi/Bundle/CoverallsV1Bundle/Config/yaml/empty.yml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/symfony/console/Tests/Fixtures/input_argument_1.txt: -------------------------------------------------------------------------------- 1 | argument_name 2 | -------------------------------------------------------------------------------- /vendor/symfony/console/Tests/Fixtures/input_option_1.txt: -------------------------------------------------------------------------------- 1 | -o, --option_name 2 | -------------------------------------------------------------------------------- /vendor/symfony/finder/Tests/Fixtures/ipsum.txt: -------------------------------------------------------------------------------- 1 | ipsum dolor sit amet 2 | IPSUM DOLOR SIT AMET -------------------------------------------------------------------------------- /vendor/phpdocumentor/reflection-common/.gitignore: -------------------------------------------------------------------------------- 1 | composer.phar 2 | vendor/ 3 | build/ 4 | 5 | -------------------------------------------------------------------------------- /vendor/phpunit/php-token-stream/tests/_fixture/issue19.php: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/configuration.colors.true.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /vendor/sebastian/environment/.gitignore: -------------------------------------------------------------------------------- 1 | /.idea 2 | /vendor 3 | /composer.lock 4 | /composer.phar 5 | -------------------------------------------------------------------------------- /vendor/symfony/finder/Tests/Fixtures/lorem.txt: -------------------------------------------------------------------------------- 1 | lorem ipsum dolor sit amet 2 | LOREM IPSUM DOLOR SIT AMET -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/CoveredFunction.php: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /vendor/symfony/config/Tests/Fixtures/Util/invalid.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /vendor/guzzle/guzzle/tests/Guzzle/Tests/TestData/mock_response: -------------------------------------------------------------------------------- 1 | HTTP/1.1 200 OK 2 | Content-Length: 0 3 | 4 | -------------------------------------------------------------------------------- /vendor/phpunit/php-text-template/.gitignore: -------------------------------------------------------------------------------- 1 | /composer.lock 2 | /composer.phar 3 | /.idea 4 | /vendor 5 | 6 | -------------------------------------------------------------------------------- /vendor/satooshi/php-coveralls/tests/Satooshi/Bundle/CoverallsV1Bundle/Config/yaml/src_dir.yml: -------------------------------------------------------------------------------- 1 | src_dir: src 2 | -------------------------------------------------------------------------------- /vendor/symfony/console/Tests/Fixtures/input_argument_2.txt: -------------------------------------------------------------------------------- 1 | argument_name argument description 2 | -------------------------------------------------------------------------------- /vendor/doctrine/instantiator/.gitignore: -------------------------------------------------------------------------------- 1 | phpunit.xml 2 | composer.lock 3 | build 4 | vendor 5 | coverage.clover 6 | -------------------------------------------------------------------------------- /vendor/guzzle/guzzle/tests/Guzzle/Tests/TestData/description/bar.json: -------------------------------------------------------------------------------- 1 | { 2 | "includes": ["foo.json"] 3 | } 4 | -------------------------------------------------------------------------------- /vendor/phpunit/php-code-coverage/tests/_files/CoveredFunction.php: -------------------------------------------------------------------------------- 1 | ' . file_get_contents('php://stdin')); 4 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/configuration.colors.invalid.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /vendor/guzzle/guzzle/tests/Guzzle/Tests/TestData/description/recursive.json: -------------------------------------------------------------------------------- 1 | { 2 | "includes": ["foo.json"] 3 | } 4 | -------------------------------------------------------------------------------- /vendor/symfony/console/Tests/Fixtures/input_definition_1.json: -------------------------------------------------------------------------------- 1 | { 2 | "arguments": [], 3 | "options": [] 4 | } 5 | -------------------------------------------------------------------------------- /vendor/guzzle/guzzle/tests/Guzzle/Tests/TestData/description/baz.json: -------------------------------------------------------------------------------- 1 | { 2 | "includes": ["foo.json", "bar.json"] 3 | } 4 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/Regression/GitHub/2158/constant.inc: -------------------------------------------------------------------------------- 1 | 6 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/DummyException.php: -------------------------------------------------------------------------------- 1 | Arguments: 2 | argument_name 3 | -------------------------------------------------------------------------------- /vendor/symfony/console/Tests/Fixtures/input_option_3.txt: -------------------------------------------------------------------------------- 1 | -o, --option_name=OPTION_NAME option description 2 | -------------------------------------------------------------------------------- /vendor/phpspec/prophecy/fixtures/EmptyClass.php: -------------------------------------------------------------------------------- 1 | Options: 2 | -o, --option_name 3 | -------------------------------------------------------------------------------- /vendor/phpunit/php-token-stream/tests/_fixture/classInNamespace.php: -------------------------------------------------------------------------------- 1 | -o|O, --option_name=OPTION_NAME option with multiple shortcuts 2 | -------------------------------------------------------------------------------- /vendor/phpspec/prophecy/fixtures/EmptyInterface.php: -------------------------------------------------------------------------------- 1 | argument_name multiline 2 | argument description 3 | -------------------------------------------------------------------------------- /vendor/symfony/yaml/Tests/Fixtures/arrow.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giphy/giphy-php-client/HEAD/vendor/symfony/yaml/Tests/Fixtures/arrow.gif -------------------------------------------------------------------------------- /vendor/phpunit/phpunit-mock-objects/tests/_fixture/AnInterface.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /vendor/symfony/config/Tests/Fixtures/Util/valid.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /vendor/guzzle/guzzle/docs/_static/guzzle-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giphy/giphy-php-client/HEAD/vendor/guzzle/guzzle/docs/_static/guzzle-icon.png -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/Regression/GitHub/1216/bootstrap1216.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/output/output_3.txt: -------------------------------------------------------------------------------- 1 | 2 | First title 3 | =========== 4 | 5 | Second title 6 | ============ 7 | 8 | -------------------------------------------------------------------------------- /vendor/symfony/debug/Tests/Fixtures/notPsr0Bis.php: -------------------------------------------------------------------------------- 1 | argument_name argument description [default: "default_value"] 2 | -------------------------------------------------------------------------------- /vendor/symfony/debug/Tests/Fixtures/casemismatch.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/ConcreteTest.php: -------------------------------------------------------------------------------- 1 | -o, --option_name[=OPTION_NAME] option description [default: "default_value"] 2 | -------------------------------------------------------------------------------- /vendor/symfony/console/Tests/Fixtures/input_option_4.txt: -------------------------------------------------------------------------------- 1 | -o, --option_name[=OPTION_NAME] option description (multiple values allowed) 2 | -------------------------------------------------------------------------------- /vendor/symfony/console/Tests/Fixtures/input_option_5.txt: -------------------------------------------------------------------------------- 1 | -o, --option_name=OPTION_NAME multiline 2 | option description 3 | -------------------------------------------------------------------------------- /vendor/phpunit/php-token-stream/tests/_fixture/issue30.php: -------------------------------------------------------------------------------- 1 | argument_name argument description [default: "\style\"] 2 | -------------------------------------------------------------------------------- /vendor/symfony/console/Tests/Fixtures/input_definition_1.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /vendor/symfony/debug/Tests/Fixtures/psr4/Psr4CaseMismatch.php: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /vendor/guzzle/guzzle/tests/Guzzle/Tests/TestData/test_service2.json: -------------------------------------------------------------------------------- 1 | { 2 | "operations": { 3 | "abstract": { 4 | "uri": "/abstract" 5 | } 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /vendor/phpunit/php-token-stream/tests/_fixture/classInScopedNamespace.php: -------------------------------------------------------------------------------- 1 | Usage: 2 | descriptor:command1 3 | alias1 4 | alias2 5 | 6 | Help: 7 | command 1 help 8 | -------------------------------------------------------------------------------- /vendor/symfony/console/Tests/Fixtures/input_option_with_style.txt: -------------------------------------------------------------------------------- 1 | -o, --option_name=OPTION_NAME option description [default: "\style\"] 2 | -------------------------------------------------------------------------------- /vendor/symfony/debug/Tests/Fixtures/ClassAlias.php: -------------------------------------------------------------------------------- 1 | stop(); 3 | 4 | $writer = new PHP_CodeCoverage_Report_HTML; 5 | $writer->process($coverage, '/tmp/coverage'); 6 | -------------------------------------------------------------------------------- /vendor/phpunit/php-token-stream/tests/_fixture/source2.php: -------------------------------------------------------------------------------- 1 | 4 | How are you?: 5 | > 6 | Where do you come from?: 7 | > 8 | -------------------------------------------------------------------------------- /vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/output/output_17.txt: -------------------------------------------------------------------------------- 1 | 2 | Title ending with \ 3 | =================== 4 | 5 | Section ending with \ 6 | --------------------- 7 | 8 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit-mock-objects/tests/_fixture/ClassWithStaticMethod.php: -------------------------------------------------------------------------------- 1 | 7 | * Default: `NULL` 8 | -------------------------------------------------------------------------------- /vendor/guzzle/guzzle/src/Guzzle/Service/Exception/ServiceNotFoundException.php: -------------------------------------------------------------------------------- 1 | doSomethingElse(); 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/Failure.php: -------------------------------------------------------------------------------- 1 | fail(); 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/ThrowNoExceptionTestCase.php: -------------------------------------------------------------------------------- 1 | message = 'hoge'; 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /vendor/sebastian/recursion-context/.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | phpunit.xml 3 | composer.lock 4 | composer.phar 5 | vendor/ 6 | cache.properties 7 | build/LICENSE 8 | build/README.md 9 | build/*.tgz 10 | -------------------------------------------------------------------------------- /vendor/symfony/console/Tests/Fixtures/input_definition_4.txt: -------------------------------------------------------------------------------- 1 | Arguments: 2 | argument_name 3 | 4 | Options: 5 | -o, --option_name 6 | -------------------------------------------------------------------------------- /vendor/guzzle/guzzle/src/Guzzle/Common/Exception/RuntimeException.php: -------------------------------------------------------------------------------- 1 | var = $var; 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- 1 | # ref: https://docs.travis-ci.com/user/languages/php 2 | language: php 3 | # command to install dependencies 4 | install: 5 | - composer install 6 | # command to run tests 7 | script: ./vendor/bin/phpunit 8 | -------------------------------------------------------------------------------- /vendor/phpspec/prophecy/fixtures/WithStaticMethod.php: -------------------------------------------------------------------------------- 1 | message = 'hoge'; 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /vendor/sebastian/comparator/tests/bootstrap.php: -------------------------------------------------------------------------------- 1 | message = 'hoge'; 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /vendor/symfony/config/Tests/Fixtures/Util/document_type.xml: -------------------------------------------------------------------------------- 1 | 2 | ]> 3 | 4 | -------------------------------------------------------------------------------- /vendor/symfony/console/Tests/Fixtures/input_argument_2.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "argument_name", 3 | "is_required": false, 4 | "is_array": true, 5 | "description": "argument description", 6 | "default": [] 7 | } 8 | -------------------------------------------------------------------------------- /vendor/symfony/console/Tests/Fixtures/input_argument_4.md: -------------------------------------------------------------------------------- 1 | **argument_name:** 2 | 3 | * Name: argument_name 4 | * Is required: yes 5 | * Is array: no 6 | * Description: multiline 7 | argument description 8 | * Default: `NULL` 9 | -------------------------------------------------------------------------------- /vendor/guzzle/guzzle/src/Guzzle/Common/Exception/InvalidArgumentException.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /vendor/symfony/console/Tests/Fixtures/input_argument_with_style.md: -------------------------------------------------------------------------------- 1 | **argument_name:** 2 | 3 | * Name: argument_name 4 | * Is required: no 5 | * Is array: no 6 | * Description: argument description 7 | * Default: `'style'` 8 | -------------------------------------------------------------------------------- /vendor/symfony/console/Tests/Fixtures/input_definition_2.md: -------------------------------------------------------------------------------- 1 | ### Arguments: 2 | 3 | **argument_name:** 4 | 5 | * Name: argument_name 6 | * Is required: yes 7 | * Is array: no 8 | * Description: 9 | * Default: `NULL` 10 | -------------------------------------------------------------------------------- /vendor/guzzle/guzzle/src/Guzzle/Service/Exception/CommandException.php: -------------------------------------------------------------------------------- 1 | __phpunit_invocationMocker = clone $this->__phpunit_getInvocationMocker(); 4 | } 5 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/Regression/GitHub/1265/Issue1265Test.php: -------------------------------------------------------------------------------- 1 | assertTrue(true); 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/Regression/Trac/783/OneTest.php: -------------------------------------------------------------------------------- 1 | markTestSkipped('Skipped test'); 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /vendor/satooshi/php-coveralls/tests/prj/files/RepositoryTest/Coverage0.php: -------------------------------------------------------------------------------- 1 | ! 6 | 7 | 8 | foo 9 | 10 | -------------------------------------------------------------------------------- /vendor/webmozart/assert/.styleci.yml: -------------------------------------------------------------------------------- 1 | preset: symfony 2 | 3 | enabled: 4 | - ordered_use 5 | 6 | disabled: 7 | - empty_return 8 | - phpdoc_annotation_without_dot # This is still buggy: https://github.com/symfony/symfony/pull/19198 9 | -------------------------------------------------------------------------------- /vendor/phpunit/php-token-stream/tests/_fixture/multipleNamespacesWithOneClassUsingBraces.php: -------------------------------------------------------------------------------- 1 | assertTrue(PHPUNIT_1330); 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/TestIncomplete.php: -------------------------------------------------------------------------------- 1 | markTestIncomplete('Incomplete test'); 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /vendor/symfony/console/Tests/Fixtures/input_option_1.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | -------------------------------------------------------------------------------- /vendor/guzzle/guzzle/src/Guzzle/Service/Exception/ServiceBuilderException.php: -------------------------------------------------------------------------------- 1 | markTestIncomplete('Test incomplete'); 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /vendor/symfony/console/Tests/Fixtures/input_argument_2.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | argument description 4 | 5 | 6 | -------------------------------------------------------------------------------- /vendor/symfony/console/Tests/Fixtures/input_argument_with_style.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "argument_name", 3 | "is_required": false, 4 | "is_array": false, 5 | "description": "argument description", 6 | "default": "style" 7 | } 8 | -------------------------------------------------------------------------------- /vendor/guzzle/guzzle/src/Guzzle/Service/Exception/DescriptionBuilderException.php: -------------------------------------------------------------------------------- 1 | assertEquals('application/x-test', ini_get('default_mimetype')); 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/WasRun.php: -------------------------------------------------------------------------------- 1 | wasRun = true; 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /vendor/symfony/console/Tests/Fixtures/command_1.md: -------------------------------------------------------------------------------- 1 | descriptor:command1 2 | ------------------- 3 | 4 | * Description: command 1 description 5 | * Usage: 6 | 7 | * `descriptor:command1` 8 | * `alias1` 9 | * `alias2` 10 | 11 | command 1 help 12 | -------------------------------------------------------------------------------- /vendor/symfony/console/Tests/Fixtures/input_option_1.md: -------------------------------------------------------------------------------- 1 | **option_name:** 2 | 3 | * Name: `--option_name` 4 | * Shortcut: `-o` 5 | * Accept value: no 6 | * Is value required: no 7 | * Is multiple: no 8 | * Description: 9 | * Default: `false` 10 | -------------------------------------------------------------------------------- /vendor/guzzle/guzzle/tests/Guzzle/Tests/Mock/ExceptionMock.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | A collection of generic sniffs. This standard is not designed to be used to check code. 4 | 5 | -------------------------------------------------------------------------------- /vendor/symfony/console/Tests/Fixtures/input_argument_4.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | multiline 4 | argument description 5 | 6 | 7 | -------------------------------------------------------------------------------- /vendor/guzzle/guzzle/src/Guzzle/Service/Exception/ResponseClassException.php: -------------------------------------------------------------------------------- 1 | __phpunit_invocationMocker = clone $this->__phpunit_getInvocationMocker(); 4 | parent::__clone(); 5 | } 6 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/ThrowExceptionTestCase.php: -------------------------------------------------------------------------------- 1 | -o, --option_name=OPTION_NAME option description [default: ["\Hello\","\world\"]] (multiple values allowed) 2 | -------------------------------------------------------------------------------- /vendor/guzzle/guzzle/src/Guzzle/Plugin/ErrorResponse/Exception/ErrorResponseException.php: -------------------------------------------------------------------------------- 1 | publicMethod(); 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /vendor/symfony/console/Tests/Fixtures/input_option_3.md: -------------------------------------------------------------------------------- 1 | **option_name:** 2 | 3 | * Name: `--option_name` 4 | * Shortcut: `-o` 5 | * Accept value: yes 6 | * Is value required: yes 7 | * Is multiple: no 8 | * Description: option description 9 | * Default: `NULL` 10 | -------------------------------------------------------------------------------- /vendor/guzzle/guzzle/src/Guzzle/Plugin/Cookie/Exception/InvalidCookieException.php: -------------------------------------------------------------------------------- 1 | assertTrue(false); 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/Regression/GitHub/797/bootstrap797.php: -------------------------------------------------------------------------------- 1 | multiHandle; 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /vendor/phpunit/php-code-coverage/tests/_files/CoverageNoneTest.php: -------------------------------------------------------------------------------- 1 | publicMethod(); 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/Regression/GitHub/1216/phpunit1216.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Issue1216Test.php 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/Regression/GitHub/873/Issue873Test.php: -------------------------------------------------------------------------------- 1 | 'PSR2', 4 | 'report_format' => 'summary', 5 | 'show_warnings' => '0', 6 | 'show_progress' => '1', 7 | 'report_width' => '120', 8 | ) 9 | ?> 10 | -------------------------------------------------------------------------------- /vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/Generic/Docs/Files/LowercasedFilenameStandard.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/PSR2/Docs/Files/EndFileNewlineStandard.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /vendor/symfony/console/Tests/Fixtures/BarBucCommand.php: -------------------------------------------------------------------------------- 1 | setName('bar:buc'); 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/output/output_6.txt: -------------------------------------------------------------------------------- 1 | 2 | * Lorem ipsum dolor sit amet 3 | * consectetur adipiscing elit 4 | 5 | [OK] Lorem ipsum dolor sit amet 6 | 7 | -------------------------------------------------------------------------------- /vendor/symfony/console/Tests/Fixtures/input_option_1.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "--option_name", 3 | "shortcut": "-o", 4 | "accept_value": false, 5 | "is_value_required": false, 6 | "is_multiple": false, 7 | "description": "", 8 | "default": false 9 | } 10 | -------------------------------------------------------------------------------- /vendor/symfony/console/Tests/Fixtures/input_option_2.md: -------------------------------------------------------------------------------- 1 | **option_name:** 2 | 3 | * Name: `--option_name` 4 | * Shortcut: `-o` 5 | * Accept value: yes 6 | * Is value required: no 7 | * Is multiple: no 8 | * Description: option description 9 | * Default: `'default_value'` 10 | -------------------------------------------------------------------------------- /vendor/symfony/console/Tests/Fixtures/input_option_3.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | -------------------------------------------------------------------------------- /vendor/symfony/console/Tests/Fixtures/input_option_4.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | -------------------------------------------------------------------------------- /vendor/symfony/debug/Tests/Fixtures/DeprecatedClass.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /vendor/symfony/console/Tests/Fixtures/Foo4Command.php: -------------------------------------------------------------------------------- 1 | setName('foo3:bar:toh'); 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /vendor/symfony/console/Tests/Fixtures/input_definition_3.md: -------------------------------------------------------------------------------- 1 | ### Options: 2 | 3 | **option_name:** 4 | 5 | * Name: `--option_name` 6 | * Shortcut: `-o` 7 | * Accept value: no 8 | * Is value required: no 9 | * Is multiple: no 10 | * Description: 11 | * Default: `false` 12 | -------------------------------------------------------------------------------- /vendor/symfony/console/Tests/Fixtures/input_option_5.md: -------------------------------------------------------------------------------- 1 | **option_name:** 2 | 3 | * Name: `--option_name` 4 | * Shortcut: `-o` 5 | * Accept value: yes 6 | * Is value required: yes 7 | * Is multiple: no 8 | * Description: multiline 9 | option description 10 | * Default: `NULL` 11 | -------------------------------------------------------------------------------- /vendor/symfony/console/Tests/Fixtures/input_option_6.md: -------------------------------------------------------------------------------- 1 | **option_name:** 2 | 3 | * Name: `--option_name` 4 | * Shortcut: `-o|-O` 5 | * Accept value: yes 6 | * Is value required: yes 7 | * Is multiple: no 8 | * Description: option with multiple shortcuts 9 | * Default: `NULL` 10 | -------------------------------------------------------------------------------- /vendor/phpunit/php-code-coverage/src/CodeCoverage/Report/HTML/Renderer/Template/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giphy/giphy-php-client/HEAD/vendor/phpunit/php-code-coverage/src/CodeCoverage/Report/HTML/Renderer/Template/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /vendor/phpunit/php-code-coverage/src/CodeCoverage/Report/HTML/Renderer/Template/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giphy/giphy-php-client/HEAD/vendor/phpunit/php-code-coverage/src/CodeCoverage/Report/HTML/Renderer/Template/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /vendor/phpunit/php-code-coverage/src/CodeCoverage/Report/HTML/Renderer/Template/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giphy/giphy-php-client/HEAD/vendor/phpunit/php-code-coverage/src/CodeCoverage/Report/HTML/Renderer/Template/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /vendor/phpunit/php-code-coverage/src/CodeCoverage/Report/HTML/Renderer/Template/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giphy/giphy-php-client/HEAD/vendor/phpunit/php-code-coverage/src/CodeCoverage/Report/HTML/Renderer/Template/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /vendor/phpunit/php-token-stream/tests/_fixture/multipleNamespacesWithOneClassUsingNonBraceSyntax.php: -------------------------------------------------------------------------------- 1 | assertTrue($_ENV['configAvailableInBootstrap']); 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/Regression/GitHub/322/phpunit322.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Test.php 4 | 5 | 6 | 7 | 8 | one 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/Generic/Docs/Files/EndFileNoNewlineStandard.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit-mock-objects/tests/_fixture/SomeClass.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /vendor/symfony/console/Tests/Fixtures/input_option_3.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "--option_name", 3 | "shortcut": "-o", 4 | "accept_value": true, 5 | "is_value_required": true, 6 | "is_multiple": false, 7 | "description": "option description", 8 | "default": null 9 | } 10 | -------------------------------------------------------------------------------- /vendor/symfony/console/Tests/Fixtures/input_option_4.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "--option_name", 3 | "shortcut": "-o", 4 | "accept_value": true, 5 | "is_value_required": false, 6 | "is_multiple": true, 7 | "description": "option description", 8 | "default": [] 9 | } 10 | -------------------------------------------------------------------------------- /vendor/symfony/console/Tests/Fixtures/input_option_5.xml: -------------------------------------------------------------------------------- 1 | 2 | 7 | -------------------------------------------------------------------------------- /vendor/symfony/console/Tests/Fixtures/input_option_with_style.md: -------------------------------------------------------------------------------- 1 | **option_name:** 2 | 3 | * Name: `--option_name` 4 | * Shortcut: `-o` 5 | * Accept value: yes 6 | * Is value required: yes 7 | * Is multiple: no 8 | * Description: option description 9 | * Default: `'style'` 10 | -------------------------------------------------------------------------------- /vendor/symfony/debug/Tests/Fixtures/DeprecatedInterface.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/CoverageFunctionTest.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /vendor/symfony/console/Tests/Fixtures/input_argument_3.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | argument description 4 | 5 | default_value 6 | 7 | 8 | -------------------------------------------------------------------------------- /vendor/symfony/console/Tests/Fixtures/input_option_5.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "--option_name", 3 | "shortcut": "-o", 4 | "accept_value": true, 5 | "is_value_required": true, 6 | "is_multiple": false, 7 | "description": "multiline option description", 8 | "default": null 9 | } 10 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit-mock-objects/tests/_fixture/AbstractMockTestClass.php: -------------------------------------------------------------------------------- 1 | 2 | 6 | -------------------------------------------------------------------------------- /vendor/phpunit/php-code-coverage/tests/_files/CoverageFunctionTest.php: -------------------------------------------------------------------------------- 1 | markTestIncomplete(); 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/Generic/Docs/PHP/BacktickOperatorStandard.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /vendor/composer/autoload_files.php: -------------------------------------------------------------------------------- 1 | $vendorDir . '/symfony/polyfill-mbstring/bootstrap.php', 10 | ); 11 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/ChangeCurrentWorkingDirectoryTest.php: -------------------------------------------------------------------------------- 1 | assertTrue(true); 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/SampleClass.php: -------------------------------------------------------------------------------- 1 | a = $a; 11 | $this->b = $b; 12 | $this->c = $c; 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /vendor/sebastian/diff/.travis.yml: -------------------------------------------------------------------------------- 1 | language: php 2 | 3 | install: 4 | - travis_retry composer install --no-interaction --prefer-source 5 | 6 | php: 7 | - 5.3.3 8 | - 5.3 9 | - 5.4 10 | - 5.5 11 | - 5.6 12 | - hhvm 13 | 14 | notifications: 15 | email: false 16 | irc: "irc.freenode.org#phpunit" 17 | -------------------------------------------------------------------------------- /vendor/sebastian/environment/.travis.yml: -------------------------------------------------------------------------------- 1 | language: php 2 | 3 | before_script: 4 | - composer self-update 5 | - composer install --no-interaction --prefer-source --dev 6 | 7 | php: 8 | - 5.3.3 9 | - 5.3 10 | - 5.4 11 | - 5.5 12 | - 5.6 13 | - hhvm 14 | 15 | notifications: 16 | email: false 17 | -------------------------------------------------------------------------------- /vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/PEAR/Docs/Files/LineLengthStandard.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /vendor/symfony/console/Tests/Fixtures/Foo6Command.php: -------------------------------------------------------------------------------- 1 | setName('0foo:bar')->setDescription('0foo:bar command'); 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /vendor/symfony/console/Tests/Fixtures/input_option_with_style.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "--option_name", 3 | "shortcut": "-o", 4 | "accept_value": true, 5 | "is_value_required": true, 6 | "is_multiple": false, 7 | "description": "option description", 8 | "default": "style" 9 | } 10 | -------------------------------------------------------------------------------- /vendor/phpdocumentor/type-resolver/examples/Classy.php: -------------------------------------------------------------------------------- 1 | endCount++; 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/Generic/Docs/Files/LineLengthStandard.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/Generic/Docs/Metrics/NestingLevelStandard.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /config.json: -------------------------------------------------------------------------------- 1 | { 2 | "sortParamsByRequiredFlag": true, 3 | "ensureUniqueParams": true, 4 | "allowUnicodeIdentifiers": true, 5 | "invokerPackage": "GPH", 6 | "srcBasePath": "lib", 7 | "packagePath": "GiphyClient", 8 | "gitUserId": "giphy", 9 | "gitRepoId": "giphy-php-client", 10 | "artifactVersion": "1.0.0" 11 | } 12 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/Regression/GitHub/1471/Issue1471Test.php: -------------------------------------------------------------------------------- 1 | expectOutputString('*'); 7 | 8 | print '*'; 9 | 10 | $this->assertTrue(false); 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/Regression/GitHub/503/Issue503Test.php: -------------------------------------------------------------------------------- 1 | assertSame( 7 | "foo\n", 8 | "foo\r\n" 9 | ); 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/CoverageClassTest.php: -------------------------------------------------------------------------------- 1 | publicMethod(); 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/CoverageFunctionParenthesesTest.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | argument description 4 | 5 | <comment>style</> 6 | 7 | 8 | -------------------------------------------------------------------------------- /vendor/webmozart/assert/.composer-auth.json: -------------------------------------------------------------------------------- 1 | { 2 | "github-oauth": { 3 | "github.com": "PLEASE DO NOT USE THIS TOKEN IN YOUR OWN PROJECTS/FORKS", 4 | "github.com": "This token is reserved for testing the webmozart/* repositories", 5 | "github.com": "a9debbffdd953ee9b3b82dbc3b807cde2086bb86" 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /vendor/phpdocumentor/reflection-common/tests/common/bootstrap.php: -------------------------------------------------------------------------------- 1 | publicMethod(); 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /vendor/phpunit/php-code-coverage/tests/_files/CoverageFunctionParenthesesTest.php: -------------------------------------------------------------------------------- 1 | assertEquals(GITHUB_ISSUE, 797); 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/FatalTest.php: -------------------------------------------------------------------------------- 1 | 2 | 8 | -------------------------------------------------------------------------------- /vendor/phpunit/php-token-stream/tests/_fixture/source5.php: -------------------------------------------------------------------------------- 1 | 6 | */ 7 | public function testSomething() 8 | { 9 | $o = new CoveredClass; 10 | $o->publicMethod(); 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/CoveragePublicTest.php: -------------------------------------------------------------------------------- 1 | 6 | */ 7 | public function testSomething() 8 | { 9 | $o = new CoveredClass; 10 | $o->publicMethod(); 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /vendor/symfony/console/Tests/Fixtures/input_definition_2.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/Regression/GitHub/74/Issue74Test.php: -------------------------------------------------------------------------------- 1 | publicMethod(); 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/CoverageNotPublicTest.php: -------------------------------------------------------------------------------- 1 | 6 | */ 7 | public function testSomething() 8 | { 9 | $o = new CoveredClass; 10 | $o->publicMethod(); 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /vendor/symfony/console/Tests/Fixtures/input_option_with_style_array.md: -------------------------------------------------------------------------------- 1 | **option_name:** 2 | 3 | * Name: `--option_name` 4 | * Shortcut: `-o` 5 | * Accept value: yes 6 | * Is value required: yes 7 | * Is multiple: yes 8 | * Description: option description 9 | * Default: `array ( 0 => 'Hello', 1 => 'world',)` 10 | -------------------------------------------------------------------------------- /vendor/phpunit/php-code-coverage/tests/_files/CoveragePrivateTest.php: -------------------------------------------------------------------------------- 1 | 6 | */ 7 | public function testSomething() 8 | { 9 | $o = new CoveredClass; 10 | $o->publicMethod(); 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /vendor/phpunit/php-code-coverage/tests/_files/CoveragePublicTest.php: -------------------------------------------------------------------------------- 1 | 6 | */ 7 | public function testSomething() 8 | { 9 | $o = new CoveredClass; 10 | $o->publicMethod(); 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /vendor/phpunit/php-code-coverage/tests/_files/source_without_namespace.php: -------------------------------------------------------------------------------- 1 | 6 | */ 7 | public function testSomething() 8 | { 9 | $o = new CoveredClass; 10 | $o->publicMethod(); 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/CoverageProtectedTest.php: -------------------------------------------------------------------------------- 1 | 6 | */ 7 | public function testSomething() 8 | { 9 | $o = new CoveredClass; 10 | $o->publicMethod(); 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /vendor/symfony/config/Tests/Fixtures/Util/schema.xsd: -------------------------------------------------------------------------------- 1 | 2 | 3 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /vendor/symfony/console/Tests/Fixtures/input_definition_3.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /vendor/phpspec/prophecy/fixtures/WithArguments.php: -------------------------------------------------------------------------------- 1 | publicMethod(); 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /vendor/phpunit/php-code-coverage/tests/_files/CoverageNotPublicTest.php: -------------------------------------------------------------------------------- 1 | 6 | */ 7 | public function testSomething() 8 | { 9 | $o = new CoveredClass; 10 | $o->publicMethod(); 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit-mock-objects/src/Framework/MockObject/Generator/mocked_class_method.tpl.dist: -------------------------------------------------------------------------------- 1 | 2 | public function method() 3 | { 4 | $any = new PHPUnit_Framework_MockObject_Matcher_AnyInvokedCount; 5 | $expects = $this->expects($any); 6 | return call_user_func_array(array($expects, 'method'), func_get_args()); 7 | } 8 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit-mock-objects/tests/_fixture/AbstractTrait.php: -------------------------------------------------------------------------------- 1 | addTest(ChildSuite::suite()); 10 | 11 | return $suite; 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/CoverageClassExtendedTest.php: -------------------------------------------------------------------------------- 1 | 6 | */ 7 | public function testSomething() 8 | { 9 | $o = new CoveredClass; 10 | $o->publicMethod(); 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/CoverageNotProtectedTest.php: -------------------------------------------------------------------------------- 1 | 6 | */ 7 | public function testSomething() 8 | { 9 | $o = new CoveredClass; 10 | $o->publicMethod(); 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/NamespaceCoverageClassTest.php: -------------------------------------------------------------------------------- 1 | publicMethod(); 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /vendor/symfony/console/Tests/Fixtures/application_renderexception1.txt: -------------------------------------------------------------------------------- 1 | 2 | 3 | [Symfony\Component\Console\Exception\CommandNotFoundException] 4 | Command "foo" is not defined. 5 | 6 | 7 | -------------------------------------------------------------------------------- /vendor/symfony/console/Tests/Fixtures/input_definition_2.json: -------------------------------------------------------------------------------- 1 | { 2 | "arguments": { 3 | "argument_name": { 4 | "name": "argument_name", 5 | "is_required": true, 6 | "is_array": false, 7 | "description": "", 8 | "default": null 9 | } 10 | }, 11 | "options": [] 12 | } 13 | -------------------------------------------------------------------------------- /vendor/phpunit/php-code-coverage/tests/_files/CoverageNotPrivateTest.php: -------------------------------------------------------------------------------- 1 | 6 | */ 7 | public function testSomething() 8 | { 9 | $o = new CoveredClass; 10 | $o->publicMethod(); 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /vendor/phpunit/php-code-coverage/tests/_files/CoverageProtectedTest.php: -------------------------------------------------------------------------------- 1 | 6 | */ 7 | public function testSomething() 8 | { 9 | $o = new CoveredClass; 10 | $o->publicMethod(); 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/.gitignore: -------------------------------------------------------------------------------- 1 | /.ant_targets 2 | /.idea 3 | /build/documentation 4 | /build/logfiles 5 | /build/phar 6 | /build/phpdox 7 | /build/*.phar 8 | /build/*.phar.asc 9 | /tests/TextUI/*.diff 10 | /tests/TextUI/*.exp 11 | /tests/TextUI/*.log 12 | /tests/TextUI/*.out 13 | /tests/TextUI/*.php 14 | /cache.properties 15 | /composer.lock 16 | /vendor 17 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/Regression/GitHub/322/Issue322Test.php: -------------------------------------------------------------------------------- 1 | publicMethod(); 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/Generic/Docs/Metrics/CyclomaticComplexityStandard.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /vendor/symfony/console/Tests/Fixtures/input_option_with_style.xml: -------------------------------------------------------------------------------- 1 | 2 | 8 | -------------------------------------------------------------------------------- /vendor/guzzle/guzzle/src/Guzzle/Plugin/Cache/CacheKeyProviderInterface.php: -------------------------------------------------------------------------------- 1 | 6 | */ 7 | public function testSomething() 8 | { 9 | $o = new CoveredClass; 10 | $o->publicMethod(); 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /vendor/phpunit/php-code-coverage/tests/_files/CoverageNotProtectedTest.php: -------------------------------------------------------------------------------- 1 | 6 | */ 7 | public function testSomething() 8 | { 9 | $o = new CoveredClass; 10 | $o->publicMethod(); 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /vendor/phpunit/php-code-coverage/tests/_files/NamespaceCoverageClassTest.php: -------------------------------------------------------------------------------- 1 | publicMethod(); 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/CoverageMethodParenthesesTest.php: -------------------------------------------------------------------------------- 1 | publicMethod(); 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/NamespaceCoveragePublicTest.php: -------------------------------------------------------------------------------- 1 | 6 | */ 7 | public function testSomething() 8 | { 9 | $o = new Foo\CoveredClass; 10 | $o->publicMethod(); 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /vendor/phpunit/php-code-coverage/tests/_files/CoverageMethodOneLineAnnotationTest.php: -------------------------------------------------------------------------------- 1 | publicMethod(); 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/CoverageNothingTest.php: -------------------------------------------------------------------------------- 1 | publicMethod(); 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/NamespaceCoverageMethodTest.php: -------------------------------------------------------------------------------- 1 | publicMethod(); 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/NamespaceCoverageNotPublicTest.php: -------------------------------------------------------------------------------- 1 | 6 | */ 7 | public function testSomething() 8 | { 9 | $o = new Foo\CoveredClass; 10 | $o->publicMethod(); 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/NamespaceCoveragePrivateTest.php: -------------------------------------------------------------------------------- 1 | 6 | */ 7 | public function testSomething() 8 | { 9 | $o = new Foo\CoveredClass; 10 | $o->publicMethod(); 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /vendor/guzzle/guzzle/docs/_templates/nav_links.html: -------------------------------------------------------------------------------- 1 |
  • Docs
  • 2 |
  • API
  • 3 |
  • GitHub
  • 4 |
  • Forum
  • 5 |
  • IRC
  • 6 | -------------------------------------------------------------------------------- /vendor/guzzle/guzzle/src/Guzzle/Common/ToArrayInterface.php: -------------------------------------------------------------------------------- 1 | filter(); 6 | 7 | $filter->addFileToBlacklist(__FILE__); 8 | $filter->addFileToBlacklist(dirname(__FILE__) . '/auto_append.php'); 9 | 10 | $coverage->start($_SERVER['SCRIPT_FILENAME']); 11 | -------------------------------------------------------------------------------- /vendor/phpunit/php-code-coverage/tests/_files/CoverageMethodParenthesesTest.php: -------------------------------------------------------------------------------- 1 | publicMethod(); 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /vendor/phpunit/php-code-coverage/tests/_files/NamespaceCoveragePublicTest.php: -------------------------------------------------------------------------------- 1 | 6 | */ 7 | public function testSomething() 8 | { 9 | $o = new Foo\CoveredClass; 10 | $o->publicMethod(); 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/NamespaceCoverageNotPrivateTest.php: -------------------------------------------------------------------------------- 1 | 6 | */ 7 | public function testSomething() 8 | { 9 | $o = new Foo\CoveredClass; 10 | $o->publicMethod(); 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/NamespaceCoverageProtectedTest.php: -------------------------------------------------------------------------------- 1 | 6 | */ 7 | public function testSomething() 8 | { 9 | $o = new Foo\CoveredClass; 10 | $o->publicMethod(); 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /vendor/satooshi/php-coveralls/.gitignore: -------------------------------------------------------------------------------- 1 | # eclipse 2 | .buildpath 3 | .project 4 | .settings/ 5 | 6 | # PHP prj 7 | build/ 8 | cache.properties 9 | 10 | # composer 11 | vendor/ 12 | composer.lock 13 | 14 | # travis 15 | travis/ 16 | 17 | # bin 18 | composer.phar 19 | php-cs-fixer.phar 20 | 21 | .coveralls.yml 22 | .php_cs.cache 23 | phpunit.xml 24 | 25 | box.phar 26 | -------------------------------------------------------------------------------- /vendor/satooshi/php-coveralls/src/Satooshi/Bundle/CoverallsBundle/CoverallsBundle.php: -------------------------------------------------------------------------------- 1 | 11 | */ 12 | class CoverallsBundle extends Bundle 13 | { 14 | } 15 | -------------------------------------------------------------------------------- /vendor/sebastian/global-state/.travis.yml: -------------------------------------------------------------------------------- 1 | language: php 2 | 3 | php: 4 | - 5.3.3 5 | - 5.3 6 | - 5.4 7 | - 5.5 8 | - 5.6 9 | - hhvm 10 | 11 | sudo: false 12 | 13 | before_script: 14 | - composer self-update 15 | - composer install --no-interaction --prefer-source --dev 16 | 17 | script: ./vendor/bin/phpunit 18 | 19 | notifications: 20 | email: false 21 | -------------------------------------------------------------------------------- /vendor/symfony/yaml/Tests/Fixtures/sfObjects.yml: -------------------------------------------------------------------------------- 1 | --- %YAML:1.0 2 | test: Objects 3 | brief: > 4 | Comments at the end of a line 5 | yaml: | 6 | ex1: "foo # bar" 7 | ex2: "foo # bar" # comment 8 | ex3: 'foo # bar' # comment 9 | ex4: foo # comment 10 | php: | 11 | array('ex1' => 'foo # bar', 'ex2' => 'foo # bar', 'ex3' => 'foo # bar', 'ex4' => 'foo') 12 | -------------------------------------------------------------------------------- /vendor/guzzle/guzzle/docs/plugins/plugins-list.rst.inc: -------------------------------------------------------------------------------- 1 | * :doc:`/plugins/async-plugin` 2 | * :doc:`/plugins/backoff-plugin` 3 | * :doc:`/plugins/cache-plugin` 4 | * :doc:`/plugins/cookie-plugin` 5 | * :doc:`/plugins/history-plugin` 6 | * :doc:`/plugins/log-plugin` 7 | * :doc:`/plugins/md5-validator-plugin` 8 | * :doc:`/plugins/mock-plugin` 9 | * :doc:`/plugins/oauth-plugin` 10 | -------------------------------------------------------------------------------- /vendor/phpunit/php-code-coverage/tests/_files/CoverageNothingTest.php: -------------------------------------------------------------------------------- 1 | publicMethod(); 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /vendor/phpunit/php-code-coverage/tests/_files/NamespaceCoverageMethodTest.php: -------------------------------------------------------------------------------- 1 | publicMethod(); 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /vendor/phpunit/php-code-coverage/tests/_files/NamespaceCoverageNotPublicTest.php: -------------------------------------------------------------------------------- 1 | 6 | */ 7 | public function testSomething() 8 | { 9 | $o = new Foo\CoveredClass; 10 | $o->publicMethod(); 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /vendor/phpunit/php-code-coverage/tests/_files/NamespaceCoveragePrivateTest.php: -------------------------------------------------------------------------------- 1 | 6 | */ 7 | public function testSomething() 8 | { 9 | $o = new Foo\CoveredClass; 10 | $o->publicMethod(); 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/Regression/Trac/523/Issue523Test.php: -------------------------------------------------------------------------------- 1 | assertAttributeEquals('foo', 'field', new Issue523()); 7 | } 8 | }; 9 | 10 | class Issue523 extends ArrayIterator 11 | { 12 | protected $field = 'foo'; 13 | } 14 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/NamespaceCoverageClassExtendedTest.php: -------------------------------------------------------------------------------- 1 | 6 | */ 7 | public function testSomething() 8 | { 9 | $o = new Foo\CoveredClass; 10 | $o->publicMethod(); 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/NamespaceCoverageNotProtectedTest.php: -------------------------------------------------------------------------------- 1 | 6 | */ 7 | public function testSomething() 8 | { 9 | $o = new Foo\CoveredClass; 10 | $o->publicMethod(); 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/Generic/Docs/Files/ByteOrderMarkStandard.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /vendor/phpspec/prophecy/fixtures/OptionalDepsClass.php: -------------------------------------------------------------------------------- 1 | 6 | */ 7 | public function testSomething() 8 | { 9 | $o = new Foo\CoveredClass; 10 | $o->publicMethod(); 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /vendor/phpunit/php-code-coverage/tests/_files/NamespaceCoverageProtectedTest.php: -------------------------------------------------------------------------------- 1 | 6 | */ 7 | public function testSomething() 8 | { 9 | $o = new Foo\CoveredClass; 10 | $o->publicMethod(); 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /vendor/phpunit/php-file-iterator/ChangeLog.md: -------------------------------------------------------------------------------- 1 | # Change Log 2 | 3 | All notable changes to this project will be documented in this file. This project adheres to [Semantic Versioning](http://semver.org/). 4 | 5 | ## [1.4.0] - 2015-04-02 6 | 7 | ### Added 8 | 9 | * [Added support for wildcards (glob) in exclude](https://github.com/sebastianbergmann/php-file-iterator/pull/23) 10 | 11 | -------------------------------------------------------------------------------- /vendor/symfony/console/Tests/Fixtures/command_1.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "descriptor:command1", 3 | "usage": [ 4 | "descriptor:command1", 5 | "alias1", 6 | "alias2" 7 | ], 8 | "description": "command 1 description", 9 | "help": "command 1 help", 10 | "definition": { 11 | "arguments": [], 12 | "options": [] 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /vendor/phpunit/php-code-coverage/CONTRIBUTING.md: -------------------------------------------------------------------------------- 1 | Pull Requests for bug fixes should be made against the current release branch (2.0). 2 | 3 | Pull Requests for new features should be made against master. 4 | 5 | For further notes please refer to [https://github.com/sebastianbergmann/phpunit/blob/master/CONTRIBUTING.md](https://github.com/sebastianbergmann/phpunit/blob/master/CONTRIBUTING.md) 6 | -------------------------------------------------------------------------------- /vendor/phpunit/php-code-coverage/tests/_files/NamespaceCoverageClassExtendedTest.php: -------------------------------------------------------------------------------- 1 | 6 | */ 7 | public function testSomething() 8 | { 9 | $o = new Foo\CoveredClass; 10 | $o->publicMethod(); 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /vendor/phpunit/php-code-coverage/tests/_files/NamespaceCoverageNotProtectedTest.php: -------------------------------------------------------------------------------- 1 | 6 | */ 7 | public function testSomething() 8 | { 9 | $o = new Foo\CoveredClass; 10 | $o->publicMethod(); 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/CoverageMethodParenthesesWhitespaceTest.php: -------------------------------------------------------------------------------- 1 | publicMethod(); 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/Generic/Docs/PHP/DisallowShortOpenTagStandard.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | to delimit PHP code, not the shorthand. This is the most portable way to include PHP code on differing operating systems and setups. 5 | ]]> 6 | 7 | 8 | -------------------------------------------------------------------------------- /vendor/symfony/console/Tests/Fixtures/input_option_with_style_array.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "--option_name", 3 | "shortcut": "-o", 4 | "accept_value": true, 5 | "is_value_required": true, 6 | "is_multiple": true, 7 | "description": "option description", 8 | "default": [ 9 | "Hello", 10 | "world" 11 | ] 12 | } 13 | -------------------------------------------------------------------------------- /vendor/phpunit/php-code-coverage/tests/_files/source_with_namespace.php: -------------------------------------------------------------------------------- 1 | publicMethod(); 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /vendor/satooshi/php-coveralls/src/Satooshi/Bundle/CoverallsV1Bundle/CoverallsV1Bundle.php: -------------------------------------------------------------------------------- 1 | 11 | */ 12 | class CoverallsV1Bundle extends Bundle 13 | { 14 | } 15 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/DependencyTestSuite.php: -------------------------------------------------------------------------------- 1 | addTestSuite('DependencySuccessTest'); 9 | $suite->addTestSuite('DependencyFailureTest'); 10 | 11 | return $suite; 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/IsolationTest.php: -------------------------------------------------------------------------------- 1 | assertFalse($this->isInIsolation()); 7 | } 8 | 9 | public function testIsInIsolationReturnsTrue() 10 | { 11 | $this->assertTrue($this->isInIsolation()); 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/Generic/Docs/VersionControl/SubversionPropertiesStandard.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /vendor/symfony/console/Tests/Fixtures/application_renderexception2.txt: -------------------------------------------------------------------------------- 1 | 2 | 3 | [Symfony\Component\Console\Exception\InvalidOptionException] 4 | The "--foo" option does not exist. 5 | 6 | 7 | list [--raw] [--format FORMAT] [--] [] 8 | 9 | -------------------------------------------------------------------------------- /vendor/guzzle/guzzle/src/Guzzle/Log/AbstractLogAdapter.php: -------------------------------------------------------------------------------- 1 | log; 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /vendor/phpunit/php-code-coverage/src/CodeCoverage/Report/HTML/Renderer/Template/coverage_bar.html.dist: -------------------------------------------------------------------------------- 1 |
    2 |
    3 | {{percent}}% covered ({{level}}) 4 |
    5 |
    6 | -------------------------------------------------------------------------------- /vendor/phpunit/php-token-stream/tests/_fixture/class_with_method_that_declares_anonymous_class2.php: -------------------------------------------------------------------------------- 1 | method_in_anonymous_class(); 11 | } 12 | 13 | public function methodTwo() { 14 | return false; 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit-mock-objects/tests/_fixture/PartialMockTestClass.php: -------------------------------------------------------------------------------- 1 | constructorCalled = true; 9 | } 10 | 11 | public function doSomething() 12 | { 13 | } 14 | 15 | public function doAnotherThing() 16 | { 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /vendor/squizlabs/php_codesniffer/phpcs.xml.dist: -------------------------------------------------------------------------------- 1 | 2 | 3 | The coding standard for PHP_CodeSniffer itself. 4 | 5 | CodeSniffer.php 6 | CodeSniffer 7 | scripts 8 | 9 | */Tests/* 10 | 11 | 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /vendor/guzzle/guzzle/.travis.yml: -------------------------------------------------------------------------------- 1 | language: php 2 | 3 | php: 4 | - 5.3 5 | - 5.4 6 | - 5.5 7 | - 5.6 8 | - hhvm 9 | 10 | before_script: 11 | - curl --version 12 | - pecl install uri_template-beta || echo "pecl uri_template not available" 13 | - composer self-update 14 | - composer install --no-interaction --prefer-source --dev 15 | - ~/.nvm/nvm.sh install v0.6.14 16 | 17 | script: composer test 18 | -------------------------------------------------------------------------------- /vendor/guzzle/guzzle/src/Guzzle/Batch/BatchTransferInterface.php: -------------------------------------------------------------------------------- 1 | assertEquals( 7 | (object) array(1, 2, "Test\r\n", 4, 5, 6, 7, 8), 8 | (object) array(1, 2, "Test\r\n", 4, 1, 6, 7, 8) 9 | ); 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /vendor/sebastian/comparator/tests/_files/TestClass.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | namespace SebastianBergmann\Comparator; 12 | 13 | class TestClass { 14 | } 15 | -------------------------------------------------------------------------------- /vendor/sebastian/recursion-context/.travis.yml: -------------------------------------------------------------------------------- 1 | language: php 2 | 3 | php: 4 | - 5.3.3 5 | - 5.3 6 | - 5.4 7 | - 5.5 8 | - 5.6 9 | - hhvm 10 | 11 | sudo: false 12 | 13 | before_script: 14 | - composer self-update 15 | - composer install --no-interaction --prefer-source --dev 16 | 17 | script: ./vendor/bin/phpunit 18 | 19 | notifications: 20 | email: false 21 | irc: "irc.freenode.org#phpunit" 22 | -------------------------------------------------------------------------------- /docs/Model/MetaObject.md: -------------------------------------------------------------------------------- 1 | # MetaObject 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **meta** | [**\GPH\Model\MetaContent**](MetaContent.md) | | [optional] 7 | 8 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 9 | 10 | 11 | -------------------------------------------------------------------------------- /vendor/phpunit/php-token-stream/tests/_fixture/source3.php: -------------------------------------------------------------------------------- 1 | addTestSuite('OneTest'); 11 | $suite->addTestSuite('TwoTest'); 12 | 13 | return $suite; 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/RequirementsClassBeforeClassHookTest.php: -------------------------------------------------------------------------------- 1 | array($vendorDir . '/phpspec/prophecy/src'), 10 | 'Guzzle\\Tests' => array($vendorDir . '/guzzle/guzzle/tests'), 11 | 'Guzzle' => array($vendorDir . '/guzzle/guzzle/src'), 12 | ); 13 | -------------------------------------------------------------------------------- /vendor/symfony/console/Tests/Fixtures/input_option_with_style_array.xml: -------------------------------------------------------------------------------- 1 | 2 | 9 | -------------------------------------------------------------------------------- /vendor/symfony/yaml/Tests/Fixtures/multiple_lines_as_literal_block.yml: -------------------------------------------------------------------------------- 1 | data: 2 | single_line: 'foo bar baz' 3 | multi_line: | 4 | foo 5 | line with trailing spaces: 6 | 7 | bar 8 | integer like line: 9 | 123456789 10 | empty line: 11 | 12 | baz 13 | nested_inlined_multi_line_string: { inlined_multi_line: "foo\nbar\r\nempty line:\n\nbaz" } 14 | -------------------------------------------------------------------------------- /vendor/phpspec/prophecy/fixtures/WithReturnTypehints.php: -------------------------------------------------------------------------------- 1 | assertTrue(true); 8 | } 9 | 10 | public function testSTDERR() 11 | { 12 | fwrite(STDERR, 'STDERR works as usual.'); 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /vendor/symfony/console/Tests/Fixtures/command_1.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | descriptor:command1 5 | alias1 6 | alias2 7 | 8 | command 1 description 9 | command 1 help 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /vendor/symfony/yaml/Tests/Fixtures/index.yml: -------------------------------------------------------------------------------- 1 | - escapedCharacters 2 | - sfComments 3 | - sfCompact 4 | - sfTests 5 | - sfObjects 6 | - sfMergeKey 7 | - sfQuotes 8 | - YtsAnchorAlias 9 | - YtsBasicTests 10 | - YtsBlockMapping 11 | - YtsDocumentSeparator 12 | - YtsErrorTests 13 | - YtsFlowCollections 14 | - YtsFoldedScalars 15 | - YtsNullsAndEmpties 16 | - YtsSpecificationExamples 17 | - YtsTypeTransfers 18 | - unindentedCollections 19 | -------------------------------------------------------------------------------- /docs/Model/GifImagesLooping.md: -------------------------------------------------------------------------------- 1 | # GifImagesLooping 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **mp4** | **string** | The URL for this GIF in .MP4 format. | [optional] 7 | 8 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 9 | 10 | 11 | -------------------------------------------------------------------------------- /docs/Model/InlineResponse400.md: -------------------------------------------------------------------------------- 1 | # InlineResponse400 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **meta** | [**\GPH\Model\MetaContent**](MetaContent.md) | | [optional] 7 | 8 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 9 | 10 | 11 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/NamespaceCoverageCoversClassPublicTest.php: -------------------------------------------------------------------------------- 1 | publicMethod(); 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /vendor/satooshi/php-coveralls/src/Satooshi/Bundle/CoverallsV1Bundle/Version.php: -------------------------------------------------------------------------------- 1 | 9 | */ 10 | final class Version 11 | { 12 | /** 13 | * CoverallsV1Bundle version. 14 | * 15 | * @var string 16 | */ 17 | const VERSION = '1.0.1'; 18 | } 19 | -------------------------------------------------------------------------------- /vendor/sebastian/global-state/src/Exception.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | namespace SebastianBergmann\GlobalState; 12 | 13 | /** 14 | */ 15 | interface Exception 16 | { 17 | } 18 | -------------------------------------------------------------------------------- /vendor/symfony/console/Tests/Fixtures/command_mbstring.txt: -------------------------------------------------------------------------------- 1 | Usage: 2 | descriptor:åèä [options] [--] 3 | descriptor:åèä -o|--option_name 4 | descriptor:åèä 5 | 6 | Arguments: 7 | argument_åèä 8 | 9 | Options: 10 | -o, --option_åèä 11 | 12 | Help: 13 | command åèä help 14 | -------------------------------------------------------------------------------- /vendor/symfony/console/Tests/Fixtures/input_definition_3.json: -------------------------------------------------------------------------------- 1 | { 2 | "arguments": [], 3 | "options": { 4 | "option_name": { 5 | "name": "--option_name", 6 | "shortcut": "-o", 7 | "accept_value": false, 8 | "is_value_required": false, 9 | "is_multiple": false, 10 | "description": "", 11 | "default": false 12 | } 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /vendor/symfony/debug/Resources/ext/config.w32: -------------------------------------------------------------------------------- 1 | // $Id$ 2 | // vim:ft=javascript 3 | 4 | // If your extension references something external, use ARG_WITH 5 | // ARG_WITH("symfony_debug", "for symfony_debug support", "no"); 6 | 7 | // Otherwise, use ARG_ENABLE 8 | // ARG_ENABLE("symfony_debug", "enable symfony_debug support", "no"); 9 | 10 | if (PHP_SYMFONY_DEBUG != "no") { 11 | EXTENSION("symfony_debug", "symfony_debug.c"); 12 | } 13 | 14 | -------------------------------------------------------------------------------- /vendor/phpunit/php-code-coverage/tests/_files/NamespaceCoverageCoversClassPublicTest.php: -------------------------------------------------------------------------------- 1 | publicMethod(); 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/Regression/GitHub/1149/Issue1149Test.php: -------------------------------------------------------------------------------- 1 | assertTrue(true); 7 | print '1'; 8 | } 9 | 10 | /** 11 | * @runInSeparateProcess 12 | */ 13 | public function testTwo() 14 | { 15 | $this->assertTrue(true); 16 | print '2'; 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /vendor/psr/log/Psr/Log/LogLevel.php: -------------------------------------------------------------------------------- 1 | Usage:
    2 | descriptor:command2 [options] [--] 3 | descriptor:command2 -o|--option_name 4 | descriptor:command2 5 | 6 | Arguments: 7 | argument_name 8 | 9 | Options: 10 | -o, --option_name 11 | 12 | Help: 13 | command 2 help 14 | -------------------------------------------------------------------------------- /vendor/sebastian/recursion-context/src/Exception.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | namespace SebastianBergmann\RecursionContext; 12 | 13 | /** 14 | */ 15 | interface Exception 16 | { 17 | } 18 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/DependencySuccessTest.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | namespace SebastianBergmann\GlobalState\TestFixture; 12 | 13 | function snapshotFunction() 14 | { 15 | } 16 | -------------------------------------------------------------------------------- /vendor/symfony/console/Tests/Fixtures/input_definition_4.md: -------------------------------------------------------------------------------- 1 | ### Arguments: 2 | 3 | **argument_name:** 4 | 5 | * Name: argument_name 6 | * Is required: yes 7 | * Is array: no 8 | * Description: 9 | * Default: `NULL` 10 | 11 | ### Options: 12 | 13 | **option_name:** 14 | 15 | * Name: `--option_name` 16 | * Shortcut: `-o` 17 | * Accept value: no 18 | * Is value required: no 19 | * Is multiple: no 20 | * Description: 21 | * Default: `false` 22 | -------------------------------------------------------------------------------- /vendor/phpdocumentor/type-resolver/examples/01-resolving-simple-types.php: -------------------------------------------------------------------------------- 1 | resolve('string|integer')); 11 | 12 | // Will return the string "string|int" 13 | var_dump((string)$typeResolver->resolve('string|integer')); 14 | -------------------------------------------------------------------------------- /vendor/phpspec/prophecy/spec/Prophecy/Exception/Doubler/DoubleExceptionSpec.php: -------------------------------------------------------------------------------- 1 | shouldBeAnInstanceOf('RuntimeException'); 12 | $this->shouldBeAnInstanceOf('Prophecy\Exception\Doubler\DoublerException'); 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/DependencyFailureTest.php: -------------------------------------------------------------------------------- 1 | fail(); 7 | } 8 | 9 | /** 10 | * @depends testOne 11 | */ 12 | public function testTwo() 13 | { 14 | } 15 | 16 | /** 17 | * @depends testTwo 18 | */ 19 | public function testThree() 20 | { 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /vendor/satooshi/php-coveralls/circle.yml: -------------------------------------------------------------------------------- 1 | machine: 2 | timezone: America/Los_Angeles 3 | php: 4 | version: 5.3.3 5 | 6 | dependencies: 7 | override: 8 | - mkdir -p build/logs 9 | - composer update --prefer-stable --prefer-lowest --no-interaction 10 | - sed -i 's/^;//' ~/.phpenv/versions/$(phpenv global)/etc/conf.d/xdebug.ini 11 | 12 | test: 13 | override: 14 | - phpunit 15 | post: 16 | - bin/coveralls -v --exclude-no-stmt 17 | -------------------------------------------------------------------------------- /vendor/satooshi/php-coveralls/src/Satooshi/Bundle/CoverallsBundle/Entity/ArrayConvertable.php: -------------------------------------------------------------------------------- 1 | 9 | */ 10 | interface ArrayConvertable 11 | { 12 | /** 13 | * Convert to an array. 14 | * 15 | * @return array 16 | */ 17 | public function toArray(); 18 | } 19 | -------------------------------------------------------------------------------- /vendor/sebastian/comparator/tests/_files/TestClassComparator.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | namespace SebastianBergmann\Comparator; 12 | 13 | class TestClassComparator extends ObjectComparator { 14 | } 15 | -------------------------------------------------------------------------------- /vendor/phpunit/php-code-coverage/.travis.yml: -------------------------------------------------------------------------------- 1 | language: php 2 | 3 | php: 4 | - 5.3.3 5 | - 5.3 6 | - 5.4 7 | - 5.5 8 | - 5.6 9 | 10 | before_script: 11 | - COMPOSER_ROOT_VERSION=dev-master composer install --prefer-source 12 | 13 | script: vendor/bin/phpunit --configuration ./build/travis-ci.xml 14 | 15 | notifications: 16 | email: false 17 | irc: 18 | channels: 19 | - "irc.freenode.org#phpunit" 20 | use_notice: true 21 | -------------------------------------------------------------------------------- /vendor/sebastian/global-state/tests/_fixture/SnapshotTrait.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | namespace SebastianBergmann\GlobalState\TestFixture; 12 | 13 | /** 14 | */ 15 | trait SnapshotTrait 16 | { 17 | } 18 | -------------------------------------------------------------------------------- /vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/Generic/Docs/PHP/DisallowAlternativePHPTagsStandard.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | to delimit PHP code, do not use the ASP <% %> style tags nor the tags. This is the most portable way to include PHP code on differing operating systems and setups. 5 | ]]> 6 | 7 | 8 | -------------------------------------------------------------------------------- /vendor/symfony/polyfill-mbstring/README.md: -------------------------------------------------------------------------------- 1 | Symfony Polyfill / Mbstring 2 | =========================== 3 | 4 | This component provides a partial, native PHP implementation for the 5 | [Mbstring](http://php.net/mbstring) extension. 6 | 7 | More information can be found in the 8 | [main Polyfill README](https://github.com/symfony/polyfill/blob/master/README.md). 9 | 10 | License 11 | ======= 12 | 13 | This library is released under the [MIT license](LICENSE). 14 | -------------------------------------------------------------------------------- /docs/Model/Breadcrumb.md: -------------------------------------------------------------------------------- 1 | # Breadcrumb 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **url** | **string** | | [optional] 7 | **id** | **int** | | [optional] 8 | **name** | **string** | | [optional] 9 | 10 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 11 | 12 | 13 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit-mock-objects/tests/_fixture/ClassThatImplementsSerializable.php: -------------------------------------------------------------------------------- 1 | $value) { 12 | $this->{$key} = $value; 13 | } 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/src/ForwardCompatibility/Assert.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | namespace PHPUnit\Framework; 12 | 13 | use PHPUnit_Framework_Assert; 14 | 15 | abstract class Assert extends PHPUnit_Framework_Assert 16 | { 17 | } 18 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/CoverageTwoDefaultClassAnnotations.php: -------------------------------------------------------------------------------- 1 | 11 | */ 12 | public function testSomething() 13 | { 14 | $o = new Foo\CoveredClass; 15 | $o->publicMethod(); 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /docs/Model/TrendingTag.md: -------------------------------------------------------------------------------- 1 | # TrendingTag 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **id** | **int** | | [optional] 7 | **name_encoded** | **string** | | [optional] 8 | **name** | **string** | | [optional] 9 | 10 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 11 | 12 | 13 | -------------------------------------------------------------------------------- /vendor/guzzle/guzzle/src/Guzzle/Cache/AbstractCacheAdapter.php: -------------------------------------------------------------------------------- 1 | cache; 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /vendor/guzzle/guzzle/tests/bootstrap.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | namespace SebastianBergmann\GlobalState\TestFixture; 12 | 13 | /** 14 | */ 15 | interface BlacklistedInterface 16 | { 17 | } 18 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/src/Exception.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | /** 12 | * Marker interface for PHPUnit exceptions. 13 | * 14 | * @since Interface available since Release 4.0.0 15 | */ 16 | interface PHPUnit_Exception 17 | { 18 | } 19 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/src/ForwardCompatibility/TestCase.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | namespace PHPUnit\Framework; 12 | 13 | use PHPUnit_Framework_TestCase; 14 | 15 | abstract class TestCase extends PHPUnit_Framework_TestCase 16 | { 17 | } 18 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/src/Runner/Exception.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | /** 12 | * @since Class available since Release 4.0.0 13 | */ 14 | class PHPUnit_Runner_Exception extends RuntimeException implements PHPUnit_Exception 15 | { 16 | } 17 | -------------------------------------------------------------------------------- /vendor/sebastian/comparator/build/travis-ci.xml: -------------------------------------------------------------------------------- 1 | 2 | 7 | 8 | ../tests 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /vendor/sebastian/exporter/.travis.yml: -------------------------------------------------------------------------------- 1 | language: php 2 | 3 | before_script: 4 | - composer self-update 5 | - composer install --no-interaction --prefer-source --dev 6 | 7 | php: 8 | - 5.3.3 9 | - 5.3 10 | - 5.4 11 | - 5.5 12 | - 5.6 13 | - hhvm 14 | 15 | notifications: 16 | email: false 17 | webhooks: 18 | urls: 19 | - https://webhooks.gitter.im/e/6668f52f3dd4e3f81960 20 | on_success: always 21 | on_failure: always 22 | on_start: false 23 | 24 | -------------------------------------------------------------------------------- /vendor/phpunit/php-code-coverage/tests/_files/CoverageTwoDefaultClassAnnotations.php: -------------------------------------------------------------------------------- 1 | 11 | */ 12 | public function testSomething() 13 | { 14 | $o = new Foo\CoveredClass; 15 | $o->publicMethod(); 16 | } 17 | 18 | } 19 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/Regression/GitHub/1337/Issue1337Test.php: -------------------------------------------------------------------------------- 1 | assertTrue($a); 10 | } 11 | 12 | public function dataProvider() 13 | { 14 | return array( 15 | 'c:\\'=> array(true), 16 | 0.9 => array(true) 17 | ); 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /docs/Model/ShallowTag.md: -------------------------------------------------------------------------------- 1 | # ShallowTag 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **name** | **string** | Category name | [optional] 7 | **name_encoded** | **string** | Category name, with dashes instead of spaces. | [optional] 8 | 9 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 10 | 11 | 12 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/src/ForwardCompatibility/TestListener.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | namespace PHPUnit\Framework; 12 | 13 | use PHPUnit_Framework_TestListener; 14 | 15 | interface TestListener extends PHPUnit_Framework_TestListener 16 | { 17 | } 18 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/src/Framework/CodeCoverageException.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | /** 12 | * @since Class available since Release 4.0.0 13 | */ 14 | class PHPUnit_Framework_CodeCoverageException extends PHPUnit_Framework_Exception 15 | { 16 | } 17 | -------------------------------------------------------------------------------- /vendor/sebastian/global-state/src/RuntimeException.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | namespace SebastianBergmann\GlobalState; 12 | 13 | /** 14 | */ 15 | class RuntimeException extends \RuntimeException implements Exception 16 | { 17 | } 18 | -------------------------------------------------------------------------------- /docs/Model/InlineResponse2001.md: -------------------------------------------------------------------------------- 1 | # InlineResponse2001 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **data** | [**\GPH\Model\Gif**](Gif.md) | | [optional] 7 | **meta** | [**\GPH\Model\MetaContent**](MetaContent.md) | | [optional] 8 | 9 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 10 | 11 | 12 | -------------------------------------------------------------------------------- /docs/Model/Tag.md: -------------------------------------------------------------------------------- 1 | # Tag 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **name** | **string** | Category name | [optional] 7 | **gif** | [**\GPH\Model\Gif**](Gif.md) | A gif which can be used as the icon for this category. | [optional] 8 | 9 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 10 | 11 | 12 | -------------------------------------------------------------------------------- /vendor/phpunit/php-file-iterator/README.md: -------------------------------------------------------------------------------- 1 | # File_Iterator 2 | 3 | ## Installation 4 | 5 | You can add this library as a local, per-project dependency to your project using [Composer](https://getcomposer.org/): 6 | 7 | composer require phpunit/php-file-iterator 8 | 9 | If you only need this library during development, for instance to run your project's test suite, then you should add it as a development-time dependency: 10 | 11 | composer require --dev phpunit/php-file-iterator 12 | 13 | -------------------------------------------------------------------------------- /vendor/symfony/config/Tests/Fixtures/BarNode.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | namespace Symfony\Component\Config\Tests\Fixtures; 13 | 14 | use Symfony\Component\Config\Definition\ArrayNode; 15 | 16 | class BarNode extends ArrayNode 17 | { 18 | } 19 | -------------------------------------------------------------------------------- /vendor/guzzle/guzzle/phing/build.properties.dist: -------------------------------------------------------------------------------- 1 | # you may need to update this if you're working on a fork. 2 | guzzle.remote=git@github.com:guzzle/guzzle.git 3 | 4 | # github credentials -- only used by GitHub API calls to create subtree repos 5 | github.basicauth=username:password 6 | # for the subtree split and testing 7 | github.org=guzzle 8 | 9 | # your git path 10 | cmd.git=git 11 | 12 | # your composer command 13 | cmd.composer=composer 14 | 15 | # test server start 16 | cmd.testserver=node 17 | -------------------------------------------------------------------------------- /vendor/sebastian/global-state/tests/_fixture/BlacklistedChildClass.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | namespace SebastianBergmann\GlobalState\TestFixture; 12 | 13 | /** 14 | */ 15 | class BlacklistedChildClass extends BlacklistedClass 16 | { 17 | } 18 | -------------------------------------------------------------------------------- /vendor/sebastian/global-state/tests/_fixture/BlacklistedClass.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | namespace SebastianBergmann\GlobalState\TestFixture; 12 | 13 | /** 14 | */ 15 | class BlacklistedClass 16 | { 17 | private static $attribute; 18 | } 19 | -------------------------------------------------------------------------------- /docs/Model/BaseChannelModelGifs.md: -------------------------------------------------------------------------------- 1 | # BaseChannelModelGifs 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **data** | [**\GPH\Model\Gif[]**](Gif.md) | | [optional] 7 | **pagination** | [**\GPH\Model\Pagination**](Pagination.md) | | [optional] 8 | 9 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 10 | 11 | 12 | -------------------------------------------------------------------------------- /docs/Model/InlineResponse2002.md: -------------------------------------------------------------------------------- 1 | # InlineResponse2002 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **data** | [**\GPH\Model\RandomGif**](RandomGif.md) | | [optional] 7 | **meta** | [**\GPH\Model\MetaContent**](MetaContent.md) | | [optional] 8 | 9 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 10 | 11 | 12 | -------------------------------------------------------------------------------- /vendor/phpunit/php-text-template/README.md: -------------------------------------------------------------------------------- 1 | # Text_Template 2 | 3 | ## Installation 4 | 5 | ## Installation 6 | 7 | To add this package as a local, per-project dependency to your project, simply add a dependency on `phpunit/php-text-template` to your project's `composer.json` file. Here is a minimal example of a `composer.json` file that just defines a dependency on Text_Template: 8 | 9 | { 10 | "require": { 11 | "phpunit/php-text-template": "~1.2" 12 | } 13 | } 14 | 15 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/Singleton.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | namespace PHPUnit\Framework; 12 | 13 | use PHPUnit_Framework_BaseTestListener; 14 | 15 | abstract class BaseTestListener extends PHPUnit_Framework_BaseTestListener 16 | { 17 | } 18 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/Regression/GitHub/1374/Issue1374Test.php: -------------------------------------------------------------------------------- 1 | fail('This should not be reached'); 15 | } 16 | 17 | protected function tearDown() 18 | { 19 | print __FUNCTION__; 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /vendor/guzzle/guzzle/.gitignore: -------------------------------------------------------------------------------- 1 | # Ingore common cruft 2 | .DS_STORE 3 | coverage 4 | .idea 5 | 6 | # Ignore binary files 7 | guzzle.phar 8 | guzzle-min.phar 9 | 10 | # Ignore potentially sensitive phpunit file 11 | phpunit.xml 12 | 13 | # Ignore composer generated files 14 | composer.phar 15 | composer.lock 16 | composer-test.lock 17 | vendor/ 18 | 19 | # Ignore build files 20 | build/ 21 | phing/build.properties 22 | 23 | # Ignore subsplit working directory 24 | .subsplit 25 | 26 | docs/_build 27 | docs/*.pyc 28 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/src/Framework/InvalidCoversTargetException.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | /** 12 | * @since Class available since Release 4.0.0 13 | */ 14 | class PHPUnit_Framework_InvalidCoversTargetException extends PHPUnit_Framework_CodeCoverageException 15 | { 16 | } 17 | -------------------------------------------------------------------------------- /vendor/satooshi/php-coveralls/devtools/composer.json: -------------------------------------------------------------------------------- 1 | { 2 | "require": { 3 | "php": ">=5.3.6", 4 | "ext-json": "*", 5 | "ext-simplexml": "*", 6 | "apigen/apigen": "^2.8", 7 | "fabpot/php-cs-fixer": "^1.11", 8 | "pdepend/pdepend": "^2.2", 9 | "phpmd/phpmd": "^2.3", 10 | "sebastian/finder-facade": "^1.1", 11 | "sebastian/phpcpd": "^1.4", 12 | "squizlabs/php_codesniffer": "^1.4", 13 | "theseer/fdomdocument": "^1.6" 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/command/command_0.php: -------------------------------------------------------------------------------- 1 | caution('Lorem ipsum dolor sit amet'); 11 | }; 12 | -------------------------------------------------------------------------------- /vendor/symfony/console/Tests/Fixtures/input_definition_4.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit-mock-objects/tests/_fixture/SingletonClass.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | /** 12 | * A marker interface for marking a unit test as being skipped. 13 | * 14 | * @since Interface available since Release 3.0.0 15 | */ 16 | interface PHPUnit_Framework_SkippedTest 17 | { 18 | } 19 | -------------------------------------------------------------------------------- /vendor/sebastian/global-state/tests/_fixture/SnapshotDomDocument.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | namespace SebastianBergmann\GlobalState\TestFixture; 12 | 13 | use DomDocument; 14 | 15 | /** 16 | */ 17 | class SnapshotDomDocument extends DomDocument 18 | { 19 | } 20 | -------------------------------------------------------------------------------- /vendor/sebastian/recursion-context/README.md: -------------------------------------------------------------------------------- 1 | # Recursion Context 2 | 3 | ... 4 | 5 | ## Installation 6 | 7 | You can add this library as a local, per-project dependency to your project using [Composer](https://getcomposer.org/): 8 | 9 | composer require sebastian/recursion-context 10 | 11 | If you only need this library during development, for instance to run your project's test suite, then you should add it as a development-time dependency: 12 | 13 | composer require --dev sebastian/recursion-context 14 | 15 | -------------------------------------------------------------------------------- /vendor/symfony/console/Tests/Fixtures/DescriptorApplication1.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | namespace Symfony\Component\Console\Tests\Fixtures; 13 | 14 | use Symfony\Component\Console\Application; 15 | 16 | class DescriptorApplication1 extends Application 17 | { 18 | } 19 | -------------------------------------------------------------------------------- /vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/command/command_3.php: -------------------------------------------------------------------------------- 1 | title('First title'); 11 | $output->title('Second title'); 12 | }; 13 | -------------------------------------------------------------------------------- /vendor/phpunit/php-code-coverage/src/CodeCoverage/Report/XML/Directory.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | /** 12 | * @since Class available since Release 2.0.0 13 | */ 14 | class PHP_CodeCoverage_Report_XML_Directory extends PHP_CodeCoverage_Report_XML_Node 15 | { 16 | } 17 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit-mock-objects/tests/_fixture/MethodCallback.php: -------------------------------------------------------------------------------- 1 |