├── assets ├── .gitkeep ├── backend │ ├── .gitkeep │ ├── css │ │ └── .gitkeep │ ├── js │ │ └── .gitkeep │ └── images │ │ └── .gitkeep └── frontend │ ├── .gitkeep │ ├── css │ └── .gitkeep │ ├── js │ └── .gitkeep │ └── images │ └── .gitkeep ├── application ├── modules │ ├── Backend │ │ ├── .gitkeep │ │ ├── models │ │ │ └── .gitkeep │ │ └── views │ │ │ └── .gitkeep │ ├── Frontend │ │ ├── .gitkeep │ │ ├── views │ │ │ └── .gitkeep │ │ └── models │ │ │ └── .gitkeep │ └── index.html ├── .htaccess ├── views │ ├── errors │ │ ├── cli │ │ │ ├── error_404.php │ │ │ ├── error_general.php │ │ │ ├── error_db.php │ │ │ └── index.html │ │ ├── index.html │ │ └── html │ │ │ └── index.html │ └── index.html ├── index.html ├── cache │ └── index.html ├── core │ └── index.html ├── helpers │ └── index.html ├── hooks │ └── index.html ├── language │ ├── index.html │ └── english │ │ └── index.html ├── logs │ └── index.html ├── models │ └── index.html ├── controllers │ └── index.html ├── libraries │ └── index.html ├── third_party │ └── index.html └── config │ ├── development │ ├── index.html │ ├── hooks.php │ └── profiler.php │ ├── production │ ├── index.html │ ├── hooks.php │ └── profiler.php │ └── testing │ ├── index.html │ ├── hooks.php │ └── profiler.php ├── vendor ├── psr │ └── log │ │ ├── .gitignore │ │ └── Psr │ │ └── Log │ │ ├── InvalidArgumentException.php │ │ ├── LoggerAwareInterface.php │ │ ├── LogLevel.php │ │ └── LoggerAwareTrait.php ├── sebastian │ ├── version │ │ ├── .gitignore │ │ └── .gitattributes │ ├── diff │ │ ├── .gitignore │ │ └── tests │ │ │ └── fixtures │ │ │ ├── patch.txt │ │ │ └── patch2.txt │ ├── resource-operations │ │ ├── .gitignore │ │ └── README.md │ ├── code-unit-reverse-lookup │ │ ├── .gitignore │ │ ├── ChangeLog.md │ │ └── .travis.yml │ ├── environment │ │ ├── .gitignore │ │ └── .travis.yml │ ├── comparator │ │ ├── .gitignore │ │ ├── tests │ │ │ ├── bootstrap.php │ │ │ └── _files │ │ │ │ ├── TestClass.php │ │ │ │ ├── TestClassComparator.php │ │ │ │ ├── ClassWithToString.php │ │ │ │ ├── Book.php │ │ │ │ └── Struct.php │ │ ├── build │ │ │ └── travis-ci.xml │ │ └── .travis.yml │ ├── global-state │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── src │ │ │ ├── Exception.php │ │ │ └── RuntimeException.php │ │ └── tests │ │ │ └── _fixture │ │ │ ├── SnapshotFunctions.php │ │ │ ├── SnapshotTrait.php │ │ │ ├── BlacklistedInterface.php │ │ │ ├── BlacklistedChildClass.php │ │ │ ├── BlacklistedClass.php │ │ │ ├── SnapshotDomDocument.php │ │ │ └── BlacklistedImplementor.php │ ├── object-enumerator │ │ ├── .gitignore │ │ ├── src │ │ │ ├── Exception.php │ │ │ └── InvalidArgumentException.php │ │ ├── .travis.yml │ │ └── README.md │ ├── exporter │ │ ├── .gitignore │ │ └── .travis.yml │ └── recursion-context │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── src │ │ ├── Exception.php │ │ └── InvalidArgumentException.php │ │ └── README.md ├── phpunit │ ├── php-timer │ │ ├── .gitattributes │ │ ├── .gitignore │ │ └── .travis.yml │ ├── 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 │ │ │ │ ├── configuration_stop_on_warning.xml │ │ │ │ ├── NamespaceCoveredFunction.php │ │ │ │ ├── NonStatic.php │ │ │ │ ├── ConcreteTest.php │ │ │ │ ├── InheritedTestCase.php │ │ │ │ ├── Success.php │ │ │ │ ├── configuration.custom-printer.xml │ │ │ │ ├── NoTestCases.php │ │ │ │ ├── NothingTest.php │ │ │ │ ├── AssertionExample.php │ │ │ │ ├── Inheritance │ │ │ │ │ ├── InheritanceA.php │ │ │ │ │ └── InheritanceB.php │ │ │ │ ├── OverrideTestCase.php │ │ │ │ ├── AbstractTest.php │ │ │ │ ├── ConcreteTest.my.php │ │ │ │ ├── MockRunner.php │ │ │ │ ├── StopsOnWarningTest.php │ │ │ │ ├── NoArgTestCaseTest.php │ │ │ │ ├── Failure.php │ │ │ │ ├── ThrowNoExceptionTestCase.php │ │ │ │ ├── ClassWithScalarTypeDeclarations.php │ │ │ │ ├── Struct.php │ │ │ │ ├── TestTestError.php │ │ │ │ ├── configuration.suites.xml │ │ │ │ ├── TestSkipped.php │ │ │ │ ├── TestIncomplete.php │ │ │ │ ├── IncompleteTest.php │ │ │ │ ├── phpt-for-coverage.phpt │ │ │ │ ├── IniTest.php │ │ │ │ ├── WasRun.php │ │ │ │ ├── OneTestCase.php │ │ │ │ ├── ThrowExceptionTestCase.php │ │ │ │ ├── CoverageNoneTest.php │ │ │ │ ├── NotPublicTestCase.php │ │ │ │ ├── AssertionExampleTest.php │ │ │ │ ├── phpunit-example-extension │ │ │ │ │ ├── tools │ │ │ │ │ │ └── phpunit.d │ │ │ │ │ │ │ └── phpunit-example-extension-1.0.0.phar │ │ │ │ │ ├── tests │ │ │ │ │ │ └── OneTest.php │ │ │ │ │ └── phpunit.xml │ │ │ │ ├── TestGeneratorMaker.php │ │ │ │ ├── phpt-xfail.phpt │ │ │ │ ├── CoverageFunctionTest.php │ │ │ │ ├── CoverageNamespacedFunctionTest.php │ │ │ │ ├── ChangeCurrentWorkingDirectoryTest.php │ │ │ │ ├── SampleClass.php │ │ │ │ ├── BaseTestListenerSample.php │ │ │ │ ├── CoverageClassTest.php │ │ │ │ ├── CoverageFunctionParenthesesTest.php │ │ │ │ ├── TestAutoreferenced.php │ │ │ │ ├── Calculator.php │ │ │ │ ├── FatalTest.php │ │ │ │ ├── CoveragePrivateTest.php │ │ │ │ ├── CoveragePublicTest.php │ │ │ │ ├── IgnoreCodeCoverageClass.php │ │ │ │ ├── CoverageFunctionParenthesesWhitespaceTest.php │ │ │ │ ├── CoverageMethodTest.php │ │ │ │ ├── CoverageNotPublicTest.php │ │ │ │ ├── CoverageNotPrivateTest.php │ │ │ │ ├── CoverageProtectedTest.php │ │ │ │ ├── CoverageClassExtendedTest.php │ │ │ │ ├── CoverageNotProtectedTest.php │ │ │ │ ├── DataProviderIssue2859 │ │ │ │ │ ├── phpunit.xml │ │ │ │ │ └── tests │ │ │ │ │ │ └── another │ │ │ │ │ │ └── TestWithDataProviderTest.php │ │ │ │ ├── NamespaceCoverageClassTest.php │ │ │ │ ├── CoverageMethodOneLineAnnotationTest.php │ │ │ │ ├── DataProviderIssue2833 │ │ │ │ │ ├── SecondTest.php │ │ │ │ │ └── FirstTest.php │ │ │ │ ├── TestDoxGroupTest.php │ │ │ │ ├── CoverageMethodParenthesesTest.php │ │ │ │ ├── NamespaceCoveragePublicTest.php │ │ │ │ ├── CoverageNothingTest.php │ │ │ │ ├── NamespaceCoverageMethodTest.php │ │ │ │ ├── NamespaceCoverageNotPublicTest.php │ │ │ │ ├── NamespaceCoveragePrivateTest.php │ │ │ │ ├── NamespaceCoverageNotPrivateTest.php │ │ │ │ ├── NamespaceCoverageProtectedTest.php │ │ │ │ ├── NamespaceCoverageClassExtendedTest.php │ │ │ │ ├── NamespaceCoverageNotProtectedTest.php │ │ │ │ ├── CoverageMethodParenthesesWhitespaceTest.php │ │ │ │ ├── StopOnWarningTestSuite.php │ │ │ │ ├── DependencyTestSuite.php │ │ │ │ ├── IsolationTest.php │ │ │ │ ├── DataProviderIssue2922 │ │ │ │ │ ├── SecondTest.php │ │ │ │ │ └── FirstTest.php │ │ │ │ ├── MyCommand.php │ │ │ │ ├── RequirementsClassBeforeClassHookTest.php │ │ │ │ ├── NamespaceCoverageCoversClassPublicTest.php │ │ │ │ ├── DependencySuccessTest.php │ │ │ │ ├── CoverageTwoDefaultClassAnnotations.php │ │ │ │ ├── Book.php │ │ │ │ ├── IgnoreCodeCoverageClassTest.php │ │ │ │ ├── Singleton.php │ │ │ │ ├── DataProviderTest.php │ │ │ │ ├── ClassWithToString.php │ │ │ │ ├── Mockable.php │ │ │ │ ├── MultiDependencyTest.php │ │ │ │ ├── NotExistingCoveredElementTest.php │ │ │ │ ├── RequirementsClassDocBlockTest.php │ │ │ │ └── DependencyFailureTest.php │ │ │ ├── TextUI │ │ │ │ ├── _files │ │ │ │ │ ├── expect_external.txt │ │ │ │ │ ├── phpt-env.expected.txt │ │ │ │ │ └── phpt_external.php │ │ │ │ ├── phpt-external.phpt │ │ │ │ ├── phpt-args.phpt │ │ │ │ ├── phpt-stdin.phpt │ │ │ │ ├── phpt-env.phpt │ │ │ │ ├── phpt-stderr.phpt │ │ │ │ ├── phar-extension-suppressed.phpt │ │ │ │ ├── list-suites.phpt │ │ │ │ ├── dataprovider-issue-2833.phpt │ │ │ │ ├── dataprovider-issue-2859.phpt │ │ │ │ └── dependencies2.phpt │ │ │ ├── Regression │ │ │ │ ├── GitHub │ │ │ │ │ ├── 74 │ │ │ │ │ │ ├── NewException.php │ │ │ │ │ │ └── Issue74Test.php │ │ │ │ │ ├── 322 │ │ │ │ │ │ ├── phpunit322.xml │ │ │ │ │ │ └── Issue322Test.php │ │ │ │ │ ├── 503 │ │ │ │ │ │ └── Issue503Test.php │ │ │ │ │ ├── 581 │ │ │ │ │ │ └── Issue581Test.php │ │ │ │ │ ├── 765 │ │ │ │ │ │ └── Issue765Test.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 │ │ │ │ │ ├── 2145 │ │ │ │ │ │ └── Issue2145Test.php │ │ │ │ │ ├── 2158 │ │ │ │ │ │ └── constant.inc │ │ │ │ │ ├── 2299 │ │ │ │ │ │ └── Issue2299Test.php │ │ │ │ │ ├── 2380 │ │ │ │ │ │ └── Issue2380Test.php │ │ │ │ │ ├── 2382 │ │ │ │ │ │ └── Issue2382Test.php │ │ │ │ │ ├── 2435 │ │ │ │ │ │ └── Issue2435Test.php │ │ │ │ │ ├── 2731 │ │ │ │ │ │ └── Issue2731Test.php │ │ │ │ │ ├── 2758 │ │ │ │ │ │ ├── Issue2758Test.php │ │ │ │ │ │ ├── phpunit.xml │ │ │ │ │ │ └── Issue2758TestListener.php │ │ │ │ │ ├── 2811 │ │ │ │ │ │ └── Issue2811Test.php │ │ │ │ │ └── 2972 │ │ │ │ │ │ ├── issue-2972-test.phpt │ │ │ │ │ │ └── unconventiallyNamedIssue2972Test.php │ │ │ │ └── Trac │ │ │ │ │ ├── 523 │ │ │ │ │ └── Issue523Test.php │ │ │ │ │ ├── 684 │ │ │ │ │ └── Issue684Test.php │ │ │ │ │ ├── 783 │ │ │ │ │ ├── OneTest.php │ │ │ │ │ ├── TwoTest.php │ │ │ │ │ ├── ParentSuite.php │ │ │ │ │ └── ChildSuite.php │ │ │ │ │ └── 1021 │ │ │ │ │ └── Issue1021Test.php │ │ │ ├── Fail │ │ │ │ └── fail.phpt │ │ │ ├── bootstrap.php │ │ │ └── Runner │ │ │ │ └── BaseTestRunnerTest.php │ │ ├── .gitattributes │ │ ├── .stickler.yml │ │ ├── src │ │ │ ├── Util │ │ │ │ └── PHP │ │ │ │ │ └── eval-stdin.php │ │ │ ├── Runner │ │ │ │ └── Exception.php │ │ │ ├── Exception.php │ │ │ ├── Framework │ │ │ │ ├── CodeCoverageException.php │ │ │ │ ├── InvalidCoversTargetException.php │ │ │ │ ├── SkippedTest.php │ │ │ │ ├── RiskyTest.php │ │ │ │ ├── IncompleteTest.php │ │ │ │ ├── OutputError.php │ │ │ │ ├── RiskyTestError.php │ │ │ │ └── SkippedTestError.php │ │ │ └── ForwardCompatibility │ │ │ │ ├── Test.php │ │ │ │ ├── Assert.php │ │ │ │ ├── TestSuite.php │ │ │ │ ├── TestCase.php │ │ │ │ ├── TestListener.php │ │ │ │ ├── BaseTestListener.php │ │ │ │ └── AssertionFailedError.php │ │ └── .gitignore │ ├── php-code-coverage │ │ ├── .gitattributes │ │ ├── tests │ │ │ ├── _files │ │ │ │ ├── CoveredFunction.php │ │ │ │ ├── source_without_ignore.php │ │ │ │ ├── ignored-lines-text.txt │ │ │ │ ├── CoverageNoneTest.php │ │ │ │ ├── CoverageFunctionTest.php │ │ │ │ ├── CoverageClassTest.php │ │ │ │ ├── CoverageFunctionParenthesesTest.php │ │ │ │ ├── BankAccount-text.txt │ │ │ │ ├── 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 │ │ │ │ ├── class-with-anonymous-function-text.txt │ │ │ │ ├── source_with_namespace.php │ │ │ │ ├── CoverageMethodParenthesesWhitespaceTest.php │ │ │ │ ├── NamespaceCoverageCoversClassPublicTest.php │ │ │ │ ├── CoverageTwoDefaultClassAnnotations.php │ │ │ │ ├── source_with_class_and_anonymous_function.php │ │ │ │ └── NotExistingCoveredElementTest.php │ │ │ └── bootstrap.php │ │ ├── .gitignore │ │ ├── src │ │ │ ├── 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 │ │ │ └── Exception │ │ │ │ ├── RuntimeException.php │ │ │ │ ├── Exception.php │ │ │ │ ├── CoveredCodeNotExecutedException.php │ │ │ │ └── MissingCoversAnnotationException.php │ │ └── .github │ │ │ └── CONTRIBUTING.md │ ├── php-file-iterator │ │ ├── .gitattributes │ │ ├── .gitignore │ │ └── README.md │ ├── php-text-template │ │ ├── .gitattributes │ │ ├── .gitignore │ │ └── README.md │ ├── php-token-stream │ │ ├── .gitattributes │ │ ├── .gitignore │ │ ├── tests │ │ │ ├── _fixture │ │ │ │ ├── issue19.php │ │ │ │ ├── classInNamespace.php │ │ │ │ ├── classUsesNamespacedFunction.php │ │ │ │ ├── issue30.php │ │ │ │ ├── classInScopedNamespace.php │ │ │ │ ├── source2.php │ │ │ │ ├── class_with_method_named_empty.php │ │ │ │ ├── classExtendsNamespacedClass.php │ │ │ │ ├── multipleNamespacesWithOneClassUsingBraces.php │ │ │ │ ├── multipleNamespacesWithOneClassUsingNonBraceSyntax.php │ │ │ │ ├── closure.php │ │ │ │ ├── source5.php │ │ │ │ ├── php-code-coverage-issue-424.php │ │ │ │ ├── class_with_method_that_declares_anonymous_class2.php │ │ │ │ ├── source3.php │ │ │ │ └── class_with_method_that_declares_anonymous_class.php │ │ │ └── bootstrap.php │ │ └── .travis.yml │ └── phpunit-mock-objects │ │ ├── .gitattributes │ │ ├── tests │ │ ├── _fixture │ │ │ ├── AnInterface.php │ │ │ ├── AnotherInterface.php │ │ │ ├── TraversableMockTestInterface.php │ │ │ ├── Bar.php │ │ │ ├── AnInterfaceWithReturnType.php │ │ │ ├── ClassWithSelfTypeHint.php │ │ │ ├── InterfaceWithStaticMethod.php │ │ │ ├── ClassWithStaticMethod.php │ │ │ ├── InterfaceWithSemiReservedMethodName.php │ │ │ ├── StringableClass.php │ │ │ ├── Foo.php │ │ │ ├── MockTestInterface.php │ │ │ ├── FunctionCallback.php │ │ │ ├── SomeClass.php │ │ │ ├── AbstractMockTestClass.php │ │ │ ├── StaticMockTestClass.php │ │ │ ├── MethodCallbackByReference.php │ │ │ ├── AbstractTrait.php │ │ │ ├── PartialMockTestClass.php │ │ │ ├── ClassThatImplementsSerializable.php │ │ │ ├── MethodCallback.php │ │ │ └── SingletonClass.php │ │ └── bootstrap.php │ │ ├── src │ │ └── Framework │ │ │ └── MockObject │ │ │ ├── Generator │ │ │ ├── deprecation.tpl.dist │ │ │ ├── trait_class.tpl.dist │ │ │ ├── wsdl_method.tpl.dist │ │ │ ├── mocked_clone.tpl.dist │ │ │ ├── unmocked_clone.tpl.dist │ │ │ ├── wsdl_class.tpl.dist │ │ │ ├── mocked_class_method.tpl.dist │ │ │ └── mocked_static_method.tpl.dist │ │ │ └── Exception │ │ │ ├── Exception.php │ │ │ └── RuntimeException.php │ │ ├── .gitignore │ │ └── CONTRIBUTING.md ├── mikey179 │ └── vfsStream │ │ ├── .gitignore │ │ ├── src │ │ ├── test │ │ │ └── resources │ │ │ │ └── filesystemcopy │ │ │ │ ├── emptyFolder │ │ │ │ └── .gitignore │ │ │ │ └── withSubfolders │ │ │ │ ├── aFile.txt │ │ │ │ ├── subfolder2 │ │ │ │ └── .gitignore │ │ │ │ └── subfolder1 │ │ │ │ └── file1.txt │ │ └── main │ │ │ └── php │ │ │ └── org │ │ │ └── bovigo │ │ │ └── vfs │ │ │ └── vfsStreamException.php │ │ ├── examples │ │ └── bootstrap.php │ │ ├── readme.md │ │ ├── .travis.yml │ │ ├── composer.json │ │ └── phpdoc.dist.xml ├── symfony │ ├── yaml │ │ ├── .gitignore │ │ ├── Tests │ │ │ └── Fixtures │ │ │ │ ├── embededPhp.yml │ │ │ │ ├── nonStringKeys.yml │ │ │ │ ├── arrow.gif │ │ │ │ ├── nullMappingKey.yml │ │ │ │ ├── multiple_lines_as_literal_block_leading_space_in_first_line.yml │ │ │ │ ├── booleanMappingKeys.yml │ │ │ │ ├── sfObjects.yml │ │ │ │ ├── index.yml │ │ │ │ ├── not_readable.yml │ │ │ │ ├── multiple_lines_as_literal_block.yml │ │ │ │ └── numericMappingKeys.yml │ │ ├── README.md │ │ └── Exception │ │ │ └── DumpException.php │ └── polyfill-ctype │ │ └── README.md ├── myclabs │ └── deep-copy │ │ ├── .gitignore │ │ ├── fixtures │ │ ├── f008 │ │ │ ├── B.php │ │ │ └── A.php │ │ ├── f005 │ │ │ └── Foo.php │ │ ├── f004 │ │ │ └── UnclonableItem.php │ │ ├── f007 │ │ │ ├── FooDateInterval.php │ │ │ └── FooDateTimeZone.php │ │ ├── f001 │ │ │ ├── A.php │ │ │ └── B.php │ │ ├── f003 │ │ │ └── Foo.php │ │ └── f006 │ │ │ ├── A.php │ │ │ └── B.php │ │ ├── doc │ │ ├── clone.png │ │ ├── graph.png │ │ ├── deep-copy.png │ │ └── deep-clone.png │ │ ├── .scrutinizer.yml │ │ ├── .gitattributes │ │ └── src │ │ └── DeepCopy │ │ ├── Exception │ │ ├── CloneException.php │ │ └── PropertyException.php │ │ ├── TypeFilter │ │ ├── Spl │ │ │ └── SplDoublyLinkedList.php │ │ ├── TypeFilter.php │ │ └── ShallowCopyFilter.php │ │ ├── Matcher │ │ ├── Matcher.php │ │ └── Doctrine │ │ │ └── DoctrineProxyMatcher.php │ │ ├── Filter │ │ ├── KeepFilter.php │ │ ├── Filter.php │ │ └── Doctrine │ │ │ └── DoctrineProxyFilter.php │ │ └── deep_copy.php ├── filp │ └── whoops │ │ └── src │ │ └── Whoops │ │ ├── Resources │ │ └── views │ │ │ ├── header_outer.html.php │ │ │ ├── panel_details.html.php │ │ │ ├── panel_details_outer.html.php │ │ │ ├── panel_left.html.php │ │ │ ├── panel_left_outer.html.php │ │ │ └── frames_container.html.php │ │ └── Exception │ │ └── ErrorException.php ├── phpdocumentor │ ├── reflection-docblock │ │ └── .coveralls.yml │ ├── reflection-common │ │ └── README.md │ └── type-resolver │ │ └── src │ │ └── Type.php ├── bin │ ├── phpunit.bat │ └── phpunit ├── autoload.php ├── composer │ ├── autoload_namespaces.php │ └── autoload_files.php └── phpspec │ └── prophecy │ └── src │ └── Prophecy │ └── Exception │ ├── InvalidArgumentException.php │ ├── Doubler │ ├── DoublerException.php │ └── DoubleException.php │ ├── Prophecy │ └── ProphecyException.php │ └── Prediction │ └── PredictionException.php ├── system ├── fonts │ ├── texb.ttf │ └── index.html ├── .htaccess ├── index.html ├── core │ ├── index.html │ └── compat │ │ └── index.html ├── database │ ├── index.html │ └── drivers │ │ ├── index.html │ │ ├── cubrid │ │ └── index.html │ │ ├── ibase │ │ └── index.html │ │ ├── mssql │ │ └── index.html │ │ ├── mysql │ │ └── index.html │ │ ├── mysqli │ │ └── index.html │ │ ├── oci8 │ │ └── index.html │ │ ├── odbc │ │ └── index.html │ │ ├── pdo │ │ ├── index.html │ │ └── subdrivers │ │ │ └── index.html │ │ ├── sqlite │ │ └── index.html │ │ ├── sqlsrv │ │ └── index.html │ │ ├── postgre │ │ └── index.html │ │ └── sqlite3 │ │ └── index.html ├── helpers │ └── index.html ├── language │ ├── index.html │ └── english │ │ └── index.html └── libraries │ ├── index.html │ ├── Cache │ ├── index.html │ └── drivers │ │ └── index.html │ ├── Session │ ├── index.html │ └── drivers │ │ └── index.html │ └── Javascript │ └── index.html ├── .github └── ISSUE_TEMPLATE │ └── need-help-.md └── .gitignore /assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/backend/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/backend/css/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/backend/js/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/frontend/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/frontend/css/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/frontend/js/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/backend/images/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/frontend/images/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/modules/Backend/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/modules/Frontend/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/psr/log/.gitignore: -------------------------------------------------------------------------------- 1 | vendor 2 | -------------------------------------------------------------------------------- /application/modules/Backend/models/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/modules/Backend/views/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/modules/Frontend/views/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/modules/Frontend/models/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/sebastian/version/.gitignore: -------------------------------------------------------------------------------- 1 | /.idea 2 | -------------------------------------------------------------------------------- /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/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/mikey179/vfsStream/.gitignore: -------------------------------------------------------------------------------- 1 | /composer.lock 2 | /nbproject 3 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit-mock-objects/.gitattributes: -------------------------------------------------------------------------------- 1 | *.php diff=php 2 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/TextUI/_files/expect_external.txt: -------------------------------------------------------------------------------- 1 | Hello World -------------------------------------------------------------------------------- /vendor/symfony/yaml/.gitignore: -------------------------------------------------------------------------------- 1 | vendor/ 2 | composer.lock 3 | phpunit.xml 4 | -------------------------------------------------------------------------------- /vendor/mikey179/vfsStream/src/test/resources/filesystemcopy/emptyFolder/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /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/mikey179/vfsStream/src/test/resources/filesystemcopy/withSubfolders/aFile.txt: -------------------------------------------------------------------------------- 1 | foo -------------------------------------------------------------------------------- /vendor/myclabs/deep-copy/.gitignore: -------------------------------------------------------------------------------- 1 | /composer.phar 2 | /composer.lock 3 | /vendor/* 4 | -------------------------------------------------------------------------------- /vendor/phpunit/php-token-stream/.gitignore: -------------------------------------------------------------------------------- 1 | /.idea 2 | /composer.lock 3 | /vendor 4 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/TextUI/_files/phpt-env.expected.txt: -------------------------------------------------------------------------------- 1 | string(%d) "%s" 2 | -------------------------------------------------------------------------------- /vendor/sebastian/diff/.gitignore: -------------------------------------------------------------------------------- 1 | /.idea 2 | /composer.lock 3 | /vendor 4 | /.php_cs.cache -------------------------------------------------------------------------------- /vendor/sebastian/resource-operations/.gitignore: -------------------------------------------------------------------------------- 1 | /.idea 2 | /build/arginfo.php 3 | 4 | -------------------------------------------------------------------------------- /vendor/symfony/yaml/Tests/Fixtures/embededPhp.yml: -------------------------------------------------------------------------------- 1 | value: 2 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/.gitattributes: -------------------------------------------------------------------------------- 1 | /build export-ignore 2 | 3 | *.php diff=php 4 | 5 | -------------------------------------------------------------------------------- /vendor/mikey179/vfsStream/src/test/resources/filesystemcopy/withSubfolders/subfolder2/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/phpunit/php-token-stream/tests/_fixture/issue19.php: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/configuration.colors.true.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /vendor/sebastian/code-unit-reverse-lookup/.gitignore: -------------------------------------------------------------------------------- 1 | /.idea 2 | /composer.lock 3 | /vendor 4 | 5 | -------------------------------------------------------------------------------- /vendor/sebastian/environment/.gitignore: -------------------------------------------------------------------------------- 1 | /.idea 2 | /vendor 3 | /composer.lock 4 | /composer.phar 5 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/CoveredFunction.php: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /vendor/phpunit/php-text-template/.gitignore: -------------------------------------------------------------------------------- 1 | /composer.lock 2 | /composer.phar 3 | /.idea 4 | /vendor 5 | 6 | -------------------------------------------------------------------------------- /vendor/phpunit/php-code-coverage/tests/_files/CoveredFunction.php: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /vendor/mikey179/vfsStream/examples/bootstrap.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/symfony/yaml/Tests/Fixtures/nonStringKeys.yml: -------------------------------------------------------------------------------- 1 | - booleanMappingKeys 2 | - numericMappingKeys 3 | - nullMappingKey 4 | -------------------------------------------------------------------------------- /vendor/myclabs/deep-copy/fixtures/f008/B.php: -------------------------------------------------------------------------------- 1 | 6 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/DummyException.php: -------------------------------------------------------------------------------- 1 | 2 | render($header) ?> 3 | 4 | -------------------------------------------------------------------------------- /vendor/phpunit/php-code-coverage/.gitignore: -------------------------------------------------------------------------------- 1 | /tests/_files/tmp 2 | /vendor 3 | /composer.lock 4 | /.idea 5 | /.php_cs.cache 6 | 7 | -------------------------------------------------------------------------------- /vendor/phpunit/php-code-coverage/tests/_files/source_without_ignore.php: -------------------------------------------------------------------------------- 1 | render($frame_code) ?> 2 | render($env_details) ?> -------------------------------------------------------------------------------- /vendor/myclabs/deep-copy/.scrutinizer.yml: -------------------------------------------------------------------------------- 1 | build: 2 | environment: 3 | variables: 4 | COMPOSER_ROOT_VERSION: '1.8.0' 5 | -------------------------------------------------------------------------------- /vendor/myclabs/deep-copy/doc/deep-copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3Cr0N/CodeIgniter-HMVC/HEAD/vendor/myclabs/deep-copy/doc/deep-copy.png -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/EmptyTestCaseTest.php: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /vendor/symfony/yaml/Tests/Fixtures/arrow.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3Cr0N/CodeIgniter-HMVC/HEAD/vendor/symfony/yaml/Tests/Fixtures/arrow.gif -------------------------------------------------------------------------------- /system/.htaccess: -------------------------------------------------------------------------------- 1 | 2 | Require all denied 3 | 4 | 5 | Deny from all 6 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit-mock-objects/tests/_fixture/AnInterface.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit-mock-objects/.gitignore: -------------------------------------------------------------------------------- 1 | build/coverage 2 | build/logs 3 | cache.properties 4 | /vendor 5 | /composer.lock 6 | /composer.phar 7 | /.idea 8 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit-mock-objects/src/Framework/MockObject/Generator/trait_class.tpl.dist: -------------------------------------------------------------------------------- 1 | {prologue}class {class_name} 2 | { 3 | use {trait_name}; 4 | } 5 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/NonStatic.php: -------------------------------------------------------------------------------- 1 | 2 | Require all denied 3 | 4 | 5 | Deny from all 6 | -------------------------------------------------------------------------------- /vendor/phpunit/php-token-stream/tests/_fixture/classUsesNamespacedFunction.php: -------------------------------------------------------------------------------- 1 | 2 | render($panel_details) ?> 3 | -------------------------------------------------------------------------------- /vendor/phpunit/php-file-iterator/.gitignore: -------------------------------------------------------------------------------- 1 | build/api 2 | build/code-browser 3 | build/coverage 4 | build/logs 5 | build/pdepend 6 | cache.properties 7 | phpunit.xml 8 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit-mock-objects/tests/bootstrap.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/ConcreteTest.php: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /vendor/filp/whoops/src/Whoops/Resources/views/panel_left.html.php: -------------------------------------------------------------------------------- 1 | render($header_outer); 3 | $tpl->render($frames_description); 4 | $tpl->render($frames_container); 5 | -------------------------------------------------------------------------------- /vendor/phpunit/php-token-stream/tests/_fixture/classInScopedNamespace.php: -------------------------------------------------------------------------------- 1 | null, 9 | ] 10 | -------------------------------------------------------------------------------- /application/views/errors/cli/error_general.php: -------------------------------------------------------------------------------- 1 | "> 2 | render($panel_left) ?> 3 | -------------------------------------------------------------------------------- /vendor/myclabs/deep-copy/.gitattributes: -------------------------------------------------------------------------------- 1 | # Auto detect text files and perform LF normalization 2 | * text=auto 3 | 4 | *.png binary 5 | 6 | tests/ export-ignore 7 | phpunit.xml.dist export-ignore 8 | -------------------------------------------------------------------------------- /vendor/phpunit/php-token-stream/tests/_fixture/class_with_method_named_empty.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /vendor/phpunit/php-code-coverage/tests/bootstrap.php: -------------------------------------------------------------------------------- 1 | doSomethingElse(); 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/Regression/GitHub/2758/Issue2758Test.php: -------------------------------------------------------------------------------- 1 | fail(); 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/ThrowNoExceptionTestCase.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /system/core/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /system/database/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /system/fonts/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /system/helpers/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /system/language/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/ClassWithScalarTypeDeclarations.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /application/core/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /application/helpers/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /application/hooks/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /application/language/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /application/logs/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /application/models/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /application/modules/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /application/views/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /system/core/compat/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /system/libraries/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit-mock-objects/tests/_fixture/MockTestInterface.php: -------------------------------------------------------------------------------- 1 | var = $var; 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /application/controllers/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /application/libraries/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /application/third_party/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /application/views/errors/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /system/database/drivers/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /system/language/english/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /system/libraries/Cache/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /system/libraries/Session/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /vendor/phpdocumentor/reflection-common/README.md: -------------------------------------------------------------------------------- 1 | # ReflectionCommon 2 | [![Build Status](https://travis-ci.org/phpDocumentor/ReflectionCommon.svg?branch=master)](https://travis-ci.org/phpDocumentor/ReflectionCommon) 3 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/TestTestError.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /application/config/production/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /application/config/testing/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /application/language/english/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /application/views/errors/cli/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /application/views/errors/html/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /system/database/drivers/cubrid/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /system/database/drivers/ibase/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /system/database/drivers/mssql/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /system/database/drivers/mysql/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /system/database/drivers/mysqli/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /system/database/drivers/oci8/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /system/database/drivers/odbc/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /system/database/drivers/pdo/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /system/database/drivers/sqlite/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /system/database/drivers/sqlsrv/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /system/libraries/Cache/drivers/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /system/libraries/Javascript/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /vendor/autoload.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /system/database/drivers/sqlite3/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /system/libraries/Session/drivers/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/TextUI/phpt-external.phpt: -------------------------------------------------------------------------------- 1 | --TEST-- 2 | GH-1436: PHPT runner doesn't handle external files. 3 | --FILE_EXTERNAL-- 4 | _files/phpt_external.php 5 | --EXPECT_EXTERNAL-- 6 | _files/expect_external.txt 7 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | */logs/log-*.php 2 | !*/logs/index.html 3 | */cache/* 4 | !*/cache/index.html 5 | !*/cache/.htaccess 6 | 7 | #codeigniter 3 8 | application/logs/* 9 | !application/logs/index.html 10 | !application/logs/.htaccess 11 | -------------------------------------------------------------------------------- /system/database/drivers/pdo/subdrivers/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /vendor/myclabs/deep-copy/src/DeepCopy/Exception/PropertyException.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 |
7 | -------------------------------------------------------------------------------- /vendor/filp/whoops/src/Whoops/Resources/views/frames_container.html.php: -------------------------------------------------------------------------------- 1 |
2 | render($frame_list) ?> 3 |
-------------------------------------------------------------------------------- /vendor/phpunit/phpunit-mock-objects/src/Framework/MockObject/Generator/mocked_clone.tpl.dist: -------------------------------------------------------------------------------- 1 | public function __clone() 2 | { 3 | $this->__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/mikey179/vfsStream/readme.md: -------------------------------------------------------------------------------- 1 | For more information have a look in the [wiki](https://github.com/mikey179/vfsStream/wiki). 2 | 3 | [![Build Status](https://secure.travis-ci.org/mikey179/vfsStream.png)](http://travis-ci.org/mikey179/vfsStream) -------------------------------------------------------------------------------- /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/yaml/Tests/Fixtures/booleanMappingKeys.yml: -------------------------------------------------------------------------------- 1 | --- %YAML:1.0 2 | test: Miscellaneous 3 | spec: 2.21 4 | yaml: | 5 | true: true 6 | false: false 7 | php: | 8 | [ 9 | 'true' => true, 10 | 'false' => false, 11 | ] 12 | -------------------------------------------------------------------------------- /vendor/mikey179/vfsStream/.travis.yml: -------------------------------------------------------------------------------- 1 | language: php 2 | 3 | php: 4 | - 5.3 5 | - 5.4 6 | 7 | before_script: 8 | - wget -nc http://getcomposer.org/composer.phar 9 | - php composer.phar install --dev 10 | 11 | script: phpunit --coverage-text -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/IncompleteTest.php: -------------------------------------------------------------------------------- 1 | markTestIncomplete('Test incomplete'); 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/phpt-for-coverage.phpt: -------------------------------------------------------------------------------- 1 | --TEST-- 2 | PHPT for testing coverage 3 | --FILE-- 4 | publicMethod(); 8 | --EXPECT-- 9 | -------------------------------------------------------------------------------- /vendor/myclabs/deep-copy/fixtures/f005/Foo.php: -------------------------------------------------------------------------------- 1 | cloned = true; 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/TextUI/phpt-args.phpt: -------------------------------------------------------------------------------- 1 | --TEST-- 2 | PHPT runner supports ARGS section 3 | --ARGS-- 4 | help 5 | --FILE-- 6 | 0 && $argv[1] == 'help') { 8 | echo 'Help'; 9 | } 10 | ?> 11 | --EXPECT-- 12 | Help 13 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/IniTest.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/phpunit/phpunit/tests/_files/OneTestCase.php: -------------------------------------------------------------------------------- 1 | __phpunit_invocationMocker = clone $this->__phpunit_getInvocationMocker(); 4 | parent::__clone(); 5 | } 6 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/TextUI/phpt-stdin.phpt: -------------------------------------------------------------------------------- 1 | --TEST-- 2 | PHPT runner supports STDIN section 3 | --STDIN-- 4 | Hello World 5 | --FILE-- 6 | 10 | --EXPECT-- 11 | Hello World 12 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/ThrowExceptionTestCase.php: -------------------------------------------------------------------------------- 1 | publicMethod(); 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/Regression/GitHub/1437/Issue1437Test.php: -------------------------------------------------------------------------------- 1 | assertTrue(false); 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/Regression/GitHub/797/bootstrap797.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/2972/issue-2972-test.phpt: -------------------------------------------------------------------------------- 1 | --TEST-- 2 | Just a sample test for issue 2972, does not actually test anything 3 | --FILE-- 4 | 7 | ===DONE=== 8 | --EXPECT-- 9 | Hello world 10 | ===DONE=== 11 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/Regression/GitHub/873/Issue873Test.php: -------------------------------------------------------------------------------- 1 | doSomething(); 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/phpunit-example-extension/tools/phpunit.d/phpunit-example-extension-1.0.0.phar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3Cr0N/CodeIgniter-HMVC/HEAD/vendor/phpunit/phpunit/tests/_files/phpunit-example-extension/tools/phpunit.d/phpunit-example-extension-1.0.0.phar -------------------------------------------------------------------------------- /vendor/phpunit/phpunit-mock-objects/tests/_fixture/SomeClass.php: -------------------------------------------------------------------------------- 1 | assertTrue(true); 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/TestGeneratorMaker.php: -------------------------------------------------------------------------------- 1 | $value) { 7 | yield $key => $value; 8 | } 9 | } 10 | } 11 | 12 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/phpt-xfail.phpt: -------------------------------------------------------------------------------- 1 | --TEST-- 2 | PHPT runner supports XFAIL section 3 | --FILE-- 4 | 8 | --XFAIL-- 9 | Syntax Error in PHPT is supposed to fail 10 | --EXPECT-- 11 | Should not see this 12 | -------------------------------------------------------------------------------- /vendor/sebastian/diff/tests/fixtures/patch.txt: -------------------------------------------------------------------------------- 1 | diff --git a/Foo.php b/Foo.php 2 | index abcdefg..abcdefh 100644 3 | --- a/Foo.php 4 | +++ b/Foo.php 5 | @@ -20,4 +20,5 @@ class Foo 6 | const ONE = 1; 7 | const TWO = 2; 8 | + const THREE = 3; 9 | const FOUR = 4; 10 | -------------------------------------------------------------------------------- /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/myclabs/deep-copy/src/DeepCopy/TypeFilter/Spl/SplDoublyLinkedList.php: -------------------------------------------------------------------------------- 1 | 11 | --EXPECTF_EXTERNAL-- 12 | _files/phpt-env.expected.txt 13 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/CoverageFunctionTest.php: -------------------------------------------------------------------------------- 1 | expectExceptionMessage('hello'); 7 | 8 | throw new \Exception('hello'); 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /vendor/myclabs/deep-copy/src/DeepCopy/TypeFilter/TypeFilter.php: -------------------------------------------------------------------------------- 1 | markTestIncomplete(); 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /vendor/sebastian/environment/.travis.yml: -------------------------------------------------------------------------------- 1 | language: php 2 | 3 | sudo: false 4 | 5 | before_install: 6 | - composer self-update 7 | 8 | install: 9 | - travis_retry composer install --no-interaction --prefer-source 10 | 11 | php: 12 | - 5.6 13 | - hhvm 14 | 15 | notifications: 16 | email: false 17 | -------------------------------------------------------------------------------- /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/phpunit/phpunit/tests/TextUI/phpt-stderr.phpt: -------------------------------------------------------------------------------- 1 | --TEST-- 2 | GH-1169: PHPT runner doesn't look at STDERR. 3 | --FILE-- 4 | endCount++; 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /vendor/myclabs/deep-copy/fixtures/f007/FooDateInterval.php: -------------------------------------------------------------------------------- 1 | cloned = true; 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /vendor/myclabs/deep-copy/fixtures/f007/FooDateTimeZone.php: -------------------------------------------------------------------------------- 1 | cloned = true; 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /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 | myTestData = $data; 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /vendor/sebastian/code-unit-reverse-lookup/ChangeLog.md: -------------------------------------------------------------------------------- 1 | # Change Log 2 | 3 | All notable changes to `sebastianbergmann/code-unit-reverse-lookup` are documented in this file using the [Keep a CHANGELOG](http://keepachangelog.com/) principles. 4 | 5 | ## 1.0.0 - 2016-02-13 6 | 7 | ### Added 8 | 9 | * Initial release 10 | 11 | -------------------------------------------------------------------------------- /vendor/myclabs/deep-copy/src/DeepCopy/Matcher/Matcher.php: -------------------------------------------------------------------------------- 1 | =5.3.0" 8 | }, 9 | "autoload": { 10 | "psr-0": { "org\\bovigo\\vfs": "src/main/php" } 11 | } 12 | } -------------------------------------------------------------------------------- /vendor/myclabs/deep-copy/fixtures/f008/A.php: -------------------------------------------------------------------------------- 1 | foo = $foo; 12 | } 13 | 14 | public function getFoo() 15 | { 16 | return $this->foo; 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /vendor/phpunit/php-code-coverage/tests/_files/CoverageClassTest.php: -------------------------------------------------------------------------------- 1 | publicMethod(); 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /vendor/phpunit/php-code-coverage/tests/_files/CoverageFunctionParenthesesTest.php: -------------------------------------------------------------------------------- 1 | assertNotEmpty('Hello world!'); 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/Regression/GitHub/797/Issue797Test.php: -------------------------------------------------------------------------------- 1 | assertEquals(GITHUB_ISSUE, 797); 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/FatalTest.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/phpunit/phpunit/tests/_files/IgnoreCodeCoverageClass.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/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/phpunit/phpunit/tests/_files/phpunit-example-extension/tests/OneTest.php: -------------------------------------------------------------------------------- 1 | assertExampleExtensionInitialized(); 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /vendor/phpunit/php-code-coverage/tests/_files/CoverageFunctionParenthesesWhitespaceTest.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/src/Framework/MockObject/Generator/mocked_static_method.tpl.dist: -------------------------------------------------------------------------------- 1 | 2 | {modifier} function {reference}{method_name}({arguments_decl}){return_delim}{return_type} 3 | { 4 | throw new PHPUnit_Framework_MockObject_BadMethodCallException('Static method "{method_name}" cannot be invoked on mock object'); 5 | } 6 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit-mock-objects/tests/_fixture/AbstractTrait.php: -------------------------------------------------------------------------------- 1 | expectException(Exception::class); 7 | $this->expectExceptionMessage(''); 8 | 9 | throw new Exception('message'); 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/Regression/Trac/783/ParentSuite.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/DataProviderIssue2859/phpunit.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | ./tests/ 7 | ./tests/*/ 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/NamespaceCoverageClassTest.php: -------------------------------------------------------------------------------- 1 | publicMethod(); 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /vendor/bin/phpunit: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env sh 2 | 3 | dir=$(cd "${0%[/\\]*}" > /dev/null; cd "../phpunit/phpunit" && pwd) 4 | 5 | if [ -d /proc/cygdrive ] && [[ $(which php) == $(readlink -n /proc/cygdrive)/* ]]; then 6 | # We are in Cgywin using Windows php, so the path must be translated 7 | dir=$(cygpath -m "$dir"); 8 | fi 9 | 10 | "${dir}/phpunit" "$@" 11 | -------------------------------------------------------------------------------- /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/tests/Regression/GitHub/2758/phpunit.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/Regression/GitHub/322/Issue322Test.php: -------------------------------------------------------------------------------- 1 | publicMethod(); 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/DataProviderIssue2833/SecondTest.php: -------------------------------------------------------------------------------- 1 | assertTrue(true); 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/TestDoxGroupTest.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/src/Util/PHP/eval-stdin.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 | eval('?>' . file_get_contents('php://stdin')); 11 | -------------------------------------------------------------------------------- /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/myclabs/deep-copy/src/DeepCopy/TypeFilter/ShallowCopyFilter.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/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 | ['ex1' => 'foo # bar', 'ex2' => 'foo # bar', 'ex3' => 'foo # bar', 'ex4' => 'foo'] 12 | -------------------------------------------------------------------------------- /vendor/myclabs/deep-copy/fixtures/f001/A.php: -------------------------------------------------------------------------------- 1 | aProp; 12 | } 13 | 14 | public function setAProp($prop) 15 | { 16 | $this->aProp = $prop; 17 | 18 | return $this; 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /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/Regression/GitHub/2145/Issue2145Test.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/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/composer/autoload_namespaces.php: -------------------------------------------------------------------------------- 1 | array($vendorDir . '/mikey179/vfsStream/src/main/php'), 10 | 'Prophecy\\' => array($vendorDir . '/phpspec/prophecy/src'), 11 | ); 12 | -------------------------------------------------------------------------------- /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/myclabs/deep-copy/fixtures/f001/B.php: -------------------------------------------------------------------------------- 1 | bProp; 12 | } 13 | 14 | public function setBProp($prop) 15 | { 16 | $this->bProp = $prop; 17 | 18 | return $this; 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /vendor/phpunit/php-code-coverage/tests/_files/NamespaceCoverageNotPrivateTest.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/myclabs/deep-copy/src/DeepCopy/Filter/KeepFilter.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/php-code-coverage/tests/_files/class-with-anonymous-function-text.txt: -------------------------------------------------------------------------------- 1 | 2 | 3 | Code Coverage Report: 4 | %s 5 | 6 | Summary: 7 | Classes: 0.00% (0/1) 8 | Methods: 50.00% (1/2) 9 | Lines: 87.50% (7/8) 10 | 11 | CoveredClassWithAnonymousFunctionInStaticMethod 12 | Methods: 50.00% ( 1/ 2) Lines: 80.00% ( 4/ 5) 13 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/CoverageMethodParenthesesWhitespaceTest.php: -------------------------------------------------------------------------------- 1 | publicMethod(); 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/StopOnWarningTestSuite.php: -------------------------------------------------------------------------------- 1 | addTestSuite('NoTestCases'); 9 | $suite->addTestSuite('CoverageClassTest'); 10 | 11 | return $suite; 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /vendor/phpunit/php-code-coverage/tests/_files/source_with_namespace.php: -------------------------------------------------------------------------------- 1 | publicMethod(); 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /vendor/phpunit/php-code-coverage/src/Report/Html/Renderer/Template/coverage_bar.html.dist: -------------------------------------------------------------------------------- 1 |
2 |
3 | {{percent}}% covered ({{level}}) 4 |
5 |
6 | -------------------------------------------------------------------------------- /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/phpunit/phpunit/tests/Regression/GitHub/581/Issue581Test.php: -------------------------------------------------------------------------------- 1 | assertEquals( 7 | (object) [1, 2, "Test\r\n", 4, 5, 6, 7, 8], 8 | (object) [1, 2, "Test\r\n", 4, 1, 6, 7, 8] 9 | ); 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/DataProviderIssue2922/SecondTest.php: -------------------------------------------------------------------------------- 1 | assertTrue(true); 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /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/phpunit/phpunit/tests/Regression/GitHub/2758/Issue2758TestListener.php: -------------------------------------------------------------------------------- 1 | addToAssertionCount(1); 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /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 | class PHPUnit_Runner_Exception extends RuntimeException implements PHPUnit_Exception 12 | { 13 | } 14 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/MyCommand.php: -------------------------------------------------------------------------------- 1 | longOptions['my-option='] = 'myHandler'; 8 | $this->longOptions['my-other-option'] = null; 9 | } 10 | 11 | public function myHandler($value) 12 | { 13 | echo __METHOD__ . " $value\n"; 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /vendor/composer/autoload_files.php: -------------------------------------------------------------------------------- 1 | $vendorDir . '/symfony/polyfill-ctype/bootstrap.php', 10 | '6124b4c8570aa390c21fafd04a26c69f' => $vendorDir . '/myclabs/deep-copy/src/DeepCopy/deep_copy.php', 11 | ); 12 | -------------------------------------------------------------------------------- /vendor/phpunit/php-token-stream/tests/_fixture/source3.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 | interface PHPUnit_Exception 15 | { 16 | } 17 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/Regression/Trac/783/ChildSuite.php: -------------------------------------------------------------------------------- 1 | addTestSuite('OneTest'); 11 | $suite->addTestSuite('TwoTest'); 12 | 13 | return $suite; 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/RequirementsClassBeforeClassHookTest.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\ObjectEnumerator; 12 | 13 | interface Exception 14 | { 15 | } 16 | -------------------------------------------------------------------------------- /vendor/mikey179/vfsStream/phpdoc.dist.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | vfsStream API Doc 4 | 5 | docs/api 6 | org\bovigo\vfs 7 | 8 | 9 | docs/api 10 | 11 | 12 | src/main/php 13 | 14 | -------------------------------------------------------------------------------- /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 | class PHPUnit_Framework_CodeCoverageException extends PHPUnit_Framework_Exception 12 | { 13 | } 14 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/Regression/GitHub/1348/Issue1348Test.php: -------------------------------------------------------------------------------- 1 | assertTrue(true); 8 | } 9 | 10 | public function testSTDERR() 11 | { 12 | fwrite(STDERR, 'STDERR works as usual.'); 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/.gitignore: -------------------------------------------------------------------------------- 1 | /.ant_targets 2 | /.idea 3 | /.php_cs 4 | /.php_cs.cache 5 | /build/documentation 6 | /build/logfiles 7 | /build/phar 8 | /build/phpdox 9 | /build/*.phar 10 | /build/*.phar.asc 11 | /build/binary-phar-autoload.php 12 | /cache.properties 13 | /composer.lock 14 | /tests/TextUI/*.diff 15 | /tests/TextUI/*.exp 16 | /tests/TextUI/*.log 17 | /tests/TextUI/*.out 18 | /tests/TextUI/*.php 19 | /vendor 20 | 21 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/NamespaceCoverageCoversClassPublicTest.php: -------------------------------------------------------------------------------- 1 | publicMethod(); 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /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/polyfill-ctype/README.md: -------------------------------------------------------------------------------- 1 | Symfony Polyfill / Ctype 2 | ======================== 3 | 4 | This component provides `ctype_*` functions to users who run php versions without the ctype extension. 5 | 6 | More information can be found in the 7 | [main Polyfill README](https://github.com/symfony/polyfill/blob/master/README.md). 8 | 9 | License 10 | ======= 11 | 12 | This library is released under the [MIT license](LICENSE). 13 | -------------------------------------------------------------------------------- /vendor/symfony/yaml/Tests/Fixtures/not_readable.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 | -------------------------------------------------------------------------------- /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 | 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/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 | class PHPUnit_Framework_InvalidCoversTargetException extends PHPUnit_Framework_CodeCoverageException 12 | { 13 | } 14 | -------------------------------------------------------------------------------- /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/phpunit/php-code-coverage/src/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 | namespace SebastianBergmann\CodeCoverage\Report\Xml; 12 | 13 | class Directory extends Node 14 | { 15 | } 16 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/src/Framework/SkippedTest.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 | interface PHPUnit_Framework_SkippedTest 15 | { 16 | } 17 | -------------------------------------------------------------------------------- /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/phpunit/src/ForwardCompatibility/Test.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_Test; 14 | 15 | interface Test extends PHPUnit_Framework_Test 16 | { 17 | } 18 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/phpunit-example-extension/phpunit.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | tests 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /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/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/Regression/GitHub/1337/Issue1337Test.php: -------------------------------------------------------------------------------- 1 | assertTrue($a); 10 | } 11 | 12 | public function dataProvider() 13 | { 14 | return [ 15 | 'c:\\'=> [true], 16 | 0.9 => [true] 17 | ]; 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /vendor/myclabs/deep-copy/src/DeepCopy/Filter/Filter.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_TestSuite; 14 | 15 | class TestSuite extends PHPUnit_Framework_TestSuite 16 | { 17 | } 18 | -------------------------------------------------------------------------------- /vendor/sebastian/global-state/tests/_fixture/BlacklistedInterface.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/filp/whoops/src/Whoops/Exception/ErrorException.php: -------------------------------------------------------------------------------- 1 | 5 | */ 6 | 7 | namespace Whoops\Exception; 8 | 9 | use ErrorException as BaseErrorException; 10 | 11 | /** 12 | * Wraps ErrorException; mostly used for typing (at least now) 13 | * to easily cleanup the stack trace of redundant info. 14 | */ 15 | class ErrorException extends BaseErrorException 16 | { 17 | } 18 | -------------------------------------------------------------------------------- /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/tests/_files/Book.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 book. 13 | * 14 | */ 15 | class Book 16 | { 17 | // the order of properties is important for testing the cycle! 18 | public $author = null; 19 | } 20 | -------------------------------------------------------------------------------- /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/sebastian/object-enumerator/.travis.yml: -------------------------------------------------------------------------------- 1 | language: php 2 | 3 | php: 4 | - 5.6 5 | - 7.0 6 | - 7.1 7 | - nightly 8 | 9 | sudo: false 10 | 11 | before_install: 12 | - composer self-update 13 | - composer clear-cache 14 | 15 | install: 16 | - travis_retry composer update --no-interaction --no-ansi --no-progress --no-suggest --optimize-autoloader --prefer-stable 17 | 18 | script: 19 | - ./vendor/bin/phpunit 20 | 21 | notifications: 22 | email: false 23 | 24 | -------------------------------------------------------------------------------- /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 | multi_line_with_carriage_return: "foo\nbar\r\nbaz" 14 | nested_inlined_multi_line_string: { inlined_multi_line: "foo\nbar\r\nempty line:\n\nbaz" } 15 | -------------------------------------------------------------------------------- /vendor/myclabs/deep-copy/fixtures/f003/Foo.php: -------------------------------------------------------------------------------- 1 | name = $name; 13 | } 14 | 15 | public function getProp() 16 | { 17 | return $this->prop; 18 | } 19 | 20 | public function setProp($prop) 21 | { 22 | $this->prop = $prop; 23 | 24 | return $this; 25 | } 26 | } -------------------------------------------------------------------------------- /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/src/Framework/RiskyTest.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 any exception/error as result of an unit 13 | * test as risky. 14 | */ 15 | interface PHPUnit_Framework_RiskyTest 16 | { 17 | } 18 | -------------------------------------------------------------------------------- /vendor/phpunit/php-code-coverage/src/Exception/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\CodeCoverage; 12 | 13 | class RuntimeException extends \RuntimeException implements Exception 14 | { 15 | } 16 | -------------------------------------------------------------------------------- /vendor/phpunit/php-token-stream/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 | require __DIR__ . '/../vendor/autoload.php'; 11 | 12 | define( 13 | 'TEST_FILES_PATH', 14 | __DIR__ . DIRECTORY_SEPARATOR . '_fixture' . DIRECTORY_SEPARATOR 15 | ); 16 | -------------------------------------------------------------------------------- /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/tests/_files/IgnoreCodeCoverageClassTest.php: -------------------------------------------------------------------------------- 1 | assertTrue($sut->returnTrue()); 8 | } 9 | 10 | public function testReturnFalse() 11 | { 12 | $sut = new IgnoreCodeCoverageClass(); 13 | $this->assertFalse($sut->returnFalse()); 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /vendor/myclabs/deep-copy/fixtures/f006/A.php: -------------------------------------------------------------------------------- 1 | aProp; 13 | } 14 | 15 | public function setAProp($prop) 16 | { 17 | $this->aProp = $prop; 18 | 19 | return $this; 20 | } 21 | 22 | public function __clone() 23 | { 24 | $this->cloned = true; 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /vendor/myclabs/deep-copy/fixtures/f006/B.php: -------------------------------------------------------------------------------- 1 | bProp; 13 | } 14 | 15 | public function setBProp($prop) 16 | { 17 | $this->bProp = $prop; 18 | 19 | return $this; 20 | } 21 | 22 | public function __clone() 23 | { 24 | $this->cloned = true; 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /application/config/development/hooks.php: -------------------------------------------------------------------------------- 1 | assertNotEmpty($data); 12 | } 13 | 14 | /** 15 | * @return Generator 16 | */ 17 | public function generatorData() 18 | { 19 | yield ['testing']; 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/DataProviderIssue2833/FirstTest.php: -------------------------------------------------------------------------------- 1 | assertTrue(true); 15 | } 16 | 17 | public function provide() 18 | { 19 | SecondTest::DUMMY; 20 | 21 | return [[true]]; 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /vendor/sebastian/object-enumerator/src/InvalidArgumentException.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\ObjectEnumerator; 12 | 13 | class InvalidArgumentException extends \InvalidArgumentException implements Exception 14 | { 15 | } 16 | -------------------------------------------------------------------------------- /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/TextUI/phar-extension-suppressed.phpt: -------------------------------------------------------------------------------- 1 | --TEST-- 2 | phpunit --configuration tests/_files/phpunit-example-extension 3 | --FILE-- 4 | assertTrue(true); 15 | } 16 | 17 | public function provide() 18 | { 19 | return [[true]]; 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/DataProviderIssue2922/FirstTest.php: -------------------------------------------------------------------------------- 1 | assertTrue(true); 18 | } 19 | 20 | public function provide() 21 | { 22 | throw new \Exception(); 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /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 SebastianBergmann\CodeCoverage; 12 | 13 | /** 14 | * Exception interface for php-code-coverage component. 15 | */ 16 | interface Exception 17 | { 18 | } 19 | -------------------------------------------------------------------------------- /vendor/phpunit/php-token-stream/tests/_fixture/class_with_method_that_declares_anonymous_class.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/phpunit/phpunit-mock-objects/tests/_fixture/MethodCallback.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /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 | namespace PHPUnit\Framework; 12 | 13 | use PHPUnit_Framework_AssertionFailedError; 14 | 15 | class AssertionFailedError extends PHPUnit_Framework_AssertionFailedError 16 | { 17 | } 18 | -------------------------------------------------------------------------------- /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/yaml/Tests/Fixtures/numericMappingKeys.yml: -------------------------------------------------------------------------------- 1 | --- %YAML:1.0 2 | test: A sequence with an unordered array 3 | brief: > 4 | A sequence with an unordered array 5 | yaml: | 6 | 1: foo 7 | 0: bar 8 | php: | 9 | [1 => 'foo', 0 => 'bar'] 10 | --- 11 | test: Integers as Map Keys 12 | brief: > 13 | An integer can be used as dictionary key. 14 | yaml: | 15 | 1: one 16 | 2: two 17 | 3: three 18 | php: | 19 | [ 20 | 1 => 'one', 21 | 2 => 'two', 22 | 3 => 'three' 23 | ] 24 | -------------------------------------------------------------------------------- /vendor/myclabs/deep-copy/src/DeepCopy/deep_copy.php: -------------------------------------------------------------------------------- 1 | copy($value); 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/DataProviderTest.php: -------------------------------------------------------------------------------- 1 | assertEquals($c, $a + $b); 10 | } 11 | 12 | public static function providerMethod() 13 | { 14 | return [ 15 | [0, 0, 0], 16 | [0, 1, 1], 17 | [1, 1, 3], 18 | [1, 0, 1] 19 | ]; 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /vendor/sebastian/code-unit-reverse-lookup/.travis.yml: -------------------------------------------------------------------------------- 1 | language: php 2 | 3 | php: 4 | - 5.6 5 | - 7.0 6 | - 7.0snapshot 7 | - 7.1 8 | - 7.1snapshot 9 | - master 10 | 11 | sudo: false 12 | 13 | before_install: 14 | - composer self-update 15 | - composer clear-cache 16 | 17 | install: 18 | - travis_retry composer update --no-interaction --no-ansi --no-progress --no-suggest --optimize-autoloader --prefer-stable 19 | 20 | script: 21 | - ./vendor/bin/phpunit 22 | 23 | notifications: 24 | email: false 25 | 26 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/Regression/Trac/1021/Issue1021Test.php: -------------------------------------------------------------------------------- 1 | assertTrue($data); 10 | } 11 | 12 | /** 13 | * @depends testSomething 14 | */ 15 | public function testSomethingElse() 16 | { 17 | } 18 | 19 | public function provider() 20 | { 21 | return [[true]]; 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /vendor/myclabs/deep-copy/src/DeepCopy/Matcher/Doctrine/DoctrineProxyMatcher.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 class with a __toString() method. 13 | * 14 | */ 15 | class ClassWithToString 16 | { 17 | public function __toString() 18 | { 19 | return 'string representation'; 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /vendor/sebastian/comparator/tests/_files/ClassWithToString.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 ClassWithToString 14 | { 15 | public function __toString() 16 | { 17 | return 'string representation'; 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /vendor/sebastian/recursion-context/src/InvalidArgumentException.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 | final class InvalidArgumentException extends \InvalidArgumentException implements Exception 16 | { 17 | } 18 | -------------------------------------------------------------------------------- /vendor/symfony/yaml/README.md: -------------------------------------------------------------------------------- 1 | Yaml Component 2 | ============== 3 | 4 | The Yaml component loads and dumps YAML files. 5 | 6 | Resources 7 | --------- 8 | 9 | * [Documentation](https://symfony.com/doc/current/components/yaml/index.html) 10 | * [Contributing](https://symfony.com/doc/current/contributing/index.html) 11 | * [Report issues](https://github.com/symfony/symfony/issues) and 12 | [send Pull Requests](https://github.com/symfony/symfony/pulls) 13 | in the [main Symfony repository](https://github.com/symfony/symfony) 14 | -------------------------------------------------------------------------------- /vendor/phpspec/prophecy/src/Prophecy/Exception/InvalidArgumentException.php: -------------------------------------------------------------------------------- 1 | 6 | * Marcello Duarte 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 Prophecy\Exception; 13 | 14 | class InvalidArgumentException extends \InvalidArgumentException implements Exception 15 | { 16 | } 17 | -------------------------------------------------------------------------------- /vendor/phpunit/php-timer/.travis.yml: -------------------------------------------------------------------------------- 1 | language: php 2 | 3 | php: 4 | - 5.3 5 | - 5.4 6 | - 5.5 7 | - 5.6 8 | - 7.0 9 | - 7.0snapshot 10 | - 7.1 11 | - 7.1snapshot 12 | - master 13 | 14 | sudo: false 15 | 16 | before_install: 17 | - composer self-update 18 | - composer clear-cache 19 | 20 | install: 21 | - travis_retry composer update --no-interaction --no-ansi --no-progress --no-suggest --optimize-autoloader --prefer-stable 22 | 23 | script: 24 | - ./vendor/bin/phpunit 25 | 26 | notifications: 27 | email: false 28 | -------------------------------------------------------------------------------- /vendor/phpunit/php-token-stream/.travis.yml: -------------------------------------------------------------------------------- 1 | language: php 2 | 3 | php: 4 | - 7.0 5 | - 7.1 6 | - 7.2 7 | - master 8 | 9 | sudo: false 10 | 11 | before_install: 12 | - composer self-update 13 | - composer clear-cache 14 | 15 | install: 16 | - travis_retry composer update --no-interaction --no-ansi --no-progress --no-suggest 17 | 18 | script: 19 | - ./vendor/bin/phpunit --coverage-clover=coverage.xml 20 | 21 | after_success: 22 | - bash <(curl -s https://codecov.io/bash) 23 | 24 | notifications: 25 | email: false 26 | 27 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/Regression/GitHub/2299/Issue2299Test.php: -------------------------------------------------------------------------------- 1 | 4 | */ 5 | class Test extends PHPUnit_Framework_TestCase 6 | { 7 | public function testOne() 8 | { 9 | $this->expectExceptionMessage('message'); 10 | 11 | throw new Exception('message'); 12 | } 13 | 14 | public function testTwo() 15 | { 16 | $this->expectExceptionCode(123); 17 | 18 | throw new Exception('message', 123); 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /vendor/sebastian/diff/tests/fixtures/patch2.txt: -------------------------------------------------------------------------------- 1 | diff --git a/Foo.php b/Foo.php 2 | index abcdefg..abcdefh 100644 3 | --- a/Foo.php 4 | +++ b/Foo.php 5 | @@ -20,4 +20,5 @@ class Foo 6 | const ONE = 1; 7 | const TWO = 2; 8 | + const THREE = 3; 9 | const FOUR = 4; 10 | 11 | @@ -320,4 +320,5 @@ class Foo 12 | const A = 'A'; 13 | const B = 'B'; 14 | + const C = 'C'; 15 | const D = 'D'; 16 | 17 | @@ -600,4 +600,5 @@ class Foo 18 | public function doSomething() { 19 | 20 | + return 'foo'; 21 | } 22 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/src/Framework/IncompleteTest.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 any exception/error as result of an unit 13 | * test as incomplete implementation or currently not implemented. 14 | */ 15 | interface PHPUnit_Framework_IncompleteTest 16 | { 17 | } 18 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/Mockable.php: -------------------------------------------------------------------------------- 1 | constructorCalled = false; 10 | } 11 | 12 | public function foo() 13 | { 14 | return true; 15 | } 16 | 17 | public function bar() 18 | { 19 | return true; 20 | } 21 | 22 | public function __clone() 23 | { 24 | $this->cloned = true; 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /vendor/sebastian/global-state/tests/_fixture/BlacklistedImplementor.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 BlacklistedImplementor implements BlacklistedInterface 16 | { 17 | private static $attribute; 18 | } 19 | -------------------------------------------------------------------------------- /vendor/phpdocumentor/type-resolver/src/Type.php: -------------------------------------------------------------------------------- 1 | 9 | * @license http://www.opensource.org/licenses/mit-license.php MIT 10 | * @link http://phpdoc.org 11 | */ 12 | 13 | namespace phpDocumentor\Reflection; 14 | 15 | interface Type 16 | { 17 | public function __toString(); 18 | } 19 | -------------------------------------------------------------------------------- /vendor/phpspec/prophecy/src/Prophecy/Exception/Doubler/DoublerException.php: -------------------------------------------------------------------------------- 1 | 6 | * Marcello Duarte 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 Prophecy\Exception\Doubler; 13 | 14 | use Prophecy\Exception\Exception; 15 | 16 | interface DoublerException extends Exception 17 | { 18 | } 19 | -------------------------------------------------------------------------------- /vendor/phpunit/php-code-coverage/tests/_files/source_with_class_and_anonymous_function.php: -------------------------------------------------------------------------------- 1 | assertTrue(true); 7 | } 8 | 9 | /** 10 | * @depends testDependee 11 | * @dataProvider dependentProvider 12 | */ 13 | public function testDependent($a) 14 | { 15 | $this->assertTrue(true); 16 | } 17 | 18 | public function dependentProvider() 19 | { 20 | throw new Exception; 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/MultiDependencyTest.php: -------------------------------------------------------------------------------- 1 | assertEquals('foo', $a); 21 | $this->assertEquals('bar', $b); 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /vendor/psr/log/Psr/Log/LoggerAwareTrait.php: -------------------------------------------------------------------------------- 1 | logger = $logger; 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /vendor/sebastian/comparator/.travis.yml: -------------------------------------------------------------------------------- 1 | language: php 2 | 3 | sudo: false 4 | 5 | install: 6 | - travis_retry composer install --no-interaction --prefer-source 7 | 8 | script: ./vendor/bin/phpunit --configuration ./build/travis-ci.xml 9 | 10 | php: 11 | - 5.3.3 12 | - 5.3 13 | - 5.4 14 | - 5.5 15 | - 5.6 16 | - hhvm 17 | 18 | notifications: 19 | email: false 20 | webhooks: 21 | urls: 22 | - https://webhooks.gitter.im/e/6668f52f3dd4e3f81960 23 | on_success: always 24 | on_failure: always 25 | on_start: false 26 | -------------------------------------------------------------------------------- /vendor/sebastian/comparator/tests/_files/Book.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 | /** 14 | * A book. 15 | * 16 | */ 17 | class Book 18 | { 19 | // the order of properties is important for testing the cycle! 20 | public $author = null; 21 | } 22 | -------------------------------------------------------------------------------- /vendor/phpspec/prophecy/src/Prophecy/Exception/Prophecy/ProphecyException.php: -------------------------------------------------------------------------------- 1 | 6 | * Marcello Duarte 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 Prophecy\Exception\Prophecy; 13 | 14 | use Prophecy\Exception\Exception; 15 | 16 | interface ProphecyException extends Exception 17 | { 18 | } 19 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/src/Framework/OutputError.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 | * Extension to PHPUnit_Framework_AssertionFailedError to mark the special 13 | * case of a test that printed output. 14 | */ 15 | class PHPUnit_Framework_OutputError extends PHPUnit_Framework_AssertionFailedError 16 | { 17 | } 18 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/TextUI/list-suites.phpt: -------------------------------------------------------------------------------- 1 | --TEST-- 2 | phpunit --list-suites --configuration=__DIR__.'/../_files/configuration.suites.xml' 3 | --FILE-- 4 | 20 | */ 21 | public function testThree() 22 | { 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/Runner/BaseTestRunnerTest.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 | class Runner_BaseTestRunnerTest extends PHPUnit_Framework_TestCase 12 | { 13 | public function testInvokeNonStaticSuite() 14 | { 15 | $runner = new MockRunner; 16 | $runner->getTest('NonStatic'); 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /application/config/testing/profiler.php: -------------------------------------------------------------------------------- 1 | 6 | * Marcello Duarte 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 Prophecy\Exception\Prediction; 13 | 14 | use Prophecy\Exception\Exception; 15 | 16 | interface PredictionException extends Exception 17 | { 18 | } 19 | -------------------------------------------------------------------------------- /vendor/phpunit/php-code-coverage/tests/_files/NotExistingCoveredElementTest.php: -------------------------------------------------------------------------------- 1 | 20 | */ 21 | public function testThree() 22 | { 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/Regression/GitHub/2382/Issue2382Test.php: -------------------------------------------------------------------------------- 1 | assertInstanceOf(\Exception::class, $test); 12 | } 13 | 14 | public function dataProvider() 15 | { 16 | return [ 17 | [ 18 | $this->getMockBuilder(\Exception::class)->getMock() 19 | ] 20 | ]; 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /application/config/development/profiler.php: -------------------------------------------------------------------------------- 1 | __load(); 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /vendor/phpspec/prophecy/src/Prophecy/Exception/Doubler/DoubleException.php: -------------------------------------------------------------------------------- 1 | 6 | * Marcello Duarte 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 Prophecy\Exception\Doubler; 13 | 14 | use RuntimeException; 15 | 16 | class DoubleException extends RuntimeException implements DoublerException 17 | { 18 | } 19 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/TextUI/dataprovider-issue-2833.phpt: -------------------------------------------------------------------------------- 1 | --TEST-- 2 | phpunit ../_files/DataProviderIssue2833 3 | --FILE-- 4 | 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 | * Interface for exceptions used by PHPUnit_MockObject. 13 | * 14 | * @since Interface available since Release 2.0.6 15 | */ 16 | interface PHPUnit_Framework_MockObject_Exception 17 | { 18 | } 19 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/RequirementsClassDocBlockTest.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 | /** 14 | * A struct. 15 | * 16 | */ 17 | class Struct 18 | { 19 | public $var; 20 | 21 | public function __construct($var) 22 | { 23 | $this->var = $var; 24 | } 25 | } 26 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/TextUI/dataprovider-issue-2859.phpt: -------------------------------------------------------------------------------- 1 | --TEST-- 2 | phpunit -c ../_files/DataProviderIssue2859/phpunit.xml 3 | --FILE-- 4 | 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\CodeCoverage; 12 | 13 | /** 14 | * Exception that is raised when covered code is not executed. 15 | */ 16 | class CoveredCodeNotExecutedException extends RuntimeException 17 | { 18 | } 19 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/src/Framework/RiskyTestError.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 | * Extension to PHPUnit_Framework_AssertionFailedError to mark the special 13 | * case of a risky test. 14 | */ 15 | class PHPUnit_Framework_RiskyTestError extends PHPUnit_Framework_AssertionFailedError implements PHPUnit_Framework_RiskyTest 16 | { 17 | } 18 | -------------------------------------------------------------------------------- /vendor/symfony/yaml/Exception/DumpException.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\Yaml\Exception; 13 | 14 | /** 15 | * Exception class thrown when an error occurs during dumping. 16 | * 17 | * @author Fabien Potencier 18 | */ 19 | class DumpException extends RuntimeException 20 | { 21 | } 22 | -------------------------------------------------------------------------------- /vendor/phpunit/php-code-coverage/src/Exception/MissingCoversAnnotationException.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\CodeCoverage; 12 | 13 | /** 14 | * Exception that is raised when @covers must be used but is not. 15 | */ 16 | class MissingCoversAnnotationException extends RuntimeException 17 | { 18 | } 19 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit-mock-objects/src/Framework/MockObject/Exception/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 | /** 12 | * @since Class available since Release 2.0.6 13 | */ 14 | class PHPUnit_Framework_MockObject_RuntimeException extends RuntimeException implements PHPUnit_Framework_MockObject_Exception 15 | { 16 | } 17 | -------------------------------------------------------------------------------- /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 !clone testTwo 18 | */ 19 | public function testThree() 20 | { 21 | } 22 | 23 | /** 24 | * @depends clone testOne 25 | */ 26 | public function testFour() 27 | { 28 | } 29 | } 30 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/src/Framework/SkippedTestError.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 | * Extension to PHPUnit_Framework_AssertionFailedError to mark the special 13 | * case of a skipped test. 14 | */ 15 | class PHPUnit_Framework_SkippedTestError extends PHPUnit_Framework_AssertionFailedError implements PHPUnit_Framework_SkippedTest 16 | { 17 | } 18 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/TextUI/dependencies2.phpt: -------------------------------------------------------------------------------- 1 | --TEST-- 2 | phpunit StackTest ../_files/StackTest.php 3 | --FILE-- 4 |