gitextract_djfl1zo2/ ├── .gitignore ├── LICENSE ├── README.md ├── composer.json ├── fatratcollect.php ├── includes/ │ ├── fatrat-apierror.php │ ├── fatrat-data-detail.php │ ├── fatrat-data.php │ ├── fatrat-debugging.php │ ├── fatrat-kit.php │ ├── fatrat-options-add-edit.php │ ├── fatrat-options.php │ ├── fatrat-spider.php │ └── fatrat-validation.php ├── public/ │ ├── css/ │ │ ├── bootstrap.css │ │ └── fatrat.css │ └── js/ │ ├── bootstrap.js │ └── fatrat.js ├── readme.txt ├── src/ │ ├── Controller/ │ │ └── TaskController.php │ ├── Helpers/ │ │ ├── helpers.php │ │ └── helpers2.php │ └── Service/ │ ├── AbsoluteUrl.php │ ├── DownloadImage.php │ └── GetTransCoding.php ├── vendor/ │ ├── autoload.php │ ├── cache/ │ │ ├── adapter-common/ │ │ │ ├── AbstractCachePool.php │ │ │ ├── CacheItem.php │ │ │ ├── Changelog.md │ │ │ ├── Exception/ │ │ │ │ ├── CacheException.php │ │ │ │ ├── CachePoolException.php │ │ │ │ └── InvalidArgumentException.php │ │ │ ├── HasExpirationTimestampInterface.php │ │ │ ├── JsonBinaryArmoring.php │ │ │ ├── LICENSE │ │ │ ├── PhpCacheItem.php │ │ │ ├── PhpCachePool.php │ │ │ ├── README.md │ │ │ ├── TagSupportWithArray.php │ │ │ └── composer.json │ │ └── filesystem-adapter/ │ │ ├── Changelog.md │ │ ├── FilesystemCachePool.php │ │ ├── LICENSE │ │ ├── README.md │ │ └── composer.json │ ├── clue/ │ │ └── socket-raw/ │ │ ├── .github/ │ │ │ ├── FUNDING.yml │ │ │ └── workflows/ │ │ │ └── ci.yml │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ └── src/ │ │ ├── Exception.php │ │ ├── Factory.php │ │ └── Socket.php │ ├── composer/ │ │ ├── ClassLoader.php │ │ ├── InstalledVersions.php │ │ ├── LICENSE │ │ ├── autoload_classmap.php │ │ ├── autoload_files.php │ │ ├── autoload_namespaces.php │ │ ├── autoload_psr4.php │ │ ├── autoload_real.php │ │ ├── autoload_static.php │ │ ├── installed.json │ │ └── installed.php │ ├── guzzlehttp/ │ │ ├── guzzle/ │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── UPGRADING.md │ │ │ ├── composer.json │ │ │ └── src/ │ │ │ ├── BodySummarizer.php │ │ │ ├── BodySummarizerInterface.php │ │ │ ├── Client.php │ │ │ ├── ClientInterface.php │ │ │ ├── ClientTrait.php │ │ │ ├── Cookie/ │ │ │ │ ├── CookieJar.php │ │ │ │ ├── CookieJarInterface.php │ │ │ │ ├── FileCookieJar.php │ │ │ │ ├── SessionCookieJar.php │ │ │ │ └── SetCookie.php │ │ │ ├── Exception/ │ │ │ │ ├── BadResponseException.php │ │ │ │ ├── ClientException.php │ │ │ │ ├── ConnectException.php │ │ │ │ ├── GuzzleException.php │ │ │ │ ├── InvalidArgumentException.php │ │ │ │ ├── RequestException.php │ │ │ │ ├── ServerException.php │ │ │ │ ├── TooManyRedirectsException.php │ │ │ │ └── TransferException.php │ │ │ ├── Handler/ │ │ │ │ ├── CurlFactory.php │ │ │ │ ├── CurlFactoryInterface.php │ │ │ │ ├── CurlHandler.php │ │ │ │ ├── CurlMultiHandler.php │ │ │ │ ├── EasyHandle.php │ │ │ │ ├── HeaderProcessor.php │ │ │ │ ├── MockHandler.php │ │ │ │ ├── Proxy.php │ │ │ │ └── StreamHandler.php │ │ │ ├── HandlerStack.php │ │ │ ├── MessageFormatter.php │ │ │ ├── MessageFormatterInterface.php │ │ │ ├── Middleware.php │ │ │ ├── Pool.php │ │ │ ├── PrepareBodyMiddleware.php │ │ │ ├── RedirectMiddleware.php │ │ │ ├── RequestOptions.php │ │ │ ├── RetryMiddleware.php │ │ │ ├── TransferStats.php │ │ │ ├── Utils.php │ │ │ ├── functions.php │ │ │ └── functions_include.php │ │ ├── promises/ │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── composer.json │ │ │ └── src/ │ │ │ ├── AggregateException.php │ │ │ ├── CancellationException.php │ │ │ ├── Coroutine.php │ │ │ ├── Create.php │ │ │ ├── Each.php │ │ │ ├── EachPromise.php │ │ │ ├── FulfilledPromise.php │ │ │ ├── Is.php │ │ │ ├── Promise.php │ │ │ ├── PromiseInterface.php │ │ │ ├── PromisorInterface.php │ │ │ ├── RejectedPromise.php │ │ │ ├── RejectionException.php │ │ │ ├── TaskQueue.php │ │ │ ├── TaskQueueInterface.php │ │ │ ├── Utils.php │ │ │ ├── functions.php │ │ │ └── functions_include.php │ │ └── psr7/ │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ ├── src/ │ │ │ ├── AppendStream.php │ │ │ ├── BufferStream.php │ │ │ ├── CachingStream.php │ │ │ ├── DroppingStream.php │ │ │ ├── Exception/ │ │ │ │ └── MalformedUriException.php │ │ │ ├── FnStream.php │ │ │ ├── Header.php │ │ │ ├── HttpFactory.php │ │ │ ├── InflateStream.php │ │ │ ├── LazyOpenStream.php │ │ │ ├── LimitStream.php │ │ │ ├── Message.php │ │ │ ├── MessageTrait.php │ │ │ ├── MimeType.php │ │ │ ├── MultipartStream.php │ │ │ ├── NoSeekStream.php │ │ │ ├── PumpStream.php │ │ │ ├── Query.php │ │ │ ├── Request.php │ │ │ ├── Response.php │ │ │ ├── Rfc7230.php │ │ │ ├── ServerRequest.php │ │ │ ├── Stream.php │ │ │ ├── StreamDecoratorTrait.php │ │ │ ├── StreamWrapper.php │ │ │ ├── UploadedFile.php │ │ │ ├── Uri.php │ │ │ ├── UriNormalizer.php │ │ │ ├── UriResolver.php │ │ │ └── Utils.php │ │ └── vendor-bin/ │ │ ├── php-cs-fixer/ │ │ │ └── composer.json │ │ ├── phpstan/ │ │ │ └── composer.json │ │ └── psalm/ │ │ └── composer.json │ ├── jaeger/ │ │ └── phpquery-single/ │ │ ├── README.md │ │ ├── composer.json │ │ └── phpQuery.php │ ├── league/ │ │ ├── flysystem/ │ │ │ ├── CODE_OF_CONDUCT.md │ │ │ ├── LICENSE │ │ │ ├── SECURITY.md │ │ │ ├── composer.json │ │ │ ├── deprecations.md │ │ │ └── src/ │ │ │ ├── Adapter/ │ │ │ │ ├── AbstractAdapter.php │ │ │ │ ├── AbstractFtpAdapter.php │ │ │ │ ├── CanOverwriteFiles.php │ │ │ │ ├── Ftp.php │ │ │ │ ├── Ftpd.php │ │ │ │ ├── Local.php │ │ │ │ ├── NullAdapter.php │ │ │ │ ├── Polyfill/ │ │ │ │ │ ├── NotSupportingVisibilityTrait.php │ │ │ │ │ ├── StreamedCopyTrait.php │ │ │ │ │ ├── StreamedReadingTrait.php │ │ │ │ │ ├── StreamedTrait.php │ │ │ │ │ └── StreamedWritingTrait.php │ │ │ │ └── SynologyFtp.php │ │ │ ├── AdapterInterface.php │ │ │ ├── Config.php │ │ │ ├── ConfigAwareTrait.php │ │ │ ├── ConnectionErrorException.php │ │ │ ├── ConnectionRuntimeException.php │ │ │ ├── CorruptedPathDetected.php │ │ │ ├── Directory.php │ │ │ ├── Exception.php │ │ │ ├── File.php │ │ │ ├── FileExistsException.php │ │ │ ├── FileNotFoundException.php │ │ │ ├── Filesystem.php │ │ │ ├── FilesystemException.php │ │ │ ├── FilesystemInterface.php │ │ │ ├── FilesystemNotFoundException.php │ │ │ ├── Handler.php │ │ │ ├── InvalidRootException.php │ │ │ ├── MountManager.php │ │ │ ├── NotSupportedException.php │ │ │ ├── Plugin/ │ │ │ │ ├── AbstractPlugin.php │ │ │ │ ├── EmptyDir.php │ │ │ │ ├── ForcedCopy.php │ │ │ │ ├── ForcedRename.php │ │ │ │ ├── GetWithMetadata.php │ │ │ │ ├── ListFiles.php │ │ │ │ ├── ListPaths.php │ │ │ │ ├── ListWith.php │ │ │ │ ├── PluggableTrait.php │ │ │ │ └── PluginNotFoundException.php │ │ │ ├── PluginInterface.php │ │ │ ├── ReadInterface.php │ │ │ ├── RootViolationException.php │ │ │ ├── SafeStorage.php │ │ │ ├── UnreadableFileException.php │ │ │ ├── Util/ │ │ │ │ ├── ContentListingFormatter.php │ │ │ │ ├── MimeType.php │ │ │ │ └── StreamHasher.php │ │ │ └── Util.php │ │ └── mime-type-detection/ │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── composer.json │ │ └── src/ │ │ ├── EmptyExtensionToMimeTypeMap.php │ │ ├── ExtensionMimeTypeDetector.php │ │ ├── ExtensionToMimeTypeMap.php │ │ ├── FinfoMimeTypeDetector.php │ │ ├── GeneratedExtensionToMimeTypeMap.php │ │ ├── MimeTypeDetector.php │ │ └── OverridingExtensionToMimeTypeMap.php │ ├── psr/ │ │ ├── cache/ │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE.txt │ │ │ ├── README.md │ │ │ ├── composer.json │ │ │ └── src/ │ │ │ ├── CacheException.php │ │ │ ├── CacheItemInterface.php │ │ │ ├── CacheItemPoolInterface.php │ │ │ └── InvalidArgumentException.php │ │ ├── http-client/ │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── composer.json │ │ │ └── src/ │ │ │ ├── ClientExceptionInterface.php │ │ │ ├── ClientInterface.php │ │ │ ├── NetworkExceptionInterface.php │ │ │ └── RequestExceptionInterface.php │ │ ├── http-message/ │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── composer.json │ │ │ └── src/ │ │ │ ├── MessageInterface.php │ │ │ ├── RequestInterface.php │ │ │ ├── ResponseInterface.php │ │ │ ├── ServerRequestInterface.php │ │ │ ├── StreamInterface.php │ │ │ ├── UploadedFileInterface.php │ │ │ └── UriInterface.php │ │ ├── log/ │ │ │ ├── LICENSE │ │ │ ├── Psr/ │ │ │ │ └── Log/ │ │ │ │ ├── AbstractLogger.php │ │ │ │ ├── InvalidArgumentException.php │ │ │ │ ├── LogLevel.php │ │ │ │ ├── LoggerAwareInterface.php │ │ │ │ ├── LoggerAwareTrait.php │ │ │ │ ├── LoggerInterface.php │ │ │ │ ├── LoggerTrait.php │ │ │ │ ├── NullLogger.php │ │ │ │ └── Test/ │ │ │ │ ├── DummyTest.php │ │ │ │ ├── LoggerInterfaceTest.php │ │ │ │ └── TestLogger.php │ │ │ ├── README.md │ │ │ └── composer.json │ │ └── simple-cache/ │ │ ├── .editorconfig │ │ ├── LICENSE.md │ │ ├── README.md │ │ ├── composer.json │ │ └── src/ │ │ ├── CacheException.php │ │ ├── CacheInterface.php │ │ └── InvalidArgumentException.php │ ├── ralouphie/ │ │ └── getallheaders/ │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ └── src/ │ │ └── getallheaders.php │ ├── symfony/ │ │ ├── polyfill-mbstring/ │ │ │ ├── LICENSE │ │ │ ├── Mbstring.php │ │ │ ├── README.md │ │ │ ├── Resources/ │ │ │ │ └── unidata/ │ │ │ │ ├── lowerCase.php │ │ │ │ ├── titleCaseRegexp.php │ │ │ │ └── upperCase.php │ │ │ ├── bootstrap.php │ │ │ ├── bootstrap80.php │ │ │ └── composer.json │ │ ├── polyfill-php80/ │ │ │ ├── LICENSE │ │ │ ├── Php80.php │ │ │ ├── PhpToken.php │ │ │ ├── README.md │ │ │ ├── Resources/ │ │ │ │ └── stubs/ │ │ │ │ ├── Attribute.php │ │ │ │ ├── PhpToken.php │ │ │ │ ├── Stringable.php │ │ │ │ ├── UnhandledMatchError.php │ │ │ │ └── ValueError.php │ │ │ ├── bootstrap.php │ │ │ └── composer.json │ │ ├── process/ │ │ │ ├── CHANGELOG.md │ │ │ ├── Exception/ │ │ │ │ ├── ExceptionInterface.php │ │ │ │ ├── InvalidArgumentException.php │ │ │ │ ├── LogicException.php │ │ │ │ ├── ProcessFailedException.php │ │ │ │ ├── ProcessSignaledException.php │ │ │ │ ├── ProcessTimedOutException.php │ │ │ │ └── RuntimeException.php │ │ │ ├── ExecutableFinder.php │ │ │ ├── InputStream.php │ │ │ ├── LICENSE │ │ │ ├── PhpExecutableFinder.php │ │ │ ├── PhpProcess.php │ │ │ ├── Pipes/ │ │ │ │ ├── AbstractPipes.php │ │ │ │ ├── PipesInterface.php │ │ │ │ ├── UnixPipes.php │ │ │ │ └── WindowsPipes.php │ │ │ ├── Process.php │ │ │ ├── ProcessUtils.php │ │ │ ├── README.md │ │ │ └── composer.json │ │ └── var-dumper/ │ │ ├── CHANGELOG.md │ │ ├── Caster/ │ │ │ ├── AmqpCaster.php │ │ │ ├── ArgsStub.php │ │ │ ├── Caster.php │ │ │ ├── ClassStub.php │ │ │ ├── ConstStub.php │ │ │ ├── CutArrayStub.php │ │ │ ├── CutStub.php │ │ │ ├── DOMCaster.php │ │ │ ├── DateCaster.php │ │ │ ├── DoctrineCaster.php │ │ │ ├── DsCaster.php │ │ │ ├── DsPairStub.php │ │ │ ├── EnumStub.php │ │ │ ├── ExceptionCaster.php │ │ │ ├── FiberCaster.php │ │ │ ├── FrameStub.php │ │ │ ├── GmpCaster.php │ │ │ ├── ImagineCaster.php │ │ │ ├── ImgStub.php │ │ │ ├── IntlCaster.php │ │ │ ├── LinkStub.php │ │ │ ├── MemcachedCaster.php │ │ │ ├── MysqliCaster.php │ │ │ ├── PdoCaster.php │ │ │ ├── PgSqlCaster.php │ │ │ ├── ProxyManagerCaster.php │ │ │ ├── RdKafkaCaster.php │ │ │ ├── RedisCaster.php │ │ │ ├── ReflectionCaster.php │ │ │ ├── ResourceCaster.php │ │ │ ├── SplCaster.php │ │ │ ├── StubCaster.php │ │ │ ├── SymfonyCaster.php │ │ │ ├── TraceStub.php │ │ │ ├── UuidCaster.php │ │ │ ├── XmlReaderCaster.php │ │ │ └── XmlResourceCaster.php │ │ ├── Cloner/ │ │ │ ├── AbstractCloner.php │ │ │ ├── ClonerInterface.php │ │ │ ├── Cursor.php │ │ │ ├── Data.php │ │ │ ├── DumperInterface.php │ │ │ ├── Stub.php │ │ │ └── VarCloner.php │ │ ├── Command/ │ │ │ ├── Descriptor/ │ │ │ │ ├── CliDescriptor.php │ │ │ │ ├── DumpDescriptorInterface.php │ │ │ │ └── HtmlDescriptor.php │ │ │ └── ServerDumpCommand.php │ │ ├── Dumper/ │ │ │ ├── AbstractDumper.php │ │ │ ├── CliDumper.php │ │ │ ├── ContextProvider/ │ │ │ │ ├── CliContextProvider.php │ │ │ │ ├── ContextProviderInterface.php │ │ │ │ ├── RequestContextProvider.php │ │ │ │ └── SourceContextProvider.php │ │ │ ├── ContextualizedDumper.php │ │ │ ├── DataDumperInterface.php │ │ │ ├── HtmlDumper.php │ │ │ └── ServerDumper.php │ │ ├── Exception/ │ │ │ └── ThrowingCasterException.php │ │ ├── LICENSE │ │ ├── README.md │ │ ├── Resources/ │ │ │ ├── bin/ │ │ │ │ └── var-dump-server │ │ │ ├── css/ │ │ │ │ └── htmlDescriptor.css │ │ │ ├── functions/ │ │ │ │ └── dump.php │ │ │ └── js/ │ │ │ └── htmlDescriptor.js │ │ ├── Server/ │ │ │ ├── Connection.php │ │ │ └── DumpServer.php │ │ ├── Test/ │ │ │ └── VarDumperTestTrait.php │ │ ├── VarDumper.php │ │ └── composer.json │ ├── tightenco/ │ │ └── collect/ │ │ ├── .github/ │ │ │ └── workflows/ │ │ │ └── run-tests.yml │ │ ├── branch-commit-push.sh │ │ ├── composer.json │ │ └── src/ │ │ └── Collect/ │ │ ├── Contracts/ │ │ │ └── Support/ │ │ │ ├── Arrayable.php │ │ │ ├── CanBeEscapedWhenCastToString.php │ │ │ ├── Htmlable.php │ │ │ └── Jsonable.php │ │ └── Support/ │ │ ├── Arr.php │ │ ├── Collection.php │ │ ├── Enumerable.php │ │ ├── HigherOrderCollectionProxy.php │ │ ├── HigherOrderWhenProxy.php │ │ ├── LazyCollection.php │ │ ├── Traits/ │ │ │ ├── EnumeratesValues.php │ │ │ ├── Macroable.php │ │ │ └── Tappable.php │ │ ├── alias.php │ │ └── helpers.php │ └── vierbergenlars/ │ └── php-semver/ │ ├── .travis.yml │ ├── README.md │ ├── bin/ │ │ ├── semver │ │ └── update-versions │ ├── composer.json │ ├── definitions │ ├── license.md │ ├── phpunit.xml.dist │ ├── src/ │ │ └── vierbergenlars/ │ │ ├── LibJs/ │ │ │ ├── JObject.php │ │ │ ├── JSArray.php │ │ │ ├── JString.php │ │ │ ├── RegExp.php │ │ │ └── Util.php │ │ └── SemVer/ │ │ ├── SemVerException.php │ │ ├── expression.php │ │ ├── internal.php │ │ └── version.php │ └── tests/ │ ├── RegressionTest.php │ ├── SemVerTest.php │ └── VersionTest.php └── views/ ├── csrf.php ├── frc-spider.php ├── release-type.php └── todo.html