├── application
├── .htaccess
├── cache
│ └── index.html
├── config
│ ├── autoload.php
│ ├── config.php
│ ├── constants.php
│ ├── database.php
│ ├── doctypes.php
│ ├── foreign_chars.php
│ ├── hooks.php
│ ├── index.html
│ ├── memcached.php
│ ├── migration.php
│ ├── mimes.php
│ ├── profiler.php
│ ├── routes.php
│ ├── smileys.php
│ └── user_agents.php
├── controllers
│ ├── Product.php
│ └── index.html
├── core
│ └── index.html
├── helpers
│ └── index.html
├── hooks
│ └── index.html
├── index.html
├── language
│ ├── english
│ │ └── index.html
│ └── index.html
├── libraries
│ └── index.html
├── logs
│ └── index.html
├── models
│ ├── Product_model.php
│ └── index.html
├── third_party
│ └── index.html
└── views
│ ├── errors
│ ├── cli
│ │ ├── error_404.php
│ │ ├── error_db.php
│ │ ├── error_exception.php
│ │ ├── error_general.php
│ │ ├── error_php.php
│ │ └── index.html
│ ├── html
│ │ ├── error_404.php
│ │ ├── error_db.php
│ │ ├── error_exception.php
│ │ ├── error_general.php
│ │ ├── error_php.php
│ │ └── index.html
│ └── index.html
│ ├── index.html
│ ├── product_view.php
│ └── vendor
│ ├── autoload.php
│ ├── bin
│ ├── phpunit
│ └── phpunit.bat
│ ├── composer
│ ├── ClassLoader.php
│ ├── LICENSE
│ ├── autoload_classmap.php
│ ├── autoload_files.php
│ ├── autoload_namespaces.php
│ ├── autoload_psr4.php
│ ├── autoload_real.php
│ ├── autoload_static.php
│ └── installed.json
│ ├── doctrine
│ └── instantiator
│ │ ├── .gitignore
│ │ ├── .scrutinizer.yml
│ │ ├── .travis.install.sh
│ │ ├── .travis.yml
│ │ ├── CONTRIBUTING.md
│ │ ├── LICENSE
│ │ ├── README.md
│ │ ├── composer.json
│ │ ├── phpmd.xml.dist
│ │ ├── phpunit.xml.dist
│ │ ├── src
│ │ └── Doctrine
│ │ │ └── Instantiator
│ │ │ ├── Exception
│ │ │ ├── ExceptionInterface.php
│ │ │ ├── InvalidArgumentException.php
│ │ │ └── UnexpectedValueException.php
│ │ │ ├── Instantiator.php
│ │ │ └── InstantiatorInterface.php
│ │ └── tests
│ │ └── DoctrineTest
│ │ ├── InstantiatorPerformance
│ │ └── InstantiatorPerformanceEvent.php
│ │ ├── InstantiatorTest
│ │ ├── Exception
│ │ │ ├── InvalidArgumentExceptionTest.php
│ │ │ └── UnexpectedValueExceptionTest.php
│ │ └── InstantiatorTest.php
│ │ └── InstantiatorTestAsset
│ │ ├── AbstractClassAsset.php
│ │ ├── ArrayObjectAsset.php
│ │ ├── ExceptionAsset.php
│ │ ├── FinalExceptionAsset.php
│ │ ├── PharAsset.php
│ │ ├── PharExceptionAsset.php
│ │ ├── SerializableArrayObjectAsset.php
│ │ ├── SimpleSerializableAsset.php
│ │ ├── SimpleTraitAsset.php
│ │ ├── UnCloneableAsset.php
│ │ ├── UnserializeExceptionArrayObjectAsset.php
│ │ ├── WakeUpNoticesAsset.php
│ │ └── XMLReaderAsset.php
│ ├── mikey179
│ └── vfsstream
│ │ ├── .gitignore
│ │ ├── .travis.yml
│ │ ├── CHANGES
│ │ ├── LICENSE
│ │ ├── composer.json
│ │ ├── examples
│ │ ├── Example.php
│ │ ├── ExampleTestCaseOldWay.php
│ │ ├── ExampleTestCaseWithVfsStream.php
│ │ ├── FailureExample.php
│ │ ├── FailureExampleTestCase.php
│ │ ├── FileModeExampleTestCaseOldWay.php
│ │ ├── FilePermissionsExample.php
│ │ ├── FilePermissionsExampleTestCase.php
│ │ ├── FilemodeExample.php
│ │ ├── FilemodeExampleTestCaseWithVfsStream.php
│ │ └── bootstrap.php
│ │ ├── phpdoc.dist.xml
│ │ ├── phpunit.xml.dist
│ │ ├── readme.md
│ │ └── src
│ │ ├── main
│ │ └── php
│ │ │ └── org
│ │ │ └── bovigo
│ │ │ └── vfs
│ │ │ ├── Quota.php
│ │ │ ├── vfsStream.php
│ │ │ ├── vfsStreamAbstractContent.php
│ │ │ ├── vfsStreamContainer.php
│ │ │ ├── vfsStreamContainerIterator.php
│ │ │ ├── vfsStreamContent.php
│ │ │ ├── vfsStreamDirectory.php
│ │ │ ├── vfsStreamException.php
│ │ │ ├── vfsStreamFile.php
│ │ │ ├── vfsStreamWrapper.php
│ │ │ └── visitor
│ │ │ ├── vfsStreamAbstractVisitor.php
│ │ │ ├── vfsStreamPrintVisitor.php
│ │ │ ├── vfsStreamStructureVisitor.php
│ │ │ └── vfsStreamVisitor.php
│ │ └── test
│ │ ├── php
│ │ └── org
│ │ │ └── bovigo
│ │ │ └── vfs
│ │ │ ├── QuotaTestCase.php
│ │ │ ├── proxy
│ │ │ └── vfsStreamWrapperRecordingProxy.php
│ │ │ ├── vfsStreamAbstractContentTestCase.php
│ │ │ ├── vfsStreamContainerIteratorTestCase.php
│ │ │ ├── vfsStreamDirectoryIssue18TestCase.php
│ │ │ ├── vfsStreamDirectoryTestCase.php
│ │ │ ├── vfsStreamFileTestCase.php
│ │ │ ├── vfsStreamGlobTestCase.php
│ │ │ ├── vfsStreamResolveIncludePathTestCase.php
│ │ │ ├── vfsStreamTestCase.php
│ │ │ ├── vfsStreamUmaskTestCase.php
│ │ │ ├── vfsStreamWrapperAlreadyRegisteredTestCase.php
│ │ │ ├── vfsStreamWrapperBaseTestCase.php
│ │ │ ├── vfsStreamWrapperDirSeparatorTestCase.php
│ │ │ ├── vfsStreamWrapperDirTestCase.php
│ │ │ ├── vfsStreamWrapperFileTestCase.php
│ │ │ ├── vfsStreamWrapperFileTimesTestCase.php
│ │ │ ├── vfsStreamWrapperFlockTestCase.php
│ │ │ ├── vfsStreamWrapperQuotaTestCase.php
│ │ │ ├── vfsStreamWrapperSetOptionTestCase.php
│ │ │ ├── vfsStreamWrapperStreamSelectTestCase.php
│ │ │ ├── vfsStreamWrapperTestCase.php
│ │ │ ├── vfsStreamWrapperWithoutRootTestCase.php
│ │ │ ├── vfsStreamZipTestCase.php
│ │ │ └── visitor
│ │ │ ├── vfsStreamAbstractVisitorTestCase.php
│ │ │ ├── vfsStreamPrintVisitorTestCase.php
│ │ │ └── vfsStreamStructureVisitorTestCase.php
│ │ └── resources
│ │ └── filesystemcopy
│ │ ├── emptyFolder
│ │ └── .gitignore
│ │ └── withSubfolders
│ │ ├── aFile.txt
│ │ ├── subfolder1
│ │ └── file1.txt
│ │ └── subfolder2
│ │ └── .gitignore
│ ├── myclabs
│ └── deep-copy
│ │ ├── .gitattributes
│ │ ├── .gitignore
│ │ ├── .travis.yml
│ │ ├── LICENSE
│ │ ├── README.md
│ │ ├── composer.json
│ │ ├── doc
│ │ ├── clone.png
│ │ ├── deep-clone.png
│ │ ├── deep-copy.png
│ │ └── graph.png
│ │ ├── fixtures
│ │ ├── f001
│ │ │ ├── A.php
│ │ │ └── B.php
│ │ ├── f002
│ │ │ └── A.php
│ │ ├── f003
│ │ │ └── Foo.php
│ │ ├── f004
│ │ │ └── UnclonableItem.php
│ │ ├── f005
│ │ │ └── Foo.php
│ │ ├── f006
│ │ │ ├── A.php
│ │ │ └── B.php
│ │ ├── f007
│ │ │ ├── FooDateInterval.php
│ │ │ └── FooDateTimeZone.php
│ │ └── f008
│ │ │ ├── A.php
│ │ │ └── B.php
│ │ └── src
│ │ └── DeepCopy
│ │ ├── DeepCopy.php
│ │ ├── Exception
│ │ ├── CloneException.php
│ │ └── PropertyException.php
│ │ ├── Filter
│ │ ├── Doctrine
│ │ │ ├── DoctrineCollectionFilter.php
│ │ │ ├── DoctrineEmptyCollectionFilter.php
│ │ │ └── DoctrineProxyFilter.php
│ │ ├── Filter.php
│ │ ├── KeepFilter.php
│ │ ├── ReplaceFilter.php
│ │ └── SetNullFilter.php
│ │ ├── Matcher
│ │ ├── Doctrine
│ │ │ └── DoctrineProxyMatcher.php
│ │ ├── Matcher.php
│ │ ├── PropertyMatcher.php
│ │ ├── PropertyNameMatcher.php
│ │ └── PropertyTypeMatcher.php
│ │ ├── Reflection
│ │ └── ReflectionHelper.php
│ │ ├── TypeFilter
│ │ ├── Date
│ │ │ └── DateIntervalFilter.php
│ │ ├── ReplaceFilter.php
│ │ ├── ShallowCopyFilter.php
│ │ ├── Spl
│ │ │ ├── SplDoublyLinkedList.php
│ │ │ └── SplDoublyLinkedListFilter.php
│ │ └── TypeFilter.php
│ │ ├── TypeMatcher
│ │ └── TypeMatcher.php
│ │ └── deep_copy.php
│ ├── paragonie
│ ├── random_compat
│ │ ├── LICENSE
│ │ ├── composer.json
│ │ ├── dist
│ │ │ ├── random_compat.phar.pubkey
│ │ │ └── random_compat.phar.pubkey.asc
│ │ └── lib
│ │ │ ├── byte_safe_strings.php
│ │ │ ├── cast_to_int.php
│ │ │ ├── error_polyfill.php
│ │ │ ├── random.php
│ │ │ ├── random_bytes_com_dotnet.php
│ │ │ ├── random_bytes_dev_urandom.php
│ │ │ ├── random_bytes_libsodium.php
│ │ │ ├── random_bytes_libsodium_legacy.php
│ │ │ ├── random_bytes_mcrypt.php
│ │ │ └── random_int.php
│ └── sodium_compat
│ │ ├── .gitignore
│ │ ├── LICENSE
│ │ ├── README.md
│ │ ├── appveyor.yml
│ │ ├── autoload-fast.php
│ │ ├── autoload-pedantic.php
│ │ ├── autoload.php
│ │ ├── build-phar.sh
│ │ ├── composer.json
│ │ ├── dist
│ │ ├── Makefile
│ │ └── box.json
│ │ ├── lib
│ │ ├── constants.php
│ │ ├── namespaced.php
│ │ ├── php72compat.php
│ │ └── sodium_compat.php
│ │ ├── namespaced
│ │ ├── Compat.php
│ │ ├── Core
│ │ │ ├── BLAKE2b.php
│ │ │ ├── ChaCha20.php
│ │ │ ├── ChaCha20
│ │ │ │ ├── Ctx.php
│ │ │ │ └── IetfCtx.php
│ │ │ ├── Curve25519.php
│ │ │ ├── Curve25519
│ │ │ │ ├── Fe.php
│ │ │ │ ├── Ge
│ │ │ │ │ ├── Cached.php
│ │ │ │ │ ├── P1p1.php
│ │ │ │ │ ├── P2.php
│ │ │ │ │ ├── P3.php
│ │ │ │ │ └── Precomp.php
│ │ │ │ └── H.php
│ │ │ ├── Ed25519.php
│ │ │ ├── HChaCha20.php
│ │ │ ├── HSalsa20.php
│ │ │ ├── Poly1305.php
│ │ │ ├── Poly1305
│ │ │ │ └── State.php
│ │ │ ├── Salsa20.php
│ │ │ ├── SipHash.php
│ │ │ ├── Util.php
│ │ │ ├── X25519.php
│ │ │ ├── XChaCha20.php
│ │ │ └── Xsalsa20.php
│ │ ├── Crypto.php
│ │ └── File.php
│ │ ├── phpstan.neon.dist
│ │ ├── phpunit.xml.dist
│ │ └── src
│ │ ├── Compat.php
│ │ ├── Core
│ │ ├── BLAKE2b.php
│ │ ├── ChaCha20.php
│ │ ├── ChaCha20
│ │ │ ├── Ctx.php
│ │ │ └── IetfCtx.php
│ │ ├── Curve25519.php
│ │ ├── Curve25519
│ │ │ ├── Fe.php
│ │ │ ├── Ge
│ │ │ │ ├── Cached.php
│ │ │ │ ├── P1p1.php
│ │ │ │ ├── P2.php
│ │ │ │ ├── P3.php
│ │ │ │ └── Precomp.php
│ │ │ ├── H.php
│ │ │ └── README.md
│ │ ├── Ed25519.php
│ │ ├── HChaCha20.php
│ │ ├── HSalsa20.php
│ │ ├── Poly1305.php
│ │ ├── Poly1305
│ │ │ └── State.php
│ │ ├── Salsa20.php
│ │ ├── SipHash.php
│ │ ├── Util.php
│ │ ├── X25519.php
│ │ ├── XChaCha20.php
│ │ └── XSalsa20.php
│ │ ├── Core32
│ │ ├── BLAKE2b.php
│ │ ├── ChaCha20.php
│ │ ├── ChaCha20
│ │ │ ├── Ctx.php
│ │ │ └── IetfCtx.php
│ │ ├── Curve25519.php
│ │ ├── Curve25519
│ │ │ ├── Fe.php
│ │ │ ├── Ge
│ │ │ │ ├── Cached.php
│ │ │ │ ├── P1p1.php
│ │ │ │ ├── P2.php
│ │ │ │ ├── P3.php
│ │ │ │ └── Precomp.php
│ │ │ ├── H.php
│ │ │ └── README.md
│ │ ├── Ed25519.php
│ │ ├── HChaCha20.php
│ │ ├── HSalsa20.php
│ │ ├── Int32.php
│ │ ├── Int64.php
│ │ ├── Poly1305.php
│ │ ├── Poly1305
│ │ │ └── State.php
│ │ ├── Salsa20.php
│ │ ├── SipHash.php
│ │ ├── Util.php
│ │ ├── X25519.php
│ │ ├── XChaCha20.php
│ │ └── XSalsa20.php
│ │ ├── Crypto.php
│ │ ├── Crypto32.php
│ │ ├── File.php
│ │ └── SodiumException.php
│ ├── phpdocumentor
│ ├── reflection-common
│ │ ├── .travis.yml
│ │ ├── LICENSE
│ │ ├── README.md
│ │ ├── composer.json
│ │ └── src
│ │ │ ├── Element.php
│ │ │ ├── File.php
│ │ │ ├── Fqsen.php
│ │ │ ├── Location.php
│ │ │ ├── Project.php
│ │ │ └── ProjectFactory.php
│ ├── reflection-docblock
│ │ ├── LICENSE
│ │ ├── README.md
│ │ ├── composer.json
│ │ └── src
│ │ │ ├── DocBlock.php
│ │ │ ├── DocBlock
│ │ │ ├── Description.php
│ │ │ ├── DescriptionFactory.php
│ │ │ ├── ExampleFinder.php
│ │ │ ├── Serializer.php
│ │ │ ├── StandardTagFactory.php
│ │ │ ├── Tag.php
│ │ │ ├── TagFactory.php
│ │ │ └── Tags
│ │ │ │ ├── Author.php
│ │ │ │ ├── BaseTag.php
│ │ │ │ ├── Covers.php
│ │ │ │ ├── Deprecated.php
│ │ │ │ ├── Example.php
│ │ │ │ ├── Factory
│ │ │ │ ├── StaticMethod.php
│ │ │ │ └── Strategy.php
│ │ │ │ ├── Formatter.php
│ │ │ │ ├── Formatter
│ │ │ │ ├── AlignFormatter.php
│ │ │ │ └── PassthroughFormatter.php
│ │ │ │ ├── Generic.php
│ │ │ │ ├── Link.php
│ │ │ │ ├── Method.php
│ │ │ │ ├── Param.php
│ │ │ │ ├── Property.php
│ │ │ │ ├── PropertyRead.php
│ │ │ │ ├── PropertyWrite.php
│ │ │ │ ├── Reference
│ │ │ │ ├── Fqsen.php
│ │ │ │ ├── Reference.php
│ │ │ │ └── Url.php
│ │ │ │ ├── Return_.php
│ │ │ │ ├── See.php
│ │ │ │ ├── Since.php
│ │ │ │ ├── Source.php
│ │ │ │ ├── Throws.php
│ │ │ │ ├── Uses.php
│ │ │ │ ├── Var_.php
│ │ │ │ └── Version.php
│ │ │ ├── DocBlockFactory.php
│ │ │ └── DocBlockFactoryInterface.php
│ └── type-resolver
│ │ ├── LICENSE
│ │ ├── README.md
│ │ ├── composer.json
│ │ └── src
│ │ ├── FqsenResolver.php
│ │ ├── Type.php
│ │ ├── TypeResolver.php
│ │ └── Types
│ │ ├── Array_.php
│ │ ├── Boolean.php
│ │ ├── Callable_.php
│ │ ├── Compound.php
│ │ ├── Context.php
│ │ ├── ContextFactory.php
│ │ ├── Float_.php
│ │ ├── Integer.php
│ │ ├── Iterable_.php
│ │ ├── Mixed_.php
│ │ ├── Null_.php
│ │ ├── Nullable.php
│ │ ├── Object_.php
│ │ ├── Parent_.php
│ │ ├── Resource_.php
│ │ ├── Scalar.php
│ │ ├── Self_.php
│ │ ├── Static_.php
│ │ ├── String_.php
│ │ ├── This.php
│ │ └── Void_.php
│ ├── phpspec
│ └── prophecy
│ │ ├── CHANGES.md
│ │ ├── LICENSE
│ │ ├── README.md
│ │ ├── composer.json
│ │ └── src
│ │ └── Prophecy
│ │ ├── Argument.php
│ │ ├── Argument
│ │ ├── ArgumentsWildcard.php
│ │ └── Token
│ │ │ ├── AnyValueToken.php
│ │ │ ├── AnyValuesToken.php
│ │ │ ├── ApproximateValueToken.php
│ │ │ ├── ArrayCountToken.php
│ │ │ ├── ArrayEntryToken.php
│ │ │ ├── ArrayEveryEntryToken.php
│ │ │ ├── CallbackToken.php
│ │ │ ├── ExactValueToken.php
│ │ │ ├── IdenticalValueToken.php
│ │ │ ├── LogicalAndToken.php
│ │ │ ├── LogicalNotToken.php
│ │ │ ├── ObjectStateToken.php
│ │ │ ├── StringContainsToken.php
│ │ │ ├── TokenInterface.php
│ │ │ └── TypeToken.php
│ │ ├── Call
│ │ ├── Call.php
│ │ └── CallCenter.php
│ │ ├── Comparator
│ │ ├── ClosureComparator.php
│ │ ├── Factory.php
│ │ └── ProphecyComparator.php
│ │ ├── Doubler
│ │ ├── CachedDoubler.php
│ │ ├── ClassPatch
│ │ │ ├── ClassPatchInterface.php
│ │ │ ├── DisableConstructorPatch.php
│ │ │ ├── HhvmExceptionPatch.php
│ │ │ ├── KeywordPatch.php
│ │ │ ├── MagicCallPatch.php
│ │ │ ├── ProphecySubjectPatch.php
│ │ │ ├── ReflectionClassNewInstancePatch.php
│ │ │ ├── SplFileInfoPatch.php
│ │ │ ├── ThrowablePatch.php
│ │ │ └── TraversablePatch.php
│ │ ├── DoubleInterface.php
│ │ ├── Doubler.php
│ │ ├── Generator
│ │ │ ├── ClassCodeGenerator.php
│ │ │ ├── ClassCreator.php
│ │ │ ├── ClassMirror.php
│ │ │ ├── Node
│ │ │ │ ├── ArgumentNode.php
│ │ │ │ ├── ClassNode.php
│ │ │ │ └── MethodNode.php
│ │ │ ├── ReflectionInterface.php
│ │ │ └── TypeHintReference.php
│ │ ├── LazyDouble.php
│ │ └── NameGenerator.php
│ │ ├── Exception
│ │ ├── Call
│ │ │ └── UnexpectedCallException.php
│ │ ├── Doubler
│ │ │ ├── ClassCreatorException.php
│ │ │ ├── ClassMirrorException.php
│ │ │ ├── ClassNotFoundException.php
│ │ │ ├── DoubleException.php
│ │ │ ├── DoublerException.php
│ │ │ ├── InterfaceNotFoundException.php
│ │ │ ├── MethodNotExtendableException.php
│ │ │ ├── MethodNotFoundException.php
│ │ │ └── ReturnByReferenceException.php
│ │ ├── Exception.php
│ │ ├── InvalidArgumentException.php
│ │ ├── Prediction
│ │ │ ├── AggregateException.php
│ │ │ ├── FailedPredictionException.php
│ │ │ ├── NoCallsException.php
│ │ │ ├── PredictionException.php
│ │ │ ├── UnexpectedCallsCountException.php
│ │ │ └── UnexpectedCallsException.php
│ │ └── Prophecy
│ │ │ ├── MethodProphecyException.php
│ │ │ ├── ObjectProphecyException.php
│ │ │ └── ProphecyException.php
│ │ ├── PhpDocumentor
│ │ ├── ClassAndInterfaceTagRetriever.php
│ │ ├── ClassTagRetriever.php
│ │ ├── LegacyClassTagRetriever.php
│ │ └── MethodTagRetrieverInterface.php
│ │ ├── Prediction
│ │ ├── CallPrediction.php
│ │ ├── CallTimesPrediction.php
│ │ ├── CallbackPrediction.php
│ │ ├── NoCallsPrediction.php
│ │ └── PredictionInterface.php
│ │ ├── Promise
│ │ ├── CallbackPromise.php
│ │ ├── PromiseInterface.php
│ │ ├── ReturnArgumentPromise.php
│ │ ├── ReturnPromise.php
│ │ └── ThrowPromise.php
│ │ ├── Prophecy
│ │ ├── MethodProphecy.php
│ │ ├── ObjectProphecy.php
│ │ ├── ProphecyInterface.php
│ │ ├── ProphecySubjectInterface.php
│ │ ├── Revealer.php
│ │ └── RevealerInterface.php
│ │ ├── Prophet.php
│ │ └── Util
│ │ ├── ExportUtil.php
│ │ └── StringUtil.php
│ ├── phpunit
│ ├── php-code-coverage
│ │ ├── .gitattributes
│ │ ├── .github
│ │ │ ├── CONTRIBUTING.md
│ │ │ └── ISSUE_TEMPLATE.md
│ │ ├── .gitignore
│ │ ├── .php_cs
│ │ ├── .travis.yml
│ │ ├── ChangeLog-2.2.md
│ │ ├── ChangeLog-3.0.md
│ │ ├── ChangeLog-3.1.md
│ │ ├── ChangeLog-3.2.md
│ │ ├── ChangeLog-3.3.md
│ │ ├── ChangeLog-4.0.md
│ │ ├── LICENSE
│ │ ├── README.md
│ │ ├── build.xml
│ │ ├── composer.json
│ │ ├── phpunit.xml
│ │ ├── src
│ │ │ ├── CodeCoverage.php
│ │ │ ├── Driver
│ │ │ │ ├── Driver.php
│ │ │ │ ├── HHVM.php
│ │ │ │ ├── PHPDBG.php
│ │ │ │ └── Xdebug.php
│ │ │ ├── Exception
│ │ │ │ ├── CoveredCodeNotExecutedException.php
│ │ │ │ ├── Exception.php
│ │ │ │ ├── InvalidArgumentException.php
│ │ │ │ ├── MissingCoversAnnotationException.php
│ │ │ │ ├── RuntimeException.php
│ │ │ │ └── UnintentionallyCoveredCodeException.php
│ │ │ ├── Filter.php
│ │ │ ├── Node
│ │ │ │ ├── AbstractNode.php
│ │ │ │ ├── Builder.php
│ │ │ │ ├── Directory.php
│ │ │ │ ├── File.php
│ │ │ │ └── Iterator.php
│ │ │ ├── Report
│ │ │ │ ├── Clover.php
│ │ │ │ ├── Crap4j.php
│ │ │ │ ├── Html
│ │ │ │ │ ├── Facade.php
│ │ │ │ │ ├── Renderer.php
│ │ │ │ │ └── Renderer
│ │ │ │ │ │ ├── Dashboard.php
│ │ │ │ │ │ ├── Directory.php
│ │ │ │ │ │ ├── File.php
│ │ │ │ │ │ └── Template
│ │ │ │ │ │ ├── coverage_bar.html.dist
│ │ │ │ │ │ ├── css
│ │ │ │ │ │ ├── bootstrap.min.css
│ │ │ │ │ │ ├── nv.d3.min.css
│ │ │ │ │ │ └── style.css
│ │ │ │ │ │ ├── dashboard.html.dist
│ │ │ │ │ │ ├── directory.html.dist
│ │ │ │ │ │ ├── directory_item.html.dist
│ │ │ │ │ │ ├── file.html.dist
│ │ │ │ │ │ ├── file_item.html.dist
│ │ │ │ │ │ ├── fonts
│ │ │ │ │ │ ├── glyphicons-halflings-regular.eot
│ │ │ │ │ │ ├── glyphicons-halflings-regular.svg
│ │ │ │ │ │ ├── glyphicons-halflings-regular.ttf
│ │ │ │ │ │ ├── glyphicons-halflings-regular.woff
│ │ │ │ │ │ └── glyphicons-halflings-regular.woff2
│ │ │ │ │ │ ├── js
│ │ │ │ │ │ ├── bootstrap.min.js
│ │ │ │ │ │ ├── d3.min.js
│ │ │ │ │ │ ├── holder.min.js
│ │ │ │ │ │ ├── html5shiv.min.js
│ │ │ │ │ │ ├── jquery.min.js
│ │ │ │ │ │ ├── nv.d3.min.js
│ │ │ │ │ │ └── respond.min.js
│ │ │ │ │ │ └── method_item.html.dist
│ │ │ │ ├── PHP.php
│ │ │ │ ├── Text.php
│ │ │ │ └── Xml
│ │ │ │ │ ├── Coverage.php
│ │ │ │ │ ├── Directory.php
│ │ │ │ │ ├── Facade.php
│ │ │ │ │ ├── File.php
│ │ │ │ │ ├── Method.php
│ │ │ │ │ ├── Node.php
│ │ │ │ │ ├── Project.php
│ │ │ │ │ ├── Report.php
│ │ │ │ │ ├── Tests.php
│ │ │ │ │ ├── Totals.php
│ │ │ │ │ └── Unit.php
│ │ │ └── Util.php
│ │ └── tests
│ │ │ ├── TestCase.php
│ │ │ ├── _files
│ │ │ ├── BankAccount-clover.xml
│ │ │ ├── BankAccount-crap4j.xml
│ │ │ ├── BankAccount-text.txt
│ │ │ ├── BankAccount.php
│ │ │ ├── BankAccountTest.php
│ │ │ ├── CoverageClassExtendedTest.php
│ │ │ ├── CoverageClassTest.php
│ │ │ ├── CoverageFunctionParenthesesTest.php
│ │ │ ├── CoverageFunctionParenthesesWhitespaceTest.php
│ │ │ ├── CoverageFunctionTest.php
│ │ │ ├── CoverageMethodOneLineAnnotationTest.php
│ │ │ ├── CoverageMethodParenthesesTest.php
│ │ │ ├── CoverageMethodParenthesesWhitespaceTest.php
│ │ │ ├── CoverageMethodTest.php
│ │ │ ├── CoverageNoneTest.php
│ │ │ ├── CoverageNotPrivateTest.php
│ │ │ ├── CoverageNotProtectedTest.php
│ │ │ ├── CoverageNotPublicTest.php
│ │ │ ├── CoverageNothingTest.php
│ │ │ ├── CoveragePrivateTest.php
│ │ │ ├── CoverageProtectedTest.php
│ │ │ ├── CoveragePublicTest.php
│ │ │ ├── CoverageTwoDefaultClassAnnotations.php
│ │ │ ├── CoveredClass.php
│ │ │ ├── CoveredFunction.php
│ │ │ ├── NamespaceCoverageClassExtendedTest.php
│ │ │ ├── NamespaceCoverageClassTest.php
│ │ │ ├── NamespaceCoverageCoversClassPublicTest.php
│ │ │ ├── NamespaceCoverageCoversClassTest.php
│ │ │ ├── NamespaceCoverageMethodTest.php
│ │ │ ├── NamespaceCoverageNotPrivateTest.php
│ │ │ ├── NamespaceCoverageNotProtectedTest.php
│ │ │ ├── NamespaceCoverageNotPublicTest.php
│ │ │ ├── NamespaceCoveragePrivateTest.php
│ │ │ ├── NamespaceCoverageProtectedTest.php
│ │ │ ├── NamespaceCoveragePublicTest.php
│ │ │ ├── NamespaceCoveredClass.php
│ │ │ ├── NotExistingCoveredElementTest.php
│ │ │ ├── Report
│ │ │ │ ├── HTML
│ │ │ │ │ ├── CoverageForBankAccount
│ │ │ │ │ │ ├── BankAccount.php.html
│ │ │ │ │ │ ├── dashboard.html
│ │ │ │ │ │ └── index.html
│ │ │ │ │ ├── CoverageForClassWithAnonymousFunction
│ │ │ │ │ │ ├── dashboard.html
│ │ │ │ │ │ ├── index.html
│ │ │ │ │ │ └── source_with_class_and_anonymous_function.php.html
│ │ │ │ │ └── CoverageForFileWithIgnoredLines
│ │ │ │ │ │ ├── dashboard.html
│ │ │ │ │ │ ├── index.html
│ │ │ │ │ │ └── source_with_ignore.php.html
│ │ │ │ └── XML
│ │ │ │ │ ├── CoverageForBankAccount
│ │ │ │ │ ├── BankAccount.php.xml
│ │ │ │ │ └── index.xml
│ │ │ │ │ ├── CoverageForClassWithAnonymousFunction
│ │ │ │ │ ├── index.xml
│ │ │ │ │ └── source_with_class_and_anonymous_function.php.xml
│ │ │ │ │ └── CoverageForFileWithIgnoredLines
│ │ │ │ │ ├── index.xml
│ │ │ │ │ └── source_with_ignore.php.xml
│ │ │ ├── class-with-anonymous-function-clover.xml
│ │ │ ├── class-with-anonymous-function-crap4j.xml
│ │ │ ├── class-with-anonymous-function-text.txt
│ │ │ ├── ignored-lines-clover.xml
│ │ │ ├── ignored-lines-crap4j.xml
│ │ │ ├── ignored-lines-text.txt
│ │ │ ├── source_with_class_and_anonymous_function.php
│ │ │ ├── source_with_ignore.php
│ │ │ ├── source_with_namespace.php
│ │ │ ├── source_with_oneline_annotations.php
│ │ │ ├── source_without_ignore.php
│ │ │ └── source_without_namespace.php
│ │ │ ├── bootstrap.php
│ │ │ └── tests
│ │ │ ├── BuilderTest.php
│ │ │ ├── CloverTest.php
│ │ │ ├── CodeCoverageTest.php
│ │ │ ├── Crap4jTest.php
│ │ │ ├── FilterTest.php
│ │ │ ├── HTMLTest.php
│ │ │ ├── TextTest.php
│ │ │ ├── UtilTest.php
│ │ │ └── XMLTest.php
│ ├── php-file-iterator
│ │ ├── .gitattributes
│ │ ├── .gitignore
│ │ ├── ChangeLog.md
│ │ ├── LICENSE
│ │ ├── README.md
│ │ ├── composer.json
│ │ └── src
│ │ │ ├── Facade.php
│ │ │ ├── Factory.php
│ │ │ └── Iterator.php
│ ├── php-text-template
│ │ ├── .gitattributes
│ │ ├── .gitignore
│ │ ├── LICENSE
│ │ ├── README.md
│ │ ├── composer.json
│ │ └── src
│ │ │ └── Template.php
│ ├── php-timer
│ │ ├── .gitattributes
│ │ ├── .gitignore
│ │ ├── .travis.yml
│ │ ├── LICENSE
│ │ ├── README.md
│ │ ├── composer.json
│ │ ├── phpunit.xml
│ │ ├── src
│ │ │ └── Timer.php
│ │ └── tests
│ │ │ └── TimerTest.php
│ ├── php-token-stream
│ │ ├── .gitattributes
│ │ ├── .gitignore
│ │ ├── .travis.yml
│ │ ├── LICENSE
│ │ ├── README.md
│ │ ├── build.xml
│ │ ├── build
│ │ │ └── phpunit.xml
│ │ ├── composer.json
│ │ ├── src
│ │ │ ├── Token.php
│ │ │ └── Token
│ │ │ │ ├── Stream.php
│ │ │ │ └── Stream
│ │ │ │ └── CachingFactory.php
│ │ └── tests
│ │ │ ├── Token
│ │ │ ├── ClassTest.php
│ │ │ ├── ClosureTest.php
│ │ │ ├── FunctionTest.php
│ │ │ ├── IncludeTest.php
│ │ │ ├── InterfaceTest.php
│ │ │ └── NamespaceTest.php
│ │ │ ├── TokenTest.php
│ │ │ ├── _fixture
│ │ │ ├── classExtendsNamespacedClass.php
│ │ │ ├── classInNamespace.php
│ │ │ ├── classInScopedNamespace.php
│ │ │ ├── classUsesNamespacedFunction.php
│ │ │ ├── class_with_method_that_declares_anonymous_class.php
│ │ │ ├── class_with_method_that_declares_anonymous_class2.php
│ │ │ ├── closure.php
│ │ │ ├── issue19.php
│ │ │ ├── issue30.php
│ │ │ ├── multipleNamespacesWithOneClassUsingBraces.php
│ │ │ ├── multipleNamespacesWithOneClassUsingNonBraceSyntax.php
│ │ │ ├── source.php
│ │ │ ├── source2.php
│ │ │ ├── source3.php
│ │ │ ├── source4.php
│ │ │ └── source5.php
│ │ │ └── bootstrap.php
│ ├── phpunit-mock-objects
│ │ ├── .gitattributes
│ │ ├── .gitignore
│ │ ├── .php_cs
│ │ ├── .travis.yml
│ │ ├── CONTRIBUTING.md
│ │ ├── LICENSE
│ │ ├── README.md
│ │ ├── build.xml
│ │ ├── composer.json
│ │ ├── phpunit.xml
│ │ ├── src
│ │ │ └── Framework
│ │ │ │ └── MockObject
│ │ │ │ ├── Builder
│ │ │ │ ├── Identity.php
│ │ │ │ ├── InvocationMocker.php
│ │ │ │ ├── Match.php
│ │ │ │ ├── MethodNameMatch.php
│ │ │ │ ├── Namespace.php
│ │ │ │ ├── ParametersMatch.php
│ │ │ │ └── Stub.php
│ │ │ │ ├── Exception
│ │ │ │ ├── BadMethodCallException.php
│ │ │ │ ├── Exception.php
│ │ │ │ └── RuntimeException.php
│ │ │ │ ├── Generator.php
│ │ │ │ ├── Generator
│ │ │ │ ├── deprecation.tpl.dist
│ │ │ │ ├── mocked_class.tpl.dist
│ │ │ │ ├── mocked_class_method.tpl.dist
│ │ │ │ ├── mocked_clone.tpl.dist
│ │ │ │ ├── mocked_method.tpl.dist
│ │ │ │ ├── mocked_method_void.tpl.dist
│ │ │ │ ├── mocked_static_method.tpl.dist
│ │ │ │ ├── proxied_method.tpl.dist
│ │ │ │ ├── proxied_method_void.tpl.dist
│ │ │ │ ├── trait_class.tpl.dist
│ │ │ │ ├── unmocked_clone.tpl.dist
│ │ │ │ ├── wsdl_class.tpl.dist
│ │ │ │ └── wsdl_method.tpl.dist
│ │ │ │ ├── Invocation.php
│ │ │ │ ├── Invocation
│ │ │ │ ├── Object.php
│ │ │ │ └── Static.php
│ │ │ │ ├── InvocationMocker.php
│ │ │ │ ├── Invokable.php
│ │ │ │ ├── Matcher.php
│ │ │ │ ├── Matcher
│ │ │ │ ├── AnyInvokedCount.php
│ │ │ │ ├── AnyParameters.php
│ │ │ │ ├── ConsecutiveParameters.php
│ │ │ │ ├── Invocation.php
│ │ │ │ ├── InvokedAtIndex.php
│ │ │ │ ├── InvokedAtLeastCount.php
│ │ │ │ ├── InvokedAtLeastOnce.php
│ │ │ │ ├── InvokedAtMostCount.php
│ │ │ │ ├── InvokedCount.php
│ │ │ │ ├── InvokedRecorder.php
│ │ │ │ ├── MethodName.php
│ │ │ │ ├── Parameters.php
│ │ │ │ └── StatelessInvocation.php
│ │ │ │ ├── MockBuilder.php
│ │ │ │ ├── MockObject.php
│ │ │ │ ├── Stub.php
│ │ │ │ ├── Stub
│ │ │ │ ├── ConsecutiveCalls.php
│ │ │ │ ├── Exception.php
│ │ │ │ ├── MatcherCollection.php
│ │ │ │ ├── Return.php
│ │ │ │ ├── ReturnArgument.php
│ │ │ │ ├── ReturnCallback.php
│ │ │ │ ├── ReturnReference.php
│ │ │ │ ├── ReturnSelf.php
│ │ │ │ └── ReturnValueMap.php
│ │ │ │ └── Verifiable.php
│ │ └── tests
│ │ │ ├── GeneratorTest.php
│ │ │ ├── MockBuilderTest.php
│ │ │ ├── MockObject
│ │ │ ├── Builder
│ │ │ │ └── InvocationMockerTest.php
│ │ │ ├── Generator
│ │ │ │ ├── 232.phpt
│ │ │ │ ├── abstract_class.phpt
│ │ │ │ ├── class.phpt
│ │ │ │ ├── class_call_parent_clone.phpt
│ │ │ │ ├── class_call_parent_constructor.phpt
│ │ │ │ ├── class_dont_call_parent_clone.phpt
│ │ │ │ ├── class_dont_call_parent_constructor.phpt
│ │ │ │ ├── class_implementing_interface_call_parent_constructor.phpt
│ │ │ │ ├── class_implementing_interface_dont_call_parent_constructor.phpt
│ │ │ │ ├── class_partial.phpt
│ │ │ │ ├── class_with_method_named_method.phpt
│ │ │ │ ├── class_with_method_with_variadic_arguments.phpt
│ │ │ │ ├── interface.phpt
│ │ │ │ ├── invocation_object_clone_object.phpt
│ │ │ │ ├── namespaced_class.phpt
│ │ │ │ ├── namespaced_class_call_parent_clone.phpt
│ │ │ │ ├── namespaced_class_call_parent_constructor.phpt
│ │ │ │ ├── namespaced_class_dont_call_parent_clone.phpt
│ │ │ │ ├── namespaced_class_dont_call_parent_constructor.phpt
│ │ │ │ ├── namespaced_class_implementing_interface_call_parent_constructor.phpt
│ │ │ │ ├── namespaced_class_implementing_interface_dont_call_parent_constructor.phpt
│ │ │ │ ├── namespaced_class_partial.phpt
│ │ │ │ ├── namespaced_interface.phpt
│ │ │ │ ├── nonexistent_class.phpt
│ │ │ │ ├── nonexistent_class_with_namespace.phpt
│ │ │ │ ├── nonexistent_class_with_namespace_starting_with_separator.phpt
│ │ │ │ ├── nullable_types.phpt
│ │ │ │ ├── proxy.phpt
│ │ │ │ ├── return_type_declarations_nullable.phpt
│ │ │ │ ├── return_type_declarations_object_method.phpt
│ │ │ │ ├── return_type_declarations_self.phpt
│ │ │ │ ├── return_type_declarations_static_method.phpt
│ │ │ │ ├── return_type_declarations_void.phpt
│ │ │ │ ├── scalar_type_declarations.phpt
│ │ │ │ ├── wsdl_class.phpt
│ │ │ │ ├── wsdl_class_namespace.phpt
│ │ │ │ └── wsdl_class_partial.phpt
│ │ │ ├── Invocation
│ │ │ │ ├── ObjectTest.php
│ │ │ │ └── StaticTest.php
│ │ │ ├── Matcher
│ │ │ │ └── ConsecutiveParametersTest.php
│ │ │ └── class_with_deprecated_method.phpt
│ │ │ ├── MockObjectTest.php
│ │ │ ├── ProxyObjectTest.php
│ │ │ ├── _fixture
│ │ │ ├── AbstractMockTestClass.php
│ │ │ ├── AbstractTrait.php
│ │ │ ├── AnInterface.php
│ │ │ ├── AnInterfaceWithReturnType.php
│ │ │ ├── AnotherInterface.php
│ │ │ ├── Bar.php
│ │ │ ├── ClassThatImplementsSerializable.php
│ │ │ ├── ClassWithSelfTypeHint.php
│ │ │ ├── ClassWithStaticMethod.php
│ │ │ ├── Foo.php
│ │ │ ├── FunctionCallback.php
│ │ │ ├── GoogleSearch.wsdl
│ │ │ ├── InterfaceWithSemiReservedMethodName.php
│ │ │ ├── InterfaceWithStaticMethod.php
│ │ │ ├── MethodCallback.php
│ │ │ ├── MethodCallbackByReference.php
│ │ │ ├── MockTestInterface.php
│ │ │ ├── Mockable.php
│ │ │ ├── PartialMockTestClass.php
│ │ │ ├── SingletonClass.php
│ │ │ ├── SomeClass.php
│ │ │ ├── StaticMockTestClass.php
│ │ │ ├── StringableClass.php
│ │ │ └── TraversableMockTestInterface.php
│ │ │ └── bootstrap.php
│ └── phpunit
│ │ ├── .gitattributes
│ │ ├── .github
│ │ ├── CODE_OF_CONDUCT.md
│ │ ├── CONTRIBUTING.md
│ │ └── ISSUE_TEMPLATE.md
│ │ ├── .gitignore
│ │ ├── .php_cs.dist
│ │ ├── .stickler.yml
│ │ ├── .travis.yml
│ │ ├── ChangeLog-5.7.md
│ │ ├── LICENSE
│ │ ├── README.md
│ │ ├── build.xml
│ │ ├── composer.json
│ │ ├── phpunit
│ │ ├── phpunit.xml
│ │ ├── phpunit.xsd
│ │ ├── src
│ │ ├── Exception.php
│ │ ├── Extensions
│ │ │ ├── GroupTestSuite.php
│ │ │ ├── PhptTestCase.php
│ │ │ ├── PhptTestSuite.php
│ │ │ ├── RepeatedTest.php
│ │ │ ├── TestDecorator.php
│ │ │ └── TicketListener.php
│ │ ├── ForwardCompatibility
│ │ │ ├── Assert.php
│ │ │ ├── AssertionFailedError.php
│ │ │ ├── BaseTestListener.php
│ │ │ ├── Test.php
│ │ │ ├── TestCase.php
│ │ │ ├── TestListener.php
│ │ │ └── TestSuite.php
│ │ ├── Framework
│ │ │ ├── Assert.php
│ │ │ ├── Assert
│ │ │ │ └── Functions.php
│ │ │ ├── AssertionFailedError.php
│ │ │ ├── BaseTestListener.php
│ │ │ ├── CodeCoverageException.php
│ │ │ ├── Constraint.php
│ │ │ ├── Constraint
│ │ │ │ ├── And.php
│ │ │ │ ├── ArrayHasKey.php
│ │ │ │ ├── ArraySubset.php
│ │ │ │ ├── Attribute.php
│ │ │ │ ├── Callback.php
│ │ │ │ ├── ClassHasAttribute.php
│ │ │ │ ├── ClassHasStaticAttribute.php
│ │ │ │ ├── Composite.php
│ │ │ │ ├── Count.php
│ │ │ │ ├── DirectoryExists.php
│ │ │ │ ├── Exception.php
│ │ │ │ ├── ExceptionCode.php
│ │ │ │ ├── ExceptionMessage.php
│ │ │ │ ├── ExceptionMessageRegExp.php
│ │ │ │ ├── FileExists.php
│ │ │ │ ├── GreaterThan.php
│ │ │ │ ├── IsAnything.php
│ │ │ │ ├── IsEmpty.php
│ │ │ │ ├── IsEqual.php
│ │ │ │ ├── IsFalse.php
│ │ │ │ ├── IsFinite.php
│ │ │ │ ├── IsIdentical.php
│ │ │ │ ├── IsInfinite.php
│ │ │ │ ├── IsInstanceOf.php
│ │ │ │ ├── IsJson.php
│ │ │ │ ├── IsNan.php
│ │ │ │ ├── IsNull.php
│ │ │ │ ├── IsReadable.php
│ │ │ │ ├── IsTrue.php
│ │ │ │ ├── IsType.php
│ │ │ │ ├── IsWritable.php
│ │ │ │ ├── JsonMatches.php
│ │ │ │ ├── JsonMatches
│ │ │ │ │ └── ErrorMessageProvider.php
│ │ │ │ ├── LessThan.php
│ │ │ │ ├── Not.php
│ │ │ │ ├── ObjectHasAttribute.php
│ │ │ │ ├── Or.php
│ │ │ │ ├── PCREMatch.php
│ │ │ │ ├── SameSize.php
│ │ │ │ ├── StringContains.php
│ │ │ │ ├── StringEndsWith.php
│ │ │ │ ├── StringMatches.php
│ │ │ │ ├── StringStartsWith.php
│ │ │ │ ├── TraversableContains.php
│ │ │ │ ├── TraversableContainsOnly.php
│ │ │ │ └── Xor.php
│ │ │ ├── CoveredCodeNotExecutedException.php
│ │ │ ├── Error.php
│ │ │ ├── Error
│ │ │ │ ├── Deprecated.php
│ │ │ │ ├── Notice.php
│ │ │ │ └── Warning.php
│ │ │ ├── Exception.php
│ │ │ ├── ExceptionWrapper.php
│ │ │ ├── ExpectationFailedException.php
│ │ │ ├── IncompleteTest.php
│ │ │ ├── IncompleteTestCase.php
│ │ │ ├── IncompleteTestError.php
│ │ │ ├── InvalidCoversTargetException.php
│ │ │ ├── MissingCoversAnnotationException.php
│ │ │ ├── OutputError.php
│ │ │ ├── RiskyTest.php
│ │ │ ├── RiskyTestError.php
│ │ │ ├── SelfDescribing.php
│ │ │ ├── SkippedTest.php
│ │ │ ├── SkippedTestCase.php
│ │ │ ├── SkippedTestError.php
│ │ │ ├── SkippedTestSuiteError.php
│ │ │ ├── SyntheticError.php
│ │ │ ├── Test.php
│ │ │ ├── TestCase.php
│ │ │ ├── TestFailure.php
│ │ │ ├── TestListener.php
│ │ │ ├── TestResult.php
│ │ │ ├── TestSuite.php
│ │ │ ├── TestSuite
│ │ │ │ └── DataProvider.php
│ │ │ ├── UnintentionallyCoveredCodeError.php
│ │ │ ├── Warning.php
│ │ │ └── WarningTestCase.php
│ │ ├── Runner
│ │ │ ├── BaseTestRunner.php
│ │ │ ├── Exception.php
│ │ │ ├── Filter
│ │ │ │ ├── Factory.php
│ │ │ │ ├── Group.php
│ │ │ │ ├── Group
│ │ │ │ │ ├── Exclude.php
│ │ │ │ │ └── Include.php
│ │ │ │ └── Test.php
│ │ │ ├── StandardTestSuiteLoader.php
│ │ │ ├── TestSuiteLoader.php
│ │ │ └── Version.php
│ │ ├── TextUI
│ │ │ ├── Command.php
│ │ │ ├── ResultPrinter.php
│ │ │ └── TestRunner.php
│ │ └── Util
│ │ │ ├── Blacklist.php
│ │ │ ├── Configuration.php
│ │ │ ├── ConfigurationGenerator.php
│ │ │ ├── ErrorHandler.php
│ │ │ ├── Fileloader.php
│ │ │ ├── Filesystem.php
│ │ │ ├── Filter.php
│ │ │ ├── Getopt.php
│ │ │ ├── GlobalState.php
│ │ │ ├── InvalidArgumentHelper.php
│ │ │ ├── Log
│ │ │ ├── JSON.php
│ │ │ ├── JUnit.php
│ │ │ ├── TAP.php
│ │ │ └── TeamCity.php
│ │ │ ├── PHP.php
│ │ │ ├── PHP
│ │ │ ├── Default.php
│ │ │ ├── Template
│ │ │ │ └── TestCaseMethod.tpl.dist
│ │ │ ├── Windows.php
│ │ │ └── eval-stdin.php
│ │ │ ├── Printer.php
│ │ │ ├── Regex.php
│ │ │ ├── String.php
│ │ │ ├── Test.php
│ │ │ ├── TestDox
│ │ │ ├── NamePrettifier.php
│ │ │ ├── ResultPrinter.php
│ │ │ └── ResultPrinter
│ │ │ │ ├── HTML.php
│ │ │ │ ├── Text.php
│ │ │ │ └── XML.php
│ │ │ ├── TestSuiteIterator.php
│ │ │ ├── Type.php
│ │ │ └── XML.php
│ │ └── tests
│ │ ├── Extensions
│ │ ├── PhptTestCaseTest.php
│ │ └── RepeatedTestTest.php
│ │ ├── Fail
│ │ └── fail.phpt
│ │ ├── Framework
│ │ ├── AssertTest.php
│ │ ├── BaseTestListenerTest.php
│ │ ├── Constraint
│ │ │ ├── ArraySubsetTest.php
│ │ │ ├── CountTest.php
│ │ │ ├── ExceptionMessageRegExpTest.php
│ │ │ ├── ExceptionMessageTest.php
│ │ │ ├── IsJsonTest.php
│ │ │ ├── JsonMatches
│ │ │ │ └── ErrorMessageProviderTest.php
│ │ │ └── JsonMatchesTest.php
│ │ ├── ConstraintTest.php
│ │ ├── SuiteTest.php
│ │ ├── TestCaseTest.php
│ │ ├── TestFailureTest.php
│ │ ├── TestImplementorTest.php
│ │ └── TestListenerTest.php
│ │ ├── Regression
│ │ ├── GitHub
│ │ │ ├── 74
│ │ │ │ ├── Issue74Test.php
│ │ │ │ └── NewException.php
│ │ │ ├── 244
│ │ │ │ └── Issue244Test.php
│ │ │ ├── 322
│ │ │ │ ├── Issue322Test.php
│ │ │ │ └── phpunit322.xml
│ │ │ ├── 433
│ │ │ │ └── Issue433Test.php
│ │ │ ├── 445
│ │ │ │ └── Issue445Test.php
│ │ │ ├── 498
│ │ │ │ └── Issue498Test.php
│ │ │ ├── 503
│ │ │ │ └── Issue503Test.php
│ │ │ ├── 581
│ │ │ │ └── Issue581Test.php
│ │ │ ├── 765
│ │ │ │ └── Issue765Test.php
│ │ │ ├── 797
│ │ │ │ ├── Issue797Test.php
│ │ │ │ └── bootstrap797.php
│ │ │ ├── 873
│ │ │ │ └── Issue873Test.php
│ │ │ ├── 1149
│ │ │ │ └── Issue1149Test.php
│ │ │ ├── 1216
│ │ │ │ ├── Issue1216Test.php
│ │ │ │ ├── bootstrap1216.php
│ │ │ │ └── phpunit1216.xml
│ │ │ ├── 1265
│ │ │ │ ├── Issue1265Test.php
│ │ │ │ └── phpunit1265.xml
│ │ │ ├── 1330
│ │ │ │ ├── Issue1330Test.php
│ │ │ │ └── phpunit1330.xml
│ │ │ ├── 1335
│ │ │ │ ├── Issue1335Test.php
│ │ │ │ └── bootstrap1335.php
│ │ │ ├── 1337
│ │ │ │ └── Issue1337Test.php
│ │ │ ├── 1348
│ │ │ │ └── Issue1348Test.php
│ │ │ ├── 1351
│ │ │ │ ├── ChildProcessClass1351.php
│ │ │ │ └── Issue1351Test.php
│ │ │ ├── 1374
│ │ │ │ └── Issue1374Test.php
│ │ │ ├── 1437
│ │ │ │ └── Issue1437Test.php
│ │ │ ├── 1468
│ │ │ │ └── Issue1468Test.php
│ │ │ ├── 1471
│ │ │ │ └── Issue1471Test.php
│ │ │ ├── 1472
│ │ │ │ └── Issue1472Test.php
│ │ │ ├── 1570
│ │ │ │ └── Issue1570Test.php
│ │ │ ├── 2137
│ │ │ │ └── Issue2137Test.php
│ │ │ ├── 2145
│ │ │ │ └── Issue2145Test.php
│ │ │ ├── 2158
│ │ │ │ ├── Issue2158Test.php
│ │ │ │ └── constant.inc
│ │ │ ├── 2299
│ │ │ │ └── Issue2299Test.php
│ │ │ ├── 2366
│ │ │ │ └── Issue2366Test.php
│ │ │ ├── 2380
│ │ │ │ └── Issue2380Test.php
│ │ │ ├── 2382
│ │ │ │ └── Issue2382Test.php
│ │ │ ├── 2435
│ │ │ │ └── Issue2435Test.php
│ │ │ ├── 2731
│ │ │ │ └── Issue2731Test.php
│ │ │ ├── 2758
│ │ │ │ ├── Issue2758Test.php
│ │ │ │ ├── Issue2758TestListener.php
│ │ │ │ └── phpunit.xml
│ │ │ ├── 2811
│ │ │ │ └── Issue2811Test.php
│ │ │ ├── 2972
│ │ │ │ ├── issue-2972-test.phpt
│ │ │ │ └── unconventiallyNamedIssue2972Test.php
│ │ │ ├── 1149.phpt
│ │ │ ├── 1216.phpt
│ │ │ ├── 1265.phpt
│ │ │ ├── 1330.phpt
│ │ │ ├── 1335.phpt
│ │ │ ├── 1337.phpt
│ │ │ ├── 1348.phpt
│ │ │ ├── 1351.phpt
│ │ │ ├── 1374.phpt
│ │ │ ├── 1437.phpt
│ │ │ ├── 1468.phpt
│ │ │ ├── 1471.phpt
│ │ │ ├── 1472.phpt
│ │ │ ├── 1570.phpt
│ │ │ ├── 2137-filter.phpt
│ │ │ ├── 2137-no_filter.phpt
│ │ │ ├── 2145.phpt
│ │ │ ├── 2158.phpt
│ │ │ ├── 2366.phpt
│ │ │ ├── 2380.phpt
│ │ │ ├── 2382.phpt
│ │ │ ├── 2435.phpt
│ │ │ ├── 244.phpt
│ │ │ ├── 2731.phpt
│ │ │ ├── 2758.phpt
│ │ │ ├── 2811.phpt
│ │ │ ├── 2972.phpt
│ │ │ ├── 322.phpt
│ │ │ ├── 433.phpt
│ │ │ ├── 445.phpt
│ │ │ ├── 498.phpt
│ │ │ ├── 503.phpt
│ │ │ ├── 581.phpt
│ │ │ ├── 74.phpt
│ │ │ ├── 765.phpt
│ │ │ ├── 797.phpt
│ │ │ ├── 863.phpt
│ │ │ ├── 873-php5.phpt
│ │ │ └── 873-php7.phpt
│ │ └── Trac
│ │ │ ├── 523
│ │ │ └── Issue523Test.php
│ │ │ ├── 578
│ │ │ └── Issue578Test.php
│ │ │ ├── 684
│ │ │ └── Issue684Test.php
│ │ │ ├── 783
│ │ │ ├── ChildSuite.php
│ │ │ ├── OneTest.php
│ │ │ ├── ParentSuite.php
│ │ │ └── TwoTest.php
│ │ │ ├── 1021
│ │ │ └── Issue1021Test.php
│ │ │ ├── 1021.phpt
│ │ │ ├── 523.phpt
│ │ │ ├── 578.phpt
│ │ │ ├── 684.phpt
│ │ │ └── 783.phpt
│ │ ├── Runner
│ │ └── BaseTestRunnerTest.php
│ │ ├── TextUI
│ │ ├── _files
│ │ │ ├── expect_external.txt
│ │ │ ├── phpt-env.expected.txt
│ │ │ └── phpt_external.php
│ │ ├── abstract-test-class.phpt
│ │ ├── assertion.phpt
│ │ ├── code-coverage-ignore.phpt
│ │ ├── colors-always.phpt
│ │ ├── concrete-test-class.phpt
│ │ ├── custom-printer-debug.phpt
│ │ ├── custom-printer-verbose.phpt
│ │ ├── dataprovider-debug.phpt
│ │ ├── dataprovider-issue-2833.phpt
│ │ ├── dataprovider-issue-2859.phpt
│ │ ├── dataprovider-issue-2922.phpt
│ │ ├── dataprovider-log-xml-isolation.phpt
│ │ ├── dataprovider-log-xml.phpt
│ │ ├── dataprovider-testdox.phpt
│ │ ├── debug.phpt
│ │ ├── default-isolation.phpt
│ │ ├── default.phpt
│ │ ├── dependencies-clone.phpt
│ │ ├── dependencies-isolation.phpt
│ │ ├── dependencies.phpt
│ │ ├── dependencies2-isolation.phpt
│ │ ├── dependencies2.phpt
│ │ ├── dependencies3-isolation.phpt
│ │ ├── dependencies3.phpt
│ │ ├── disable-code-coverage-ignore.phpt
│ │ ├── empty-testcase.phpt
│ │ ├── exception-stack.phpt
│ │ ├── exclude-group-isolation.phpt
│ │ ├── exclude-group.phpt
│ │ ├── failure-isolation.phpt
│ │ ├── failure-reverse-list.phpt
│ │ ├── failure.phpt
│ │ ├── fatal-isolation.phpt
│ │ ├── filter-class-isolation.phpt
│ │ ├── filter-class.phpt
│ │ ├── filter-dataprovider-by-classname-and-range-isolation.phpt
│ │ ├── filter-dataprovider-by-classname-and-range.phpt
│ │ ├── filter-dataprovider-by-number-isolation.phpt
│ │ ├── filter-dataprovider-by-number.phpt
│ │ ├── filter-dataprovider-by-only-range-isolation.phpt
│ │ ├── filter-dataprovider-by-only-range.phpt
│ │ ├── filter-dataprovider-by-only-regexp-isolation.phpt
│ │ ├── filter-dataprovider-by-only-regexp.phpt
│ │ ├── filter-dataprovider-by-only-string-isolation.phpt
│ │ ├── filter-dataprovider-by-only-string.phpt
│ │ ├── filter-dataprovider-by-range-isolation.phpt
│ │ ├── filter-dataprovider-by-range.phpt
│ │ ├── filter-dataprovider-by-regexp-isolation.phpt
│ │ ├── filter-dataprovider-by-regexp.phpt
│ │ ├── filter-dataprovider-by-string-isolation.phpt
│ │ ├── filter-dataprovider-by-string.phpt
│ │ ├── filter-method-case-insensitive.phpt
│ │ ├── filter-method-case-sensitive-no-result.phpt
│ │ ├── filter-method-isolation.phpt
│ │ ├── filter-method.phpt
│ │ ├── filter-no-results.phpt
│ │ ├── forward-compatibility.phpt
│ │ ├── group-isolation.phpt
│ │ ├── group.phpt
│ │ ├── help.phpt
│ │ ├── help2.phpt
│ │ ├── ini-isolation.phpt
│ │ ├── list-groups.phpt
│ │ ├── list-suites.phpt
│ │ ├── log-json-post-66021.phpt
│ │ ├── log-junit.phpt
│ │ ├── log-tap.phpt
│ │ ├── log-teamcity.phpt
│ │ ├── mycommand.phpt
│ │ ├── options-after-arguments.phpt
│ │ ├── output-isolation.phpt
│ │ ├── phar-extension-suppressed.phpt
│ │ ├── phar-extension.phpt
│ │ ├── phpt-args.phpt
│ │ ├── phpt-env.phpt
│ │ ├── phpt-external.phpt
│ │ ├── phpt-stderr.phpt
│ │ ├── phpt-stdin.phpt
│ │ ├── phpt-xfail.phpt
│ │ ├── repeat.phpt
│ │ ├── report-useless-tests-incomplete.phpt
│ │ ├── report-useless-tests-isolation.phpt
│ │ ├── report-useless-tests.phpt
│ │ ├── stop-on-warning-via-cli.phpt
│ │ ├── stop-on-warning-via-config.phpt
│ │ ├── tap.phpt
│ │ ├── teamcity-inner-exceptions.phpt
│ │ ├── teamcity.phpt
│ │ ├── test-suffix-multiple.phpt
│ │ ├── test-suffix-single.phpt
│ │ ├── testdox-exclude-group.phpt
│ │ ├── testdox-group.phpt
│ │ ├── testdox-html.phpt
│ │ ├── testdox-text.phpt
│ │ ├── testdox-xml.phpt
│ │ └── testdox.phpt
│ │ ├── Util
│ │ ├── ConfigurationTest.php
│ │ ├── GetoptTest.php
│ │ ├── GlobalStateTest.php
│ │ ├── PHPTest.php
│ │ ├── RegexTest.php
│ │ ├── TestDox
│ │ │ └── NamePrettifierTest.php
│ │ ├── TestTest.php
│ │ └── XMLTest.php
│ │ ├── _files
│ │ ├── AbstractTest.php
│ │ ├── ArrayAccessible.php
│ │ ├── AssertionExample.php
│ │ ├── AssertionExampleTest.php
│ │ ├── Author.php
│ │ ├── BankAccount.php
│ │ ├── BankAccountTest.php
│ │ ├── BankAccountTest.test.php
│ │ ├── BankAccountTest2.php
│ │ ├── BaseTestListenerSample.php
│ │ ├── BeforeAndAfterTest.php
│ │ ├── BeforeClassAndAfterClassTest.php
│ │ ├── BeforeClassWithOnlyDataProviderTest.php
│ │ ├── Book.php
│ │ ├── Calculator.php
│ │ ├── ChangeCurrentWorkingDirectoryTest.php
│ │ ├── ClassWithNonPublicAttributes.php
│ │ ├── ClassWithScalarTypeDeclarations.php
│ │ ├── ClassWithToString.php
│ │ ├── ClonedDependencyTest.php
│ │ ├── ConcreteTest.my.php
│ │ ├── ConcreteTest.php
│ │ ├── CoverageClassExtendedTest.php
│ │ ├── CoverageClassTest.php
│ │ ├── CoverageFunctionParenthesesTest.php
│ │ ├── CoverageFunctionParenthesesWhitespaceTest.php
│ │ ├── CoverageFunctionTest.php
│ │ ├── CoverageMethodOneLineAnnotationTest.php
│ │ ├── CoverageMethodParenthesesTest.php
│ │ ├── CoverageMethodParenthesesWhitespaceTest.php
│ │ ├── CoverageMethodTest.php
│ │ ├── CoverageNamespacedFunctionTest.php
│ │ ├── CoverageNoneTest.php
│ │ ├── CoverageNotPrivateTest.php
│ │ ├── CoverageNotProtectedTest.php
│ │ ├── CoverageNotPublicTest.php
│ │ ├── CoverageNothingTest.php
│ │ ├── CoveragePrivateTest.php
│ │ ├── CoverageProtectedTest.php
│ │ ├── CoveragePublicTest.php
│ │ ├── CoverageTwoDefaultClassAnnotations.php
│ │ ├── CoveredClass.php
│ │ ├── CoveredFunction.php
│ │ ├── CustomPrinter.php
│ │ ├── DataProviderDebugTest.php
│ │ ├── DataProviderDependencyTest.php
│ │ ├── DataProviderFilterTest.php
│ │ ├── DataProviderIncompleteTest.php
│ │ ├── DataProviderIssue2833
│ │ │ ├── FirstTest.php
│ │ │ └── SecondTest.php
│ │ ├── DataProviderIssue2859
│ │ │ ├── phpunit.xml
│ │ │ └── tests
│ │ │ │ └── another
│ │ │ │ └── TestWithDataProviderTest.php
│ │ ├── DataProviderIssue2922
│ │ │ ├── FirstTest.php
│ │ │ └── SecondTest.php
│ │ ├── DataProviderSkippedTest.php
│ │ ├── DataProviderTest.php
│ │ ├── DataProviderTestDoxTest.php
│ │ ├── DependencyFailureTest.php
│ │ ├── DependencySuccessTest.php
│ │ ├── DependencyTestSuite.php
│ │ ├── DoubleTestCase.php
│ │ ├── DummyException.php
│ │ ├── EmptyTestCaseTest.php
│ │ ├── ExceptionInAssertPostConditionsTest.php
│ │ ├── ExceptionInAssertPreConditionsTest.php
│ │ ├── ExceptionInSetUpTest.php
│ │ ├── ExceptionInTearDownTest.php
│ │ ├── ExceptionInTest.php
│ │ ├── ExceptionNamespaceTest.php
│ │ ├── ExceptionStackTest.php
│ │ ├── ExceptionTest.php
│ │ ├── Failure.php
│ │ ├── FailureTest.php
│ │ ├── FatalTest.php
│ │ ├── IgnoreCodeCoverageClass.php
│ │ ├── IgnoreCodeCoverageClassTest.php
│ │ ├── IncompleteTest.php
│ │ ├── Inheritance
│ │ │ ├── InheritanceA.php
│ │ │ └── InheritanceB.php
│ │ ├── InheritedTestCase.php
│ │ ├── IniTest.php
│ │ ├── IsolationTest.php
│ │ ├── JsonData
│ │ │ ├── arrayObject.json
│ │ │ └── simpleObject.json
│ │ ├── MockRunner.php
│ │ ├── Mockable.php
│ │ ├── MultiDependencyTest.php
│ │ ├── MultipleDataProviderTest.php
│ │ ├── MyCommand.php
│ │ ├── NamespaceCoverageClassExtendedTest.php
│ │ ├── NamespaceCoverageClassTest.php
│ │ ├── NamespaceCoverageCoversClassPublicTest.php
│ │ ├── NamespaceCoverageCoversClassTest.php
│ │ ├── NamespaceCoverageMethodTest.php
│ │ ├── NamespaceCoverageNotPrivateTest.php
│ │ ├── NamespaceCoverageNotProtectedTest.php
│ │ ├── NamespaceCoverageNotPublicTest.php
│ │ ├── NamespaceCoveragePrivateTest.php
│ │ ├── NamespaceCoverageProtectedTest.php
│ │ ├── NamespaceCoveragePublicTest.php
│ │ ├── NamespaceCoveredClass.php
│ │ ├── NamespaceCoveredFunction.php
│ │ ├── NoArgTestCaseTest.php
│ │ ├── NoTestCaseClass.php
│ │ ├── NoTestCases.php
│ │ ├── NonStatic.php
│ │ ├── NotExistingCoveredElementTest.php
│ │ ├── NotPublicTestCase.php
│ │ ├── NotVoidTestCase.php
│ │ ├── NothingTest.php
│ │ ├── OneTestCase.php
│ │ ├── OutputTestCase.php
│ │ ├── OverrideTestCase.php
│ │ ├── RequirementsClassBeforeClassHookTest.php
│ │ ├── RequirementsClassDocBlockTest.php
│ │ ├── RequirementsTest.php
│ │ ├── SampleArrayAccess.php
│ │ ├── SampleClass.php
│ │ ├── Singleton.php
│ │ ├── StackTest.php
│ │ ├── StatusTest.php
│ │ ├── StopOnWarningTestSuite.php
│ │ ├── StopsOnWarningTest.php
│ │ ├── Struct.php
│ │ ├── Success.php
│ │ ├── TemplateMethodsTest.php
│ │ ├── TestAutoreferenced.php
│ │ ├── TestDoxGroupTest.php
│ │ ├── TestGeneratorMaker.php
│ │ ├── TestIncomplete.php
│ │ ├── TestIterator.php
│ │ ├── TestIterator2.php
│ │ ├── TestSkipped.php
│ │ ├── TestTestError.php
│ │ ├── TestWithTest.php
│ │ ├── ThrowExceptionTestCase.php
│ │ ├── ThrowNoExceptionTestCase.php
│ │ ├── WasRun.php
│ │ ├── bar.xml
│ │ ├── configuration.colors.empty.xml
│ │ ├── configuration.colors.false.xml
│ │ ├── configuration.colors.invalid.xml
│ │ ├── configuration.colors.true.xml
│ │ ├── configuration.custom-printer.xml
│ │ ├── configuration.suites.xml
│ │ ├── configuration.xml
│ │ ├── configuration_empty.xml
│ │ ├── configuration_stop_on_warning.xml
│ │ ├── configuration_xinclude.xml
│ │ ├── expectedFileFormat.txt
│ │ ├── foo.xml
│ │ ├── phpt-for-coverage.phpt
│ │ ├── phpt-xfail.phpt
│ │ ├── phpunit-example-extension
│ │ │ ├── phpunit.xml
│ │ │ ├── tests
│ │ │ │ └── OneTest.php
│ │ │ └── tools
│ │ │ │ └── phpunit.d
│ │ │ │ └── phpunit-example-extension-1.0.0.phar
│ │ ├── structureAttributesAreSameButValuesAreNot.xml
│ │ ├── structureExpected.xml
│ │ ├── structureIgnoreTextNodes.xml
│ │ ├── structureIsSameButDataIsNot.xml
│ │ ├── structureWrongNumberOfAttributes.xml
│ │ └── structureWrongNumberOfNodes.xml
│ │ └── bootstrap.php
│ ├── psr
│ └── log
│ │ ├── .gitignore
│ │ ├── LICENSE
│ │ ├── Psr
│ │ └── Log
│ │ │ ├── AbstractLogger.php
│ │ │ ├── InvalidArgumentException.php
│ │ │ ├── LogLevel.php
│ │ │ ├── LoggerAwareInterface.php
│ │ │ ├── LoggerAwareTrait.php
│ │ │ ├── LoggerInterface.php
│ │ │ ├── LoggerTrait.php
│ │ │ ├── NullLogger.php
│ │ │ └── Test
│ │ │ ├── LoggerInterfaceTest.php
│ │ │ └── TestLogger.php
│ │ ├── README.md
│ │ └── composer.json
│ ├── pusher
│ └── pusher-php-server
│ │ ├── CHANGELOG.md
│ │ ├── composer.json
│ │ ├── encryption.ini
│ │ └── src
│ │ ├── Pusher.php
│ │ ├── PusherCrypto.php
│ │ ├── PusherException.php
│ │ ├── PusherInstance.php
│ │ └── Webhook.php
│ ├── sebastian
│ ├── code-unit-reverse-lookup
│ │ ├── .gitignore
│ │ ├── .php_cs
│ │ ├── .travis.yml
│ │ ├── ChangeLog.md
│ │ ├── LICENSE
│ │ ├── README.md
│ │ ├── build.xml
│ │ ├── composer.json
│ │ ├── phpunit.xml
│ │ ├── src
│ │ │ └── Wizard.php
│ │ └── tests
│ │ │ └── WizardTest.php
│ ├── comparator
│ │ ├── .gitignore
│ │ ├── .travis.yml
│ │ ├── LICENSE
│ │ ├── README.md
│ │ ├── build.xml
│ │ ├── build
│ │ │ └── travis-ci.xml
│ │ ├── composer.json
│ │ ├── phpunit.xml.dist
│ │ ├── src
│ │ │ ├── ArrayComparator.php
│ │ │ ├── Comparator.php
│ │ │ ├── ComparisonFailure.php
│ │ │ ├── DOMNodeComparator.php
│ │ │ ├── DateTimeComparator.php
│ │ │ ├── DoubleComparator.php
│ │ │ ├── ExceptionComparator.php
│ │ │ ├── Factory.php
│ │ │ ├── MockObjectComparator.php
│ │ │ ├── NumericComparator.php
│ │ │ ├── ObjectComparator.php
│ │ │ ├── ResourceComparator.php
│ │ │ ├── ScalarComparator.php
│ │ │ ├── SplObjectStorageComparator.php
│ │ │ └── TypeComparator.php
│ │ └── tests
│ │ │ ├── ArrayComparatorTest.php
│ │ │ ├── DOMNodeComparatorTest.php
│ │ │ ├── DateTimeComparatorTest.php
│ │ │ ├── DoubleComparatorTest.php
│ │ │ ├── ExceptionComparatorTest.php
│ │ │ ├── FactoryTest.php
│ │ │ ├── MockObjectComparatorTest.php
│ │ │ ├── NumericComparatorTest.php
│ │ │ ├── ObjectComparatorTest.php
│ │ │ ├── ResourceComparatorTest.php
│ │ │ ├── ScalarComparatorTest.php
│ │ │ ├── SplObjectStorageComparatorTest.php
│ │ │ ├── TypeComparatorTest.php
│ │ │ ├── _files
│ │ │ ├── Author.php
│ │ │ ├── Book.php
│ │ │ ├── ClassWithToString.php
│ │ │ ├── SampleClass.php
│ │ │ ├── Struct.php
│ │ │ ├── TestClass.php
│ │ │ └── TestClassComparator.php
│ │ │ ├── autoload.php
│ │ │ └── bootstrap.php
│ ├── diff
│ │ ├── .gitignore
│ │ ├── .php_cs
│ │ ├── .travis.yml
│ │ ├── LICENSE
│ │ ├── README.md
│ │ ├── build.xml
│ │ ├── composer.json
│ │ ├── phpunit.xml
│ │ ├── src
│ │ │ ├── Chunk.php
│ │ │ ├── Diff.php
│ │ │ ├── Differ.php
│ │ │ ├── LCS
│ │ │ │ ├── LongestCommonSubsequence.php
│ │ │ │ ├── MemoryEfficientLongestCommonSubsequenceImplementation.php
│ │ │ │ └── TimeEfficientLongestCommonSubsequenceImplementation.php
│ │ │ ├── Line.php
│ │ │ └── Parser.php
│ │ └── tests
│ │ │ ├── ChunkTest.php
│ │ │ ├── DiffTest.php
│ │ │ ├── DifferTest.php
│ │ │ ├── LCS
│ │ │ ├── LongestCommonSubsequenceTest.php
│ │ │ ├── MemoryEfficientImplementationTest.php
│ │ │ └── TimeEfficientImplementationTest.php
│ │ │ ├── LineTest.php
│ │ │ ├── ParserTest.php
│ │ │ └── fixtures
│ │ │ ├── patch.txt
│ │ │ └── patch2.txt
│ ├── environment
│ │ ├── .gitignore
│ │ ├── .travis.yml
│ │ ├── LICENSE
│ │ ├── README.md
│ │ ├── build.xml
│ │ ├── composer.json
│ │ ├── phpunit.xml
│ │ ├── src
│ │ │ ├── Console.php
│ │ │ └── Runtime.php
│ │ └── tests
│ │ │ ├── ConsoleTest.php
│ │ │ └── RuntimeTest.php
│ ├── exporter
│ │ ├── .gitignore
│ │ ├── .travis.yml
│ │ ├── LICENSE
│ │ ├── README.md
│ │ ├── build.xml
│ │ ├── composer.json
│ │ ├── phpunit.xml.dist
│ │ ├── src
│ │ │ └── Exporter.php
│ │ └── tests
│ │ │ └── ExporterTest.php
│ ├── global-state
│ │ ├── .gitignore
│ │ ├── .travis.yml
│ │ ├── LICENSE
│ │ ├── README.md
│ │ ├── build.xml
│ │ ├── composer.json
│ │ ├── phpunit.xml.dist
│ │ ├── src
│ │ │ ├── Blacklist.php
│ │ │ ├── CodeExporter.php
│ │ │ ├── Exception.php
│ │ │ ├── Restorer.php
│ │ │ ├── RuntimeException.php
│ │ │ └── Snapshot.php
│ │ └── tests
│ │ │ ├── BlacklistTest.php
│ │ │ ├── SnapshotTest.php
│ │ │ └── _fixture
│ │ │ ├── BlacklistedChildClass.php
│ │ │ ├── BlacklistedClass.php
│ │ │ ├── BlacklistedImplementor.php
│ │ │ ├── BlacklistedInterface.php
│ │ │ ├── SnapshotClass.php
│ │ │ ├── SnapshotDomDocument.php
│ │ │ ├── SnapshotFunctions.php
│ │ │ └── SnapshotTrait.php
│ ├── object-enumerator
│ │ ├── .gitignore
│ │ ├── .php_cs
│ │ ├── .travis.yml
│ │ ├── ChangeLog.md
│ │ ├── LICENSE
│ │ ├── README.md
│ │ ├── build.xml
│ │ ├── composer.json
│ │ ├── phpunit.xml
│ │ ├── src
│ │ │ ├── Enumerator.php
│ │ │ ├── Exception.php
│ │ │ └── InvalidArgumentException.php
│ │ └── tests
│ │ │ ├── EnumeratorTest.php
│ │ │ └── Fixtures
│ │ │ └── ExceptionThrower.php
│ ├── recursion-context
│ │ ├── .gitignore
│ │ ├── .travis.yml
│ │ ├── LICENSE
│ │ ├── README.md
│ │ ├── build.xml
│ │ ├── composer.json
│ │ ├── phpunit.xml.dist
│ │ ├── src
│ │ │ ├── Context.php
│ │ │ ├── Exception.php
│ │ │ └── InvalidArgumentException.php
│ │ └── tests
│ │ │ └── ContextTest.php
│ ├── resource-operations
│ │ ├── .gitignore
│ │ ├── LICENSE
│ │ ├── README.md
│ │ ├── build.xml
│ │ ├── build
│ │ │ └── generate.php
│ │ ├── composer.json
│ │ └── src
│ │ │ └── ResourceOperations.php
│ └── version
│ │ ├── .gitattributes
│ │ ├── .gitignore
│ │ ├── .php_cs
│ │ ├── LICENSE
│ │ ├── README.md
│ │ ├── composer.json
│ │ └── src
│ │ └── Version.php
│ ├── symfony
│ ├── polyfill-ctype
│ │ ├── Ctype.php
│ │ ├── LICENSE
│ │ ├── README.md
│ │ ├── bootstrap.php
│ │ └── composer.json
│ └── yaml
│ │ ├── .gitignore
│ │ ├── CHANGELOG.md
│ │ ├── Command
│ │ └── LintCommand.php
│ │ ├── Dumper.php
│ │ ├── Escaper.php
│ │ ├── Exception
│ │ ├── DumpException.php
│ │ ├── ExceptionInterface.php
│ │ ├── ParseException.php
│ │ └── RuntimeException.php
│ │ ├── Inline.php
│ │ ├── LICENSE
│ │ ├── Parser.php
│ │ ├── README.md
│ │ ├── Tag
│ │ └── TaggedValue.php
│ │ ├── Tests
│ │ ├── Command
│ │ │ └── LintCommandTest.php
│ │ ├── DumperTest.php
│ │ ├── Fixtures
│ │ │ ├── YtsAnchorAlias.yml
│ │ │ ├── YtsBasicTests.yml
│ │ │ ├── YtsBlockMapping.yml
│ │ │ ├── YtsDocumentSeparator.yml
│ │ │ ├── YtsErrorTests.yml
│ │ │ ├── YtsFlowCollections.yml
│ │ │ ├── YtsFoldedScalars.yml
│ │ │ ├── YtsNullsAndEmpties.yml
│ │ │ ├── YtsSpecificationExamples.yml
│ │ │ ├── YtsTypeTransfers.yml
│ │ │ ├── arrow.gif
│ │ │ ├── booleanMappingKeys.yml
│ │ │ ├── embededPhp.yml
│ │ │ ├── escapedCharacters.yml
│ │ │ ├── index.yml
│ │ │ ├── legacyBooleanMappingKeys.yml
│ │ │ ├── legacyNonStringKeys.yml
│ │ │ ├── legacyNullMappingKey.yml
│ │ │ ├── multiple_lines_as_literal_block.yml
│ │ │ ├── multiple_lines_as_literal_block_leading_space_in_first_line.yml
│ │ │ ├── nonStringKeys.yml
│ │ │ ├── not_readable.yml
│ │ │ ├── nullMappingKey.yml
│ │ │ ├── numericMappingKeys.yml
│ │ │ ├── sfComments.yml
│ │ │ ├── sfCompact.yml
│ │ │ ├── sfMergeKey.yml
│ │ │ ├── sfObjects.yml
│ │ │ ├── sfQuotes.yml
│ │ │ ├── sfTests.yml
│ │ │ └── unindentedCollections.yml
│ │ ├── InlineTest.php
│ │ ├── ParseExceptionTest.php
│ │ ├── ParserTest.php
│ │ └── YamlTest.php
│ │ ├── Unescaper.php
│ │ ├── Yaml.php
│ │ ├── composer.json
│ │ └── phpunit.xml.dist
│ └── webmozart
│ └── assert
│ ├── CHANGELOG.md
│ ├── LICENSE
│ ├── README.md
│ ├── composer.json
│ └── src
│ └── Assert.php
├── composer.json
├── composer.lock
├── contributing.md
├── index.php
├── license.txt
├── pos_db.sql
├── readme.rst
└── system
├── .htaccess
├── core
├── Benchmark.php
├── CodeIgniter.php
├── Common.php
├── Config.php
├── Controller.php
├── Exceptions.php
├── Hooks.php
├── Input.php
├── Lang.php
├── Loader.php
├── Log.php
├── Model.php
├── Output.php
├── Router.php
├── Security.php
├── URI.php
├── Utf8.php
├── compat
│ ├── hash.php
│ ├── index.html
│ ├── mbstring.php
│ ├── password.php
│ └── standard.php
└── index.html
├── database
├── DB.php
├── DB_cache.php
├── DB_driver.php
├── DB_forge.php
├── DB_query_builder.php
├── DB_result.php
├── DB_utility.php
├── drivers
│ ├── cubrid
│ │ ├── cubrid_driver.php
│ │ ├── cubrid_forge.php
│ │ ├── cubrid_result.php
│ │ ├── cubrid_utility.php
│ │ └── index.html
│ ├── ibase
│ │ ├── ibase_driver.php
│ │ ├── ibase_forge.php
│ │ ├── ibase_result.php
│ │ ├── ibase_utility.php
│ │ └── index.html
│ ├── index.html
│ ├── mssql
│ │ ├── index.html
│ │ ├── mssql_driver.php
│ │ ├── mssql_forge.php
│ │ ├── mssql_result.php
│ │ └── mssql_utility.php
│ ├── mysql
│ │ ├── index.html
│ │ ├── mysql_driver.php
│ │ ├── mysql_forge.php
│ │ ├── mysql_result.php
│ │ └── mysql_utility.php
│ ├── mysqli
│ │ ├── index.html
│ │ ├── mysqli_driver.php
│ │ ├── mysqli_forge.php
│ │ ├── mysqli_result.php
│ │ └── mysqli_utility.php
│ ├── oci8
│ │ ├── index.html
│ │ ├── oci8_driver.php
│ │ ├── oci8_forge.php
│ │ ├── oci8_result.php
│ │ └── oci8_utility.php
│ ├── odbc
│ │ ├── index.html
│ │ ├── odbc_driver.php
│ │ ├── odbc_forge.php
│ │ ├── odbc_result.php
│ │ └── odbc_utility.php
│ ├── pdo
│ │ ├── index.html
│ │ ├── pdo_driver.php
│ │ ├── pdo_forge.php
│ │ ├── pdo_result.php
│ │ ├── pdo_utility.php
│ │ └── subdrivers
│ │ │ ├── index.html
│ │ │ ├── pdo_4d_driver.php
│ │ │ ├── pdo_4d_forge.php
│ │ │ ├── pdo_cubrid_driver.php
│ │ │ ├── pdo_cubrid_forge.php
│ │ │ ├── pdo_dblib_driver.php
│ │ │ ├── pdo_dblib_forge.php
│ │ │ ├── pdo_firebird_driver.php
│ │ │ ├── pdo_firebird_forge.php
│ │ │ ├── pdo_ibm_driver.php
│ │ │ ├── pdo_ibm_forge.php
│ │ │ ├── pdo_informix_driver.php
│ │ │ ├── pdo_informix_forge.php
│ │ │ ├── pdo_mysql_driver.php
│ │ │ ├── pdo_mysql_forge.php
│ │ │ ├── pdo_oci_driver.php
│ │ │ ├── pdo_oci_forge.php
│ │ │ ├── pdo_odbc_driver.php
│ │ │ ├── pdo_odbc_forge.php
│ │ │ ├── pdo_pgsql_driver.php
│ │ │ ├── pdo_pgsql_forge.php
│ │ │ ├── pdo_sqlite_driver.php
│ │ │ ├── pdo_sqlite_forge.php
│ │ │ ├── pdo_sqlsrv_driver.php
│ │ │ └── pdo_sqlsrv_forge.php
│ ├── postgre
│ │ ├── index.html
│ │ ├── postgre_driver.php
│ │ ├── postgre_forge.php
│ │ ├── postgre_result.php
│ │ └── postgre_utility.php
│ ├── sqlite
│ │ ├── index.html
│ │ ├── sqlite_driver.php
│ │ ├── sqlite_forge.php
│ │ ├── sqlite_result.php
│ │ └── sqlite_utility.php
│ ├── sqlite3
│ │ ├── index.html
│ │ ├── sqlite3_driver.php
│ │ ├── sqlite3_forge.php
│ │ ├── sqlite3_result.php
│ │ └── sqlite3_utility.php
│ └── sqlsrv
│ │ ├── index.html
│ │ ├── sqlsrv_driver.php
│ │ ├── sqlsrv_forge.php
│ │ ├── sqlsrv_result.php
│ │ └── sqlsrv_utility.php
└── index.html
├── fonts
├── index.html
└── texb.ttf
├── helpers
├── array_helper.php
├── captcha_helper.php
├── cookie_helper.php
├── date_helper.php
├── directory_helper.php
├── download_helper.php
├── email_helper.php
├── file_helper.php
├── form_helper.php
├── html_helper.php
├── index.html
├── inflector_helper.php
├── language_helper.php
├── number_helper.php
├── path_helper.php
├── security_helper.php
├── smiley_helper.php
├── string_helper.php
├── text_helper.php
├── typography_helper.php
├── url_helper.php
└── xml_helper.php
├── index.html
├── language
├── english
│ ├── calendar_lang.php
│ ├── date_lang.php
│ ├── db_lang.php
│ ├── email_lang.php
│ ├── form_validation_lang.php
│ ├── ftp_lang.php
│ ├── imglib_lang.php
│ ├── index.html
│ ├── migration_lang.php
│ ├── number_lang.php
│ ├── pagination_lang.php
│ ├── profiler_lang.php
│ ├── unit_test_lang.php
│ └── upload_lang.php
└── index.html
└── libraries
├── Cache
├── Cache.php
├── drivers
│ ├── Cache_apc.php
│ ├── Cache_dummy.php
│ ├── Cache_file.php
│ ├── Cache_memcached.php
│ ├── Cache_redis.php
│ ├── Cache_wincache.php
│ └── index.html
└── index.html
├── Calendar.php
├── Cart.php
├── Driver.php
├── Email.php
├── Encrypt.php
├── Encryption.php
├── Form_validation.php
├── Ftp.php
├── Image_lib.php
├── Javascript.php
├── Javascript
├── Jquery.php
└── index.html
├── Migration.php
├── Pagination.php
├── Parser.php
├── Profiler.php
├── Session
├── Session.php
├── SessionHandlerInterface.php
├── Session_driver.php
├── drivers
│ ├── Session_database_driver.php
│ ├── Session_files_driver.php
│ ├── Session_memcached_driver.php
│ ├── Session_redis_driver.php
│ └── index.html
└── index.html
├── Table.php
├── Trackback.php
├── Typography.php
├── Unit_test.php
├── Upload.php
├── User_agent.php
├── Xmlrpc.php
├── Xmlrpcs.php
├── Zip.php
└── index.html
/application/.htaccess:
--------------------------------------------------------------------------------
1 |
Directory access is forbidden.
9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /application/config/hooks.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |Directory access is forbidden.
9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /application/config/profiler.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |Directory access is forbidden.
9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /application/core/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |Directory access is forbidden.
9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /application/helpers/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |Directory access is forbidden.
9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /application/hooks/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |Directory access is forbidden.
9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /application/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |Directory access is forbidden.
9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /application/language/english/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |Directory access is forbidden.
9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /application/language/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |Directory access is forbidden.
9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /application/libraries/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |Directory access is forbidden.
9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /application/logs/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |Directory access is forbidden.
9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /application/models/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |Directory access is forbidden.
9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /application/third_party/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |Directory access is forbidden.
9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /application/views/errors/cli/error_404.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |Directory access is forbidden.
9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /application/views/errors/html/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |Directory access is forbidden.
9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /application/views/errors/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |Directory access is forbidden.
9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /application/views/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |Directory access is forbidden.
9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /application/views/vendor/autoload.php: -------------------------------------------------------------------------------- 1 | /dev/null; cd "../phpunit/phpunit" && pwd) 4 | 5 | if [ -d /proc/cygdrive ]; then 6 | case $(which php) in 7 | $(readlink -n /proc/cygdrive)/*) 8 | # We are in Cygwin using Windows php, so the path must be translated 9 | dir=$(cygpath -m "$dir"); 10 | ;; 11 | esac 12 | fi 13 | 14 | "${dir}/phpunit" "$@" 15 | -------------------------------------------------------------------------------- /application/views/vendor/bin/phpunit.bat: -------------------------------------------------------------------------------- 1 | @ECHO OFF 2 | setlocal DISABLEDELAYEDEXPANSION 3 | SET BIN_TARGET=%~dp0/../phpunit/phpunit/phpunit 4 | php "%BIN_TARGET%" %* 5 | -------------------------------------------------------------------------------- /application/views/vendor/composer/autoload_namespaces.php: -------------------------------------------------------------------------------- 1 | array($vendorDir . '/mikey179/vfsstream/src/main/php'), 10 | ); 11 | -------------------------------------------------------------------------------- /application/views/vendor/doctrine/instantiator/.gitignore: -------------------------------------------------------------------------------- 1 | phpunit.xml 2 | composer.lock 3 | build 4 | vendor 5 | coverage.clover 6 | -------------------------------------------------------------------------------- /application/views/vendor/mikey179/vfsstream/.gitignore: -------------------------------------------------------------------------------- 1 | /composer.lock 2 | /nbproject 3 | -------------------------------------------------------------------------------- /application/views/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 -------------------------------------------------------------------------------- /application/views/vendor/mikey179/vfsstream/composer.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "mikey179/vfsStream", 3 | "type": "library", 4 | "homepage": "http://vfs.bovigo.org/", 5 | "license": "BSD", 6 | "require": { 7 | "php": ">=5.3.0" 8 | }, 9 | "autoload": { 10 | "psr-0": { "org\\bovigo\\vfs": "src/main/php" } 11 | } 12 | } -------------------------------------------------------------------------------- /application/views/vendor/mikey179/vfsstream/examples/bootstrap.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/views/vendor/mikey179/vfsstream/phpdoc.dist.xml: -------------------------------------------------------------------------------- 1 | 2 |Directory access is forbidden.
9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /system/core/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |Directory access is forbidden.
9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /system/database/drivers/cubrid/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |Directory access is forbidden.
9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /system/database/drivers/ibase/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |Directory access is forbidden.
9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /system/database/drivers/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |Directory access is forbidden.
9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /system/database/drivers/mssql/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |Directory access is forbidden.
9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /system/database/drivers/mysql/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |Directory access is forbidden.
9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /system/database/drivers/mysqli/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |Directory access is forbidden.
9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /system/database/drivers/oci8/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |Directory access is forbidden.
9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /system/database/drivers/odbc/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |Directory access is forbidden.
9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /system/database/drivers/pdo/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |Directory access is forbidden.
9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /system/database/drivers/pdo/subdrivers/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |Directory access is forbidden.
9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /system/database/drivers/postgre/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |Directory access is forbidden.
9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /system/database/drivers/sqlite/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |Directory access is forbidden.
9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /system/database/drivers/sqlite3/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |Directory access is forbidden.
9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /system/database/drivers/sqlsrv/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |Directory access is forbidden.
9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /system/database/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |Directory access is forbidden.
9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /system/fonts/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |Directory access is forbidden.
9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /system/fonts/texb.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfikricom/realtime-crud-codeigniter/559645e949e4396d85d61b91c66a69028aa4fe38/system/fonts/texb.ttf -------------------------------------------------------------------------------- /system/helpers/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |Directory access is forbidden.
9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /system/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |Directory access is forbidden.
9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /system/language/english/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |Directory access is forbidden.
9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /system/language/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |Directory access is forbidden.
9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /system/libraries/Cache/drivers/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |Directory access is forbidden.
9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /system/libraries/Cache/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |Directory access is forbidden.
9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /system/libraries/Javascript/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |Directory access is forbidden.
9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /system/libraries/Session/drivers/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |Directory access is forbidden.
9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /system/libraries/Session/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |Directory access is forbidden.
9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /system/libraries/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |Directory access is forbidden.
9 | 10 | 11 | 12 | --------------------------------------------------------------------------------