├── vendor ├── php-feed-io │ └── feed-io │ │ ├── CODEOWNERS │ │ ├── docs │ │ └── requirements.txt │ │ ├── .gitignore │ │ ├── src │ │ └── FeedIo │ │ │ ├── FeedIoException.php │ │ │ ├── Adapter │ │ │ ├── NotFoundException.php │ │ │ ├── HttpRequestException.php │ │ │ ├── NullClient.php │ │ │ ├── ServerErrorException.php │ │ │ └── ClientInterface.php │ │ │ ├── Reader │ │ │ ├── ReadErrorException.php │ │ │ ├── NoAccurateParserException.php │ │ │ ├── FixerAbstract.php │ │ │ └── FixerSet.php │ │ │ ├── Parser │ │ │ ├── MissingFieldsException.php │ │ │ ├── UnsupportedFormatException.php │ │ │ └── UrlGenerator.php │ │ │ ├── Feed │ │ │ ├── ArrayableInterface.php │ │ │ └── StyleSheet.php │ │ │ ├── FormatterInterface.php │ │ │ ├── Filter │ │ │ ├── FilterInterface.php │ │ │ ├── Since.php │ │ │ └── Chain.php │ │ │ ├── Rule │ │ │ └── Atom │ │ │ │ └── Media.php │ │ │ ├── SpecificationInterface.php │ │ │ └── Standard │ │ │ └── Json.php │ │ ├── pre-commit.sh │ │ ├── .devcontainer │ │ └── php.ini │ │ ├── phpstan.neon.dist │ │ ├── Makefile │ │ ├── phpstan-baseline.neon │ │ ├── tests │ │ ├── FeedIo │ │ │ ├── Reader │ │ │ │ └── FixerMock.php │ │ │ ├── Filter │ │ │ │ └── SinceTest.php │ │ │ ├── StandardFormatter │ │ │ │ ├── AtomTest.php │ │ │ │ └── RssTest.php │ │ │ └── Feed │ │ │ │ └── ElementsAwareTraitTest.php │ │ ├── bootstrap.php │ │ ├── feeds.txt │ │ └── samples │ │ │ ├── rss │ │ │ └── truncated-rss.xml │ │ │ ├── discovery-dualprotocol.html │ │ │ ├── discovery.html │ │ │ └── discovery-https.html │ │ ├── examples │ │ ├── bootstrap.php │ │ ├── guzzle-client.php │ │ ├── media-reading.php │ │ ├── test-async.php │ │ └── modifiedSince.php │ │ ├── phpunit.xml.dist │ │ ├── rector.php │ │ ├── .github │ │ └── dependabot.yml │ │ └── mkdocs.yml ├── madcoda │ └── php-youtube-api │ │ ├── .styleci.yml │ │ ├── src │ │ ├── config │ │ │ └── youtube.php │ │ ├── Facades │ │ │ └── Youtube.php │ │ ├── compat.php │ │ └── Constants.php │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── phpunit.xml.dist │ │ └── composer.json ├── vimeo │ └── vimeo-api │ │ ├── .gitattributes │ │ ├── .gitignore │ │ ├── composer.phar │ │ ├── src │ │ └── Vimeo │ │ │ └── Exceptions │ │ │ ├── ExceptionInterface.php │ │ │ ├── VimeoException.php │ │ │ ├── VimeoRequestException.php │ │ │ └── VimeoUploadException.php │ │ ├── .styleci.yml │ │ ├── .travis.yml │ │ ├── psalm.xml │ │ └── phpunit.xml ├── psr │ ├── event-dispatcher │ │ ├── .gitignore │ │ ├── README.md │ │ ├── .editorconfig │ │ ├── src │ │ │ ├── EventDispatcherInterface.php │ │ │ └── ListenerProviderInterface.php │ │ └── composer.json │ ├── http-client │ │ ├── src │ │ │ ├── ClientExceptionInterface.php │ │ │ ├── ClientInterface.php │ │ │ ├── RequestExceptionInterface.php │ │ │ └── NetworkExceptionInterface.php │ │ ├── README.md │ │ ├── CHANGELOG.md │ │ └── composer.json │ └── http-factory │ │ ├── src │ │ ├── UriFactoryInterface.php │ │ ├── RequestFactoryInterface.php │ │ └── ResponseFactoryInterface.php │ │ └── README.md ├── redaxo │ └── php-cs-fixer-config │ │ ├── .gitignore │ │ ├── .php-cs-fixer.dist.php │ │ ├── README.md │ │ └── .github │ │ └── renovate.json ├── clue │ └── ndjson-react │ │ └── .github │ │ └── FUNDING.yml ├── fidry │ └── cpu-core-counter │ │ ├── .envrc │ │ └── src │ │ ├── Executor │ │ └── ProcessExecutor.php │ │ ├── NumberOfCpuCoreNotFound.php │ │ └── Finder │ │ └── NullCpuCoreFinder.php ├── friendsofphp │ └── php-cs-fixer │ │ ├── logo.png │ │ ├── logo.md │ │ └── src │ │ ├── Fixer │ │ ├── InternalFixerInterface.php │ │ ├── ExperimentalFixerInterface.php │ │ ├── WhitespacesAwareFixerInterface.php │ │ └── DeprecatedFixerInterface.php │ │ ├── Cache │ │ ├── DirectoryInterface.php │ │ └── FileHandlerInterface.php │ │ ├── ExecutorWithoutErrorHandlerException.php │ │ ├── FixerConfiguration │ │ ├── DeprecatedFixerOptionInterface.php │ │ └── InvalidOptionsForEnvException.php │ │ ├── Linter │ │ ├── LintingException.php │ │ ├── LintingResultInterface.php │ │ └── UnavailableLinterException.php │ │ ├── RuleSet │ │ ├── DeprecatedRuleSetDescriptionInterface.php │ │ ├── Sets │ │ │ ├── PHP54MigrationSet.php │ │ │ ├── PHP70MigrationSet.php │ │ │ ├── PHP71MigrationSet.php │ │ │ ├── PHP73MigrationSet.php │ │ │ ├── PHP74MigrationSet.php │ │ │ ├── PHP80MigrationSet.php │ │ │ ├── PHP81MigrationSet.php │ │ │ ├── PHP82MigrationSet.php │ │ │ ├── PHP83MigrationSet.php │ │ │ ├── PHP84MigrationSet.php │ │ │ ├── PHP85MigrationSet.php │ │ │ ├── PHP56MigrationRiskySet.php │ │ │ ├── PHP70MigrationRiskySet.php │ │ │ ├── PHP71MigrationRiskySet.php │ │ │ ├── PHP74MigrationRiskySet.php │ │ │ ├── PHP80MigrationRiskySet.php │ │ │ ├── PHP82MigrationRiskySet.php │ │ │ ├── PHPUnit100MigrationRiskySet.php │ │ │ ├── PHPUnit30MigrationRiskySet.php │ │ │ ├── PHPUnit32MigrationRiskySet.php │ │ │ ├── PHPUnit35MigrationRiskySet.php │ │ │ ├── PHPUnit43MigrationRiskySet.php │ │ │ ├── PHPUnit48MigrationRiskySet.php │ │ │ ├── PHPUnit50MigrationRiskySet.php │ │ │ ├── PHPUnit52MigrationRiskySet.php │ │ │ ├── PHPUnit54MigrationRiskySet.php │ │ │ ├── PHPUnit55MigrationRiskySet.php │ │ │ ├── PHPUnit56MigrationRiskySet.php │ │ │ ├── PHPUnit57MigrationRiskySet.php │ │ │ ├── PHPUnit60MigrationRiskySet.php │ │ │ ├── PHPUnit75MigrationRiskySet.php │ │ │ ├── PHPUnit84MigrationRiskySet.php │ │ │ ├── PHPUnit91MigrationRiskySet.php │ │ │ ├── PHP5x4MigrationSet.php │ │ │ ├── PHP8x3MigrationSet.php │ │ │ ├── PHP5x6MigrationRiskySet.php │ │ │ ├── PHP8x1MigrationRiskySet.php │ │ │ ├── PHP8x3MigrationRiskySet.php │ │ │ ├── PHP8x4MigrationRiskySet.php │ │ │ └── PHP8x5MigrationRiskySet.php │ │ └── DeprecatedRuleSetDefinitionInterface.php │ │ ├── PregException.php │ │ ├── Console │ │ ├── SelfUpdate │ │ │ └── GithubClientInterface.php │ │ └── Output │ │ │ └── Progress │ │ │ ├── ProgressOutputInterface.php │ │ │ └── NullOutput.php │ │ ├── FixerDefinition │ │ ├── VersionSpecificationInterface.php │ │ ├── VersionSpecificCodeSampleInterface.php │ │ ├── FileSpecificCodeSampleInterface.php │ │ └── CodeSampleInterface.php │ │ ├── PharCheckerInterface.php │ │ ├── ConfigurationException │ │ ├── RequiredFixerConfigurationException.php │ │ ├── InvalidForEnvFixerConfigurationException.php │ │ └── UnresolvableAutoRuleSetConfigurationException.php │ │ └── Differ │ │ ├── DifferInterface.php │ │ └── NullDiffer.php ├── guzzlehttp │ ├── guzzle │ │ ├── package-lock.json │ │ └── src │ │ │ ├── Exception │ │ │ ├── TooManyRedirectsException.php │ │ │ ├── TransferException.php │ │ │ ├── InvalidArgumentException.php │ │ │ ├── GuzzleException.php │ │ │ ├── ClientException.php │ │ │ └── ServerException.php │ │ │ ├── functions_include.php │ │ │ ├── BodySummarizerInterface.php │ │ │ ├── MessageFormatterInterface.php │ │ │ ├── BodySummarizer.php │ │ │ └── Handler │ │ │ └── CurlFactoryInterface.php │ ├── promises │ │ └── src │ │ │ ├── CancellationException.php │ │ │ ├── PromisorInterface.php │ │ │ ├── AggregateException.php │ │ │ └── TaskQueueInterface.php │ └── psr7 │ │ └── src │ │ ├── Exception │ │ └── MalformedUriException.php │ │ ├── NoSeekStream.php │ │ └── Rfc7230.php ├── react │ ├── dns │ │ └── src │ │ │ ├── BadServerException.php │ │ │ ├── Query │ │ │ ├── TimeoutException.php │ │ │ └── CancellationException.php │ │ │ └── RecordNotFoundException.php │ ├── promise │ │ └── src │ │ │ ├── functions_include.php │ │ │ └── Exception │ │ │ └── LengthException.php │ └── event-loop │ │ └── src │ │ └── TimerInterface.php ├── php-http │ ├── promise │ │ └── phpstan.neon.dist │ ├── discovery │ │ ├── src │ │ │ ├── Exception.php │ │ │ ├── Exception │ │ │ │ ├── PuliUnavailableException.php │ │ │ │ ├── ClassInstantiationFailedException.php │ │ │ │ ├── NotFoundException.php │ │ │ │ └── StrategyUnavailableException.php │ │ │ ├── NotFoundException.php │ │ │ └── Strategy │ │ │ │ ├── MockClientStrategy.php │ │ │ │ └── DiscoveryStrategy.php │ │ └── .php-cs-fixer.php │ └── httplug │ │ ├── puli.json │ │ ├── .php-cs-fixer.dist.php │ │ └── src │ │ ├── Exception │ │ ├── TransferException.php │ │ ├── RequestAwareTrait.php │ │ └── NetworkException.php │ │ ├── Exception.php │ │ ├── HttpClient.php │ │ └── HttpAsyncClient.php ├── symfony │ ├── service-contracts │ │ ├── CHANGELOG.md │ │ ├── README.md │ │ ├── Test │ │ │ └── ServiceLocatorTest.php │ │ ├── ServiceCollectionInterface.php │ │ └── Attribute │ │ │ └── Required.php │ ├── deprecation-contracts │ │ └── CHANGELOG.md │ ├── http-client-contracts │ │ ├── CHANGELOG.md │ │ ├── README.md │ │ ├── Exception │ │ │ ├── ExceptionInterface.php │ │ │ ├── ClientExceptionInterface.php │ │ │ ├── ServerExceptionInterface.php │ │ │ ├── TimeoutExceptionInterface.php │ │ │ ├── TransportExceptionInterface.php │ │ │ ├── DecodingExceptionInterface.php │ │ │ ├── RedirectionExceptionInterface.php │ │ │ └── HttpExceptionInterface.php │ │ └── ResponseStreamInterface.php │ ├── event-dispatcher-contracts │ │ ├── CHANGELOG.md │ │ └── README.md │ ├── polyfill-php83 │ │ └── Resources │ │ │ └── stubs │ │ │ ├── DateError.php │ │ │ ├── DateException.php │ │ │ ├── DateObjectError.php │ │ │ ├── DateRangeError.php │ │ │ ├── SQLite3Exception.php │ │ │ ├── DateInvalidTimeZoneException.php │ │ │ ├── DateMalformedStringException.php │ │ │ ├── DateInvalidOperationException.php │ │ │ ├── DateMalformedPeriodStringException.php │ │ │ ├── DateMalformedIntervalStringException.php │ │ │ └── Override.php │ ├── http-client │ │ ├── Exception │ │ │ ├── ChunkCacheItemNotFoundException.php │ │ │ ├── TimeoutException.php │ │ │ ├── TransportException.php │ │ │ ├── EventSourceException.php │ │ │ ├── InvalidArgumentException.php │ │ │ ├── ClientException.php │ │ │ ├── ServerException.php │ │ │ ├── JsonException.php │ │ │ └── RedirectionException.php │ │ ├── Chunk │ │ │ ├── FirstChunk.php │ │ │ ├── LastChunk.php │ │ │ └── InformationalChunk.php │ │ ├── README.md │ │ ├── Internal │ │ │ ├── ClientState.php │ │ │ ├── PushedResponse.php │ │ │ └── DnsCache.php │ │ └── Messenger │ │ │ └── PingWebhookMessage.php │ ├── process │ │ ├── README.md │ │ ├── Exception │ │ │ ├── ExceptionInterface.php │ │ │ ├── LogicException.php │ │ │ ├── RuntimeException.php │ │ │ ├── InvalidArgumentException.php │ │ │ └── RunProcessFailedException.php │ │ └── composer.json │ ├── filesystem │ │ ├── Exception │ │ │ ├── RuntimeException.php │ │ │ ├── InvalidArgumentException.php │ │ │ ├── ExceptionInterface.php │ │ │ └── IOExceptionInterface.php │ │ └── README.md │ ├── finder │ │ ├── Exception │ │ │ ├── DirectoryNotFoundException.php │ │ │ └── AccessDeniedException.php │ │ ├── README.md │ │ └── Iterator │ │ │ └── LazyIterator.php │ ├── options-resolver │ │ ├── Options.php │ │ ├── Exception │ │ │ ├── ExceptionInterface.php │ │ │ ├── InvalidArgumentException.php │ │ │ ├── OptionDefinitionException.php │ │ │ ├── MissingOptionsException.php │ │ │ ├── AccessException.php │ │ │ ├── InvalidOptionsException.php │ │ │ ├── UndefinedOptionsException.php │ │ │ └── NoConfigurationException.php │ │ └── README.md │ ├── polyfill-php84 │ │ ├── bootstrap82.php │ │ └── Resources │ │ │ └── stubs │ │ │ └── Deprecated.php │ ├── event-dispatcher │ │ └── README.md │ └── stopwatch │ │ ├── composer.json │ │ └── CHANGELOG.md ├── composer │ ├── autoload_namespaces.php │ ├── pcre │ │ ├── src │ │ │ └── UnexpectedNullMatchException.php │ │ └── extension.neon │ └── autoload_files.php ├── evenement │ └── evenement │ │ ├── .gitattributes │ │ ├── src │ │ ├── EventEmitter.php │ │ └── EventEmitterInterface.php │ │ └── composer.json ├── sebastian │ └── diff │ │ └── src │ │ ├── Exception │ │ ├── Exception.php │ │ └── InvalidArgumentException.php │ │ ├── LongestCommonSubsequenceCalculator.php │ │ └── Output │ │ └── DiffOutputBuilderInterface.php ├── kubawerlos │ └── php-cs-fixer-custom-fixers │ │ ├── bootstrap.php │ │ └── src │ │ └── Analyzer │ │ └── Analysis │ │ └── CaseAnalysis.php ├── ralouphie │ └── getallheaders │ │ └── composer.json └── autoload.php ├── .gitignore ├── lib ├── watson │ └── de_de.lang └── deprecated │ ├── rex_feeds_item.php │ ├── rex_feeds_helper.php │ ├── rex_feeds_stream.php │ ├── rex_cronjob_feeds.php │ ├── rex_feeds_stream_ics.php │ ├── rex_feeds_stream_rss.php │ ├── rex_effect_feeds.php │ ├── rex_feeds_media_helper.php │ ├── rex_feeds_stream_vimeo_pro.php │ ├── rex_feeds_stream_abstract.php │ ├── rex_feeds_stream_youtube_channel.php │ └── rex_feeds_stream_youtube_playlist.php ├── pages └── index.php ├── .github ├── dependabot.yml └── workflows │ └── publish-to-redaxo-org.yml └── package.yml /vendor/php-feed-io/feed-io/CODEOWNERS: -------------------------------------------------------------------------------- 1 | * @alexdebril 2 | -------------------------------------------------------------------------------- /vendor/php-feed-io/feed-io/docs/requirements.txt: -------------------------------------------------------------------------------- 1 | pygments -------------------------------------------------------------------------------- /vendor/madcoda/php-youtube-api/.styleci.yml: -------------------------------------------------------------------------------- 1 | preset: psr2 2 | -------------------------------------------------------------------------------- /vendor/vimeo/vimeo-api/.gitattributes: -------------------------------------------------------------------------------- 1 | /example export-ignore 2 | -------------------------------------------------------------------------------- /vendor/psr/event-dispatcher/.gitignore: -------------------------------------------------------------------------------- 1 | /vendor/ 2 | composer.lock 3 | -------------------------------------------------------------------------------- /vendor/vimeo/vimeo-api/.gitignore: -------------------------------------------------------------------------------- 1 | composer.lock 2 | reports/ 3 | vendor/ 4 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | .definition 3 | test/ 4 | bin/ 5 | *.zip~ 6 | .php-cs-fixer.cache 7 | 8 | -------------------------------------------------------------------------------- /vendor/redaxo/php-cs-fixer-config/.gitignore: -------------------------------------------------------------------------------- 1 | /vendor/ 2 | /.php-cs-fixer.cache 3 | /composer.lock 4 | -------------------------------------------------------------------------------- /vendor/clue/ndjson-react/.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: clue 2 | custom: https://clue.engineering/support 3 | -------------------------------------------------------------------------------- /vendor/vimeo/vimeo-api/composer.phar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfREDAXO/feeds/main/vendor/vimeo/vimeo-api/composer.phar -------------------------------------------------------------------------------- /vendor/fidry/cpu-core-counter/.envrc: -------------------------------------------------------------------------------- 1 | use nix --packages \ 2 | gnumake \ 3 | yamllint 4 | 5 | source_env_if_exists .envrc.local 6 | -------------------------------------------------------------------------------- /lib/watson/de_de.lang: -------------------------------------------------------------------------------- 1 | watson_open_feeds = Datensatz öffnen 2 | watson_feeds_documentation_description = Sucht innerhalb der Artikel in Feeds -------------------------------------------------------------------------------- /vendor/friendsofphp/php-cs-fixer/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfREDAXO/feeds/main/vendor/friendsofphp/php-cs-fixer/logo.png -------------------------------------------------------------------------------- /vendor/guzzlehttp/guzzle/package-lock.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "guzzle", 3 | "lockfileVersion": 3, 4 | "requires": true, 5 | "packages": {} 6 | } 7 | -------------------------------------------------------------------------------- /vendor/react/dns/src/BadServerException.php: -------------------------------------------------------------------------------- 1 | . 4 | -------------------------------------------------------------------------------- /vendor/react/dns/src/Query/TimeoutException.php: -------------------------------------------------------------------------------- 1 | null 10 | 11 | ); 12 | -------------------------------------------------------------------------------- /vendor/php-feed-io/feed-io/.gitignore: -------------------------------------------------------------------------------- 1 | artifacts/ 2 | vendor/ 3 | .php_cs.cache 4 | .phpunit.result.cache 5 | .php-cs-fixer.cache 6 | phpunit.xml 7 | .vscode/ 8 | phpstan.neon 9 | # mkdocs 10 | site -------------------------------------------------------------------------------- /vendor/php-feed-io/feed-io/src/FeedIo/FeedIoException.php: -------------------------------------------------------------------------------- 1 | 9 | */ 10 | interface Exception extends \Throwable 11 | { 12 | } 13 | -------------------------------------------------------------------------------- /vendor/guzzlehttp/promises/src/CancellationException.php: -------------------------------------------------------------------------------- 1 | 9 | */ 10 | final class PuliUnavailableException extends StrategyUnavailableException 11 | { 12 | } 13 | -------------------------------------------------------------------------------- /vendor/php-feed-io/feed-io/Makefile: -------------------------------------------------------------------------------- 1 | all: clean coverage 2 | 3 | test: 4 | vendor/bin/phpunit 5 | 6 | test-live-feeds: 7 | vendor/bin/phpunit -c phpunit-feeds.xml 8 | 9 | coverage: 10 | vendor/bin/phpunit --coverage-html=artifacts/coverage 11 | 12 | view-coverage: 13 | open artifacts/coverage/index.html 14 | 15 | clean: 16 | rm -rf artifacts/* 17 | -------------------------------------------------------------------------------- /vendor/php-feed-io/feed-io/phpstan-baseline.neon: -------------------------------------------------------------------------------- 1 | parameters: 2 | ignoreErrors: 3 | - 4 | message: '#^PHPDoc tag @var with type FeedIo\\Reader\\FixerAbstract is not subtype of native type FeedIo\\Reader\\Fixer\\HttpLastModified\|FeedIo\\Reader\\Fixer\\PublicId\.$#' 5 | identifier: varTag.nativeType 6 | count: 1 7 | path: src/FeedIo/Specification.php 8 | -------------------------------------------------------------------------------- /vendor/php-http/httplug/puli.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "1.0", 3 | "name": "php-http/httplug", 4 | "binding-types": { 5 | "Http\\Client\\HttpAsyncClient": { 6 | "description": "Async HTTP Client" 7 | }, 8 | "Http\\Client\\HttpClient": { 9 | "description": "HTTP Client" 10 | } 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /vendor/redaxo/php-cs-fixer-config/.php-cs-fixer.dist.php: -------------------------------------------------------------------------------- 1 | in(__DIR__) 10 | ->append([ 11 | __FILE__, 12 | ]) 13 | ; 14 | 15 | return (new Config()) 16 | ->setFinder($finder) 17 | ; 18 | -------------------------------------------------------------------------------- /vendor/guzzlehttp/psr7/src/Exception/MalformedUriException.php: -------------------------------------------------------------------------------- 1 | getFeed(); 10 | $feed->setTitle('corrected'); 11 | 12 | return $this; 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /vendor/guzzlehttp/promises/src/PromisorInterface.php: -------------------------------------------------------------------------------- 1 | in(__DIR__.'/src') 5 | ->name('*.php') 6 | ; 7 | 8 | $config = (new PhpCsFixer\Config()) 9 | ->setRiskyAllowed(true) 10 | ->setRules([ 11 | '@Symfony' => true, 12 | ]) 13 | ->setFinder($finder) 14 | ; 15 | 16 | return $config; 17 | -------------------------------------------------------------------------------- /vendor/psr/event-dispatcher/README.md: -------------------------------------------------------------------------------- 1 | PSR Event Dispatcher 2 | ==================== 3 | 4 | This repository holds the interfaces related to [PSR-14](http://www.php-fig.org/psr/psr-14/). 5 | 6 | Note that this is not an Event Dispatcher implementation of its own. It is merely interfaces that describe the components of an Event Dispatcher. See the specification for more details. 7 | -------------------------------------------------------------------------------- /vendor/php-http/httplug/src/Exception/TransferException.php: -------------------------------------------------------------------------------- 1 | 11 | */ 12 | class TransferException extends \RuntimeException implements Exception 13 | { 14 | } 15 | -------------------------------------------------------------------------------- /vendor/php-http/httplug/src/Exception.php: -------------------------------------------------------------------------------- 1 | 11 | */ 12 | interface Exception extends PsrClientException 13 | { 14 | } 15 | -------------------------------------------------------------------------------- /pages/index.php: -------------------------------------------------------------------------------- 1 | 11 | */ 12 | final class ClassInstantiationFailedException extends \RuntimeException implements Exception 13 | { 14 | } 15 | -------------------------------------------------------------------------------- /vendor/symfony/http-client-contracts/README.md: -------------------------------------------------------------------------------- 1 | Symfony HttpClient Contracts 2 | ============================ 3 | 4 | A set of abstractions extracted out of the Symfony components. 5 | 6 | Can be used to build on semantics that the Symfony components proved useful and 7 | that already have battle tested implementations. 8 | 9 | See https://github.com/symfony/contracts/blob/main/README.md for more information. 10 | -------------------------------------------------------------------------------- /vendor/vimeo/vimeo-api/.styleci.yml: -------------------------------------------------------------------------------- 1 | preset: psr2 2 | 3 | enabled: 4 | - combine_consecutive_unsets 5 | - newline_after_open_tag 6 | - no_php4_constructor 7 | - no_useless_else 8 | - ordered_class_elements 9 | - ordered_use 10 | - strict 11 | - strict_param 12 | - php_unit_construct 13 | - php_unit_strict 14 | 15 | finder: 16 | exclude: 17 | - 'example' 18 | name: 19 | - '*.php' 20 | -------------------------------------------------------------------------------- /vendor/symfony/event-dispatcher-contracts/README.md: -------------------------------------------------------------------------------- 1 | Symfony EventDispatcher Contracts 2 | ================================= 3 | 4 | A set of abstractions extracted out of the Symfony components. 5 | 6 | Can be used to build on semantics that the Symfony components proved useful and 7 | that already have battle tested implementations. 8 | 9 | See https://github.com/symfony/contracts/blob/main/README.md for more information. 10 | -------------------------------------------------------------------------------- /vendor/php-feed-io/feed-io/examples/bootstrap.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 | $loader = require __DIR__."/../vendor/autoload.php"; 13 | 14 | date_default_timezone_set('UTC'); 15 | -------------------------------------------------------------------------------- /vendor/symfony/polyfill-php83/Resources/stubs/DateError.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 | if (\PHP_VERSION_ID < 80300) { 13 | class DateError extends Error 14 | { 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /vendor/php-feed-io/feed-io/src/FeedIo/Filter/FilterInterface.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 | if (\PHP_VERSION_ID < 80300) { 13 | class DateException extends Exception 14 | { 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /vendor/symfony/polyfill-php83/Resources/stubs/DateObjectError.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 | if (\PHP_VERSION_ID < 80300) { 13 | class DateObjectError extends DateError 14 | { 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /vendor/symfony/polyfill-php83/Resources/stubs/DateRangeError.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 | if (\PHP_VERSION_ID < 80300) { 13 | class DateRangeError extends DateError 14 | { 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /vendor/php-http/discovery/.php-cs-fixer.php: -------------------------------------------------------------------------------- 1 | in(__DIR__.'/src') 5 | ->name('*.php') 6 | ; 7 | 8 | $config = (new PhpCsFixer\Config()) 9 | ->setRiskyAllowed(true) 10 | ->setRules([ 11 | '@Symfony' => true, 12 | 'trailing_comma_in_multiline' => false, // for methods this is incompatible with PHP 7 13 | ]) 14 | ->setFinder($finder) 15 | ; 16 | 17 | return $config; 18 | -------------------------------------------------------------------------------- /vendor/symfony/polyfill-php83/Resources/stubs/SQLite3Exception.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 | if (\PHP_VERSION_ID < 80300) { 13 | class SQLite3Exception extends Exception 14 | { 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /vendor/sebastian/diff/src/Exception/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 | namespace SebastianBergmann\Diff; 11 | 12 | use Throwable; 13 | 14 | interface Exception extends Throwable 15 | { 16 | } 17 | -------------------------------------------------------------------------------- /vendor/evenement/evenement/src/EventEmitter.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 Evenement; 13 | 14 | class EventEmitter implements EventEmitterInterface 15 | { 16 | use EventEmitterTrait; 17 | } 18 | -------------------------------------------------------------------------------- /vendor/php-http/discovery/src/Exception/NotFoundException.php: -------------------------------------------------------------------------------- 1 | 13 | */ 14 | /* final */ class NotFoundException extends \RuntimeException implements Exception 15 | { 16 | } 17 | -------------------------------------------------------------------------------- /vendor/php-feed-io/feed-io/tests/bootstrap.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 | $loader = require __DIR__."/../vendor/autoload.php"; 13 | $loader->addPsr4('FeedIo\\', __DIR__.'/FeedIo'); 14 | 15 | date_default_timezone_set('UTC'); 16 | -------------------------------------------------------------------------------- /vendor/symfony/polyfill-php83/Resources/stubs/DateInvalidTimeZoneException.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 | if (\PHP_VERSION_ID < 80300) { 13 | class DateInvalidTimeZoneException extends DateException 14 | { 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /vendor/symfony/polyfill-php83/Resources/stubs/DateMalformedStringException.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 | if (\PHP_VERSION_ID < 80300) { 13 | class DateMalformedStringException extends DateException 14 | { 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /vendor/php-http/discovery/src/Exception/StrategyUnavailableException.php: -------------------------------------------------------------------------------- 1 | 12 | */ 13 | class StrategyUnavailableException extends \RuntimeException implements Exception 14 | { 15 | } 16 | -------------------------------------------------------------------------------- /vendor/symfony/polyfill-php83/Resources/stubs/DateInvalidOperationException.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 | if (\PHP_VERSION_ID < 80300) { 13 | class DateInvalidOperationException extends DateException 14 | { 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /vendor/php-http/httplug/src/HttpClient.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\HttpClient\Exception; 13 | 14 | final class ChunkCacheItemNotFoundException extends TransportException 15 | { 16 | } 17 | -------------------------------------------------------------------------------- /vendor/symfony/polyfill-php83/Resources/stubs/DateMalformedPeriodStringException.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 | if (\PHP_VERSION_ID < 80300) { 13 | class DateMalformedPeriodStringException extends DateException 14 | { 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /vendor/sebastian/diff/src/Exception/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 | namespace SebastianBergmann\Diff; 11 | 12 | class InvalidArgumentException extends \InvalidArgumentException implements Exception 13 | { 14 | } 15 | -------------------------------------------------------------------------------- /vendor/symfony/polyfill-php83/Resources/stubs/DateMalformedIntervalStringException.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 | if (\PHP_VERSION_ID < 80300) { 13 | class DateMalformedIntervalStringException extends DateException 14 | { 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /vendor/php-feed-io/feed-io/src/FeedIo/Adapter/HttpRequestException.php: -------------------------------------------------------------------------------- 1 | duration; 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /vendor/vimeo/vimeo-api/.travis.yml: -------------------------------------------------------------------------------- 1 | language: php 2 | 3 | php: 4 | - '7.1' 5 | - '7.2' 6 | - '7.3' 7 | - '7.4' 8 | 9 | cache: 10 | directories: 11 | - ./vendor 12 | 13 | before_install: 14 | - echo "xdebug.mode = 'coverage'" > config.ini 15 | - phpenv config-add config.ini 16 | 17 | install: 18 | - travis_wait 30 php composer.phar install 19 | 20 | script: 21 | - vendor/bin/phpunit --coverage-clover build/logs/clover.xml 22 | 23 | after_success: 24 | - travis_retry vendor/bin/coveralls -v 25 | -------------------------------------------------------------------------------- /vendor/php-http/httplug/src/Exception/RequestAwareTrait.php: -------------------------------------------------------------------------------- 1 | request = $request; 17 | } 18 | 19 | public function getRequest(): RequestInterface 20 | { 21 | return $this->request; 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /vendor/madcoda/php-youtube-api/.travis.yml: -------------------------------------------------------------------------------- 1 | language: php 2 | 3 | php: 4 | - 7.0 5 | - 7.1 6 | - 7.2 7 | - 7.3 8 | - 7.4 9 | - nightly 10 | 11 | matrix: 12 | fast_finish: true 13 | allow_failures: 14 | - php: nightly 15 | 16 | env: 17 | global: 18 | - XDEBUG_MODE=coverage 19 | 20 | before_script: 21 | - composer update -v --no-interaction --prefer-source 22 | 23 | script: 24 | - vendor/bin/phpunit --coverage-clover=coverage.xml 25 | 26 | after_success: 27 | - bash <(curl -s https://codecov.io/bash) 28 | -------------------------------------------------------------------------------- /vendor/redaxo/php-cs-fixer-config/README.md: -------------------------------------------------------------------------------- 1 | # [PHP-CS-Fixer](https://github.com/PHP-CS-Fixer/PHP-CS-Fixer) config for [REDAXO](https://github.com/redaxo/redaxo) 2 | 3 | ### Installation 4 | 5 | ``` 6 | composer require --dev redaxo/php-cs-fixer-config 7 | ``` 8 | 9 | Example `.php-cs-fixer.dist.php`: 10 | 11 | ```php 12 | in(__DIR__) 16 | ; 17 | 18 | return (Redaxo\PhpCsFixerConfig\Config::redaxo5()) // or `::redaxo6()` 19 | ->setFinder($finder) 20 | ; 21 | 22 | ``` 23 | -------------------------------------------------------------------------------- /vendor/guzzlehttp/promises/src/AggregateException.php: -------------------------------------------------------------------------------- 1 | date = $date; 17 | } 18 | 19 | public function filter(ItemInterface $item): bool 20 | { 21 | return $item->getLastModified() >= $this->date; 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /vendor/php-http/discovery/src/NotFoundException.php: -------------------------------------------------------------------------------- 1 | 11 | * 12 | * @deprecated since since version 1.0, and will be removed in 2.0. Use {@link \Http\Discovery\Exception\NotFoundException} instead. 13 | */ 14 | final class NotFoundException extends RealNotFoundException 15 | { 16 | } 17 | -------------------------------------------------------------------------------- /vendor/redaxo/php-cs-fixer-config/.github/renovate.json: -------------------------------------------------------------------------------- 1 | { 2 | "$schema": "https://docs.renovatebot.com/renovate-schema.json", 3 | "extends": [ 4 | "config:best-practices", 5 | ":timezone(Europe/Berlin)", 6 | ":disableDependencyDashboard", 7 | ":semanticCommitsDisabled" 8 | ], 9 | "packageRules": [ 10 | { 11 | "matchManagers": ["github-actions"], 12 | "groupName": "actions", 13 | "schedule": ["on the first day of the month"] 14 | } 15 | ] 16 | } 17 | -------------------------------------------------------------------------------- /vendor/symfony/polyfill-php83/Resources/stubs/Override.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 | if (\PHP_VERSION_ID < 80300) { 13 | #[Attribute(Attribute::TARGET_METHOD)] 14 | final class Override 15 | { 16 | public function __construct() 17 | { 18 | } 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /vendor/symfony/process/README.md: -------------------------------------------------------------------------------- 1 | Process Component 2 | ================= 3 | 4 | The Process component executes commands in sub-processes. 5 | 6 | Resources 7 | --------- 8 | 9 | * [Documentation](https://symfony.com/doc/current/components/process.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/symfony/filesystem/Exception/RuntimeException.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\Filesystem\Exception; 13 | 14 | /** 15 | * @author Théo Fidry 16 | */ 17 | class RuntimeException extends \RuntimeException implements ExceptionInterface 18 | { 19 | } 20 | -------------------------------------------------------------------------------- /vendor/symfony/finder/Exception/DirectoryNotFoundException.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\Finder\Exception; 13 | 14 | /** 15 | * @author Andreas Erhard 16 | */ 17 | class DirectoryNotFoundException extends \InvalidArgumentException 18 | { 19 | } 20 | -------------------------------------------------------------------------------- /vendor/symfony/finder/Exception/AccessDeniedException.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\Finder\Exception; 13 | 14 | /** 15 | * @author Jean-François Simon 16 | */ 17 | class AccessDeniedException extends \UnexpectedValueException 18 | { 19 | } 20 | -------------------------------------------------------------------------------- /vendor/php-feed-io/feed-io/phpunit.xml.dist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | src/FeedIo/ 6 | 7 | 8 | 9 | 10 | tests/FeedIo/ 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /vendor/php-feed-io/feed-io/src/FeedIo/Reader/FixerAbstract.php: -------------------------------------------------------------------------------- 1 | logger = $logger; 18 | 19 | return $this; 20 | } 21 | 22 | abstract public function correct(Result $result): FixerAbstract; 23 | } 24 | -------------------------------------------------------------------------------- /vendor/psr/event-dispatcher/src/EventDispatcherInterface.php: -------------------------------------------------------------------------------- 1 | href; 20 | } 21 | 22 | public function getType(): string 23 | { 24 | return $this->type; 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /vendor/php-feed-io/feed-io/src/FeedIo/Reader/FixerSet.php: -------------------------------------------------------------------------------- 1 | fixers[] = $fixer; 14 | 15 | return $this; 16 | } 17 | 18 | public function correct(Result $result): FixerSet 19 | { 20 | foreach ($this->fixers as $fixer) { 21 | $fixer->correct($result); 22 | } 23 | 24 | return $this; 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /vendor/symfony/process/Exception/ExceptionInterface.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\Process\Exception; 13 | 14 | /** 15 | * Marker Interface for the Process Component. 16 | * 17 | * @author Johannes M. Schmitt 18 | */ 19 | interface ExceptionInterface extends \Throwable 20 | { 21 | } 22 | -------------------------------------------------------------------------------- /vendor/php-feed-io/feed-io/examples/guzzle-client.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 | require __DIR__.DIRECTORY_SEPARATOR.'bootstrap.php'; 13 | 14 | $client = new \FeedIo\Adapter\Guzzle\Client(new GuzzleHttp\Client()); 15 | 16 | $response = $client->getResponse('http://php.net/feed.atom', new \DateTime()); 17 | 18 | echo $response->getBody(); 19 | -------------------------------------------------------------------------------- /vendor/symfony/filesystem/Exception/InvalidArgumentException.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\Filesystem\Exception; 13 | 14 | /** 15 | * @author Christian Flothmann 16 | */ 17 | class InvalidArgumentException extends \InvalidArgumentException implements ExceptionInterface 18 | { 19 | } 20 | -------------------------------------------------------------------------------- /vendor/symfony/process/Exception/LogicException.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\Process\Exception; 13 | 14 | /** 15 | * LogicException for the Process Component. 16 | * 17 | * @author Romain Neutron 18 | */ 19 | class LogicException extends \LogicException implements ExceptionInterface 20 | { 21 | } 22 | -------------------------------------------------------------------------------- /vendor/guzzlehttp/promises/src/TaskQueueInterface.php: -------------------------------------------------------------------------------- 1 | withPaths([ 12 | __DIR__ . '/src', 13 | ]) 14 | ->withPhpVersion(PhpVersion::PHP_84) 15 | ->withRules([ 16 | ExplicitNullableParamTypeRector::class, 17 | OptionalParametersAfterRequiredRector::class, 18 | ]); 19 | -------------------------------------------------------------------------------- /vendor/symfony/filesystem/Exception/ExceptionInterface.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\Filesystem\Exception; 13 | 14 | /** 15 | * Exception interface for all exceptions thrown by the component. 16 | * 17 | * @author Romain Neutron 18 | */ 19 | interface ExceptionInterface extends \Throwable 20 | { 21 | } 22 | -------------------------------------------------------------------------------- /vendor/symfony/http-client-contracts/Exception/ExceptionInterface.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\Contracts\HttpClient\Exception; 13 | 14 | /** 15 | * The base interface for all exceptions in the contract. 16 | * 17 | * @author Nicolas Grekas 18 | */ 19 | interface ExceptionInterface extends \Throwable 20 | { 21 | } 22 | -------------------------------------------------------------------------------- /vendor/kubawerlos/php-cs-fixer-custom-fixers/bootstrap.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\Contracts\HttpClient\Exception; 13 | 14 | /** 15 | * When a 4xx response is returned. 16 | * 17 | * @author Nicolas Grekas 18 | */ 19 | interface ClientExceptionInterface extends HttpExceptionInterface 20 | { 21 | } 22 | -------------------------------------------------------------------------------- /vendor/symfony/http-client-contracts/Exception/ServerExceptionInterface.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\Contracts\HttpClient\Exception; 13 | 14 | /** 15 | * When a 5xx response is returned. 16 | * 17 | * @author Nicolas Grekas 18 | */ 19 | interface ServerExceptionInterface extends HttpExceptionInterface 20 | { 21 | } 22 | -------------------------------------------------------------------------------- /vendor/symfony/http-client-contracts/Exception/TimeoutExceptionInterface.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\Contracts\HttpClient\Exception; 13 | 14 | /** 15 | * When an idle timeout occurs. 16 | * 17 | * @author Nicolas Grekas 18 | */ 19 | interface TimeoutExceptionInterface extends TransportExceptionInterface 20 | { 21 | } 22 | -------------------------------------------------------------------------------- /vendor/symfony/http-client/Chunk/FirstChunk.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\HttpClient\Chunk; 13 | 14 | /** 15 | * @author Nicolas Grekas 16 | * 17 | * @internal 18 | */ 19 | class FirstChunk extends DataChunk 20 | { 21 | public function isFirst(): bool 22 | { 23 | return true; 24 | } 25 | } 26 | -------------------------------------------------------------------------------- /vendor/symfony/http-client/Chunk/LastChunk.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\HttpClient\Chunk; 13 | 14 | /** 15 | * @author Nicolas Grekas 16 | * 17 | * @internal 18 | */ 19 | class LastChunk extends DataChunk 20 | { 21 | public function isLast(): bool 22 | { 23 | return true; 24 | } 25 | } 26 | -------------------------------------------------------------------------------- /vendor/symfony/http-client/README.md: -------------------------------------------------------------------------------- 1 | HttpClient component 2 | ==================== 3 | 4 | The HttpClient component provides powerful methods to fetch HTTP resources synchronously or asynchronously. 5 | 6 | Resources 7 | --------- 8 | 9 | * [Documentation](https://symfony.com/doc/current/components/http_client.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/symfony/options-resolver/Options.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\OptionsResolver; 13 | 14 | /** 15 | * Contains resolved option values. 16 | * 17 | * @author Bernhard Schussek 18 | * @author Tobias Schultze 19 | */ 20 | interface Options extends \ArrayAccess, \Countable 21 | { 22 | } 23 | -------------------------------------------------------------------------------- /vendor/symfony/service-contracts/Test/ServiceLocatorTest.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\Contracts\Service\Test; 13 | 14 | class_alias(ServiceLocatorTestCase::class, ServiceLocatorTest::class); 15 | 16 | if (false) { 17 | /** 18 | * @deprecated since PHPUnit 9.6 19 | */ 20 | class ServiceLocatorTest 21 | { 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /vendor/psr/http-client/README.md: -------------------------------------------------------------------------------- 1 | HTTP Client 2 | =========== 3 | 4 | This repository holds all the common code related to [PSR-18 (HTTP Client)][psr-url]. 5 | 6 | Note that this is not a HTTP Client implementation of its own. It is merely abstractions that describe the components of a HTTP Client. 7 | 8 | The installable [package][package-url] and [implementations][implementation-url] are listed on Packagist. 9 | 10 | [psr-url]: https://www.php-fig.org/psr/psr-18 11 | [package-url]: https://packagist.org/packages/psr/http-client 12 | [implementation-url]: https://packagist.org/providers/psr/http-client-implementation 13 | -------------------------------------------------------------------------------- /vendor/ralouphie/getallheaders/composer.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "ralouphie/getallheaders", 3 | "description": "A polyfill for getallheaders.", 4 | "license": "MIT", 5 | "authors": [ 6 | { 7 | "name": "Ralph Khattar", 8 | "email": "ralph.khattar@gmail.com" 9 | } 10 | ], 11 | "require": { 12 | "php": ">=5.6" 13 | }, 14 | "require-dev": { 15 | "phpunit/phpunit": "^5 || ^6.5", 16 | "php-coveralls/php-coveralls": "^2.1" 17 | }, 18 | "autoload": { 19 | "files": ["src/getallheaders.php"] 20 | }, 21 | "autoload-dev": { 22 | "psr-4": { 23 | "getallheaders\\Tests\\": "tests/" 24 | } 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /vendor/sebastian/diff/src/LongestCommonSubsequenceCalculator.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 | namespace SebastianBergmann\Diff; 11 | 12 | interface LongestCommonSubsequenceCalculator 13 | { 14 | /** 15 | * Calculates the longest common subsequence of two arrays. 16 | */ 17 | public function calculate(array $from, array $to): array; 18 | } 19 | -------------------------------------------------------------------------------- /vendor/symfony/process/Exception/RuntimeException.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\Process\Exception; 13 | 14 | /** 15 | * RuntimeException for the Process Component. 16 | * 17 | * @author Johannes M. Schmitt 18 | */ 19 | class RuntimeException extends \RuntimeException implements ExceptionInterface 20 | { 21 | } 22 | -------------------------------------------------------------------------------- /vendor/psr/http-client/src/ClientInterface.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\Contracts\HttpClient\Exception; 13 | 14 | /** 15 | * When any error happens at the transport level. 16 | * 17 | * @author Nicolas Grekas 18 | */ 19 | interface TransportExceptionInterface extends ExceptionInterface 20 | { 21 | } 22 | -------------------------------------------------------------------------------- /vendor/psr/http-factory/README.md: -------------------------------------------------------------------------------- 1 | HTTP Factories 2 | ============== 3 | 4 | This repository holds all interfaces related to [PSR-17 (HTTP Factories)][psr-url]. 5 | 6 | Note that this is not a HTTP Factory implementation of its own. It is merely interfaces that describe the components of a HTTP Factory. 7 | 8 | The installable [package][package-url] and [implementations][implementation-url] are listed on Packagist. 9 | 10 | [psr-url]: https://www.php-fig.org/psr/psr-17/ 11 | [package-url]: https://packagist.org/packages/psr/http-factory 12 | [implementation-url]: https://packagist.org/providers/psr/http-factory-implementation 13 | -------------------------------------------------------------------------------- /vendor/fidry/cpu-core-counter/src/Executor/ProcessExecutor.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 | declare(strict_types=1); 13 | 14 | namespace Fidry\CpuCoreCounter\Executor; 15 | 16 | interface ProcessExecutor 17 | { 18 | /** 19 | * @return array{string, string}|null STDOUT & STDERR tuple 20 | */ 21 | public function execute(string $command): ?array; 22 | } 23 | -------------------------------------------------------------------------------- /vendor/php-feed-io/feed-io/src/FeedIo/Adapter/NullClient.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\OptionsResolver\Exception; 13 | 14 | /** 15 | * Marker interface for all exceptions thrown by the OptionsResolver component. 16 | * 17 | * @author Bernhard Schussek 18 | */ 19 | interface ExceptionInterface extends \Throwable 20 | { 21 | } 22 | -------------------------------------------------------------------------------- /vendor/symfony/process/Exception/InvalidArgumentException.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\Process\Exception; 13 | 14 | /** 15 | * InvalidArgumentException for the Process Component. 16 | * 17 | * @author Romain Neutron 18 | */ 19 | class InvalidArgumentException extends \InvalidArgumentException implements ExceptionInterface 20 | { 21 | } 22 | -------------------------------------------------------------------------------- /vendor/symfony/http-client-contracts/Exception/DecodingExceptionInterface.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\Contracts\HttpClient\Exception; 13 | 14 | /** 15 | * When a content-type cannot be decoded to the expected representation. 16 | * 17 | * @author Nicolas Grekas 18 | */ 19 | interface DecodingExceptionInterface extends ExceptionInterface 20 | { 21 | } 22 | -------------------------------------------------------------------------------- /vendor/vimeo/vimeo-api/src/Vimeo/Exceptions/VimeoUploadException.php: -------------------------------------------------------------------------------- 1 | retryable = $retryable; 15 | } 16 | 17 | public function isRetryable() 18 | { 19 | return $this->retryable; 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /vendor/composer/pcre/src/UnexpectedNullMatchException.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | namespace Composer\Pcre; 13 | 14 | class UnexpectedNullMatchException extends PcreException 15 | { 16 | public static function fromFunction($function, $pattern) 17 | { 18 | throw new \LogicException('fromFunction should not be called on '.self::class.', use '.PcreException::class); 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /vendor/php-feed-io/feed-io/tests/FeedIo/Filter/SinceTest.php: -------------------------------------------------------------------------------- 1 | assertTrue($filter->filter((new Item())->setLastModified(new \DateTime('-1 hour')))); 14 | $this->assertTrue($filter->filter((new Item())->setLastModified(new \DateTime('-1 day')))); 15 | $this->assertFalse($filter->filter((new Item())->setLastModified(new \DateTime('-2 day')))); 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /vendor/symfony/http-client/Exception/TimeoutException.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\HttpClient\Exception; 13 | 14 | use Symfony\Contracts\HttpClient\Exception\TimeoutExceptionInterface; 15 | 16 | /** 17 | * @author Nicolas Grekas 18 | */ 19 | final class TimeoutException extends TransportException implements TimeoutExceptionInterface 20 | { 21 | } 22 | -------------------------------------------------------------------------------- /vendor/symfony/http-client/Exception/TransportException.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\HttpClient\Exception; 13 | 14 | use Symfony\Contracts\HttpClient\Exception\TransportExceptionInterface; 15 | 16 | /** 17 | * @author Nicolas Grekas 18 | */ 19 | class TransportException extends \RuntimeException implements TransportExceptionInterface 20 | { 21 | } 22 | -------------------------------------------------------------------------------- /vendor/symfony/options-resolver/Exception/InvalidArgumentException.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\OptionsResolver\Exception; 13 | 14 | /** 15 | * Thrown when an argument is invalid. 16 | * 17 | * @author Bernhard Schussek 18 | */ 19 | class InvalidArgumentException extends \InvalidArgumentException implements ExceptionInterface 20 | { 21 | } 22 | -------------------------------------------------------------------------------- /vendor/php-feed-io/feed-io/src/FeedIo/Adapter/ServerErrorException.php: -------------------------------------------------------------------------------- 1 | response; 24 | } 25 | } 26 | -------------------------------------------------------------------------------- /vendor/php-feed-io/feed-io/src/FeedIo/Rule/Atom/Media.php: -------------------------------------------------------------------------------- 1 | setAttribute('rel', 'enclosure'); 21 | 22 | return $element; 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /vendor/react/event-loop/src/TimerInterface.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 | use Symfony\Polyfill\Php84 as p; 13 | 14 | if (\PHP_VERSION_ID >= 80400) { 15 | return; 16 | } 17 | 18 | if (extension_loaded('intl') && !function_exists('grapheme_str_split')) { 19 | function grapheme_str_split(string $string, int $length = 1): array|false { return p\Php84::grapheme_str_split($string, $length); } 20 | } 21 | -------------------------------------------------------------------------------- /vendor/friendsofphp/php-cs-fixer/src/Fixer/InternalFixerInterface.php: -------------------------------------------------------------------------------- 1 | 9 | * Dariusz Rumiński 10 | * 11 | * This source file is subject to the MIT license that is bundled 12 | * with this source code in the file LICENSE. 13 | */ 14 | 15 | namespace PhpCsFixer\Fixer; 16 | 17 | /** 18 | * @internal 19 | * 20 | * @no-named-arguments Parameter names are not covered by the backward compatibility promise. 21 | */ 22 | interface InternalFixerInterface extends FixerInterface {} 23 | -------------------------------------------------------------------------------- /vendor/psr/event-dispatcher/src/ListenerProviderInterface.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 | namespace SebastianBergmann\Diff\Output; 11 | 12 | /** 13 | * Defines how an output builder should take a generated 14 | * diff array and return a string representation of that diff. 15 | */ 16 | interface DiffOutputBuilderInterface 17 | { 18 | public function getDiff(array $diff): string; 19 | } 20 | -------------------------------------------------------------------------------- /vendor/symfony/http-client/Exception/EventSourceException.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\HttpClient\Exception; 13 | 14 | use Symfony\Contracts\HttpClient\Exception\DecodingExceptionInterface; 15 | 16 | /** 17 | * @author Nicolas Grekas 18 | */ 19 | final class EventSourceException extends \RuntimeException implements DecodingExceptionInterface 20 | { 21 | } 22 | -------------------------------------------------------------------------------- /vendor/symfony/options-resolver/Exception/OptionDefinitionException.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\OptionsResolver\Exception; 13 | 14 | /** 15 | * Thrown when two lazy options have a cyclic dependency. 16 | * 17 | * @author Bernhard Schussek 18 | */ 19 | class OptionDefinitionException extends \LogicException implements ExceptionInterface 20 | { 21 | } 22 | -------------------------------------------------------------------------------- /vendor/symfony/http-client-contracts/Exception/RedirectionExceptionInterface.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\Contracts\HttpClient\Exception; 13 | 14 | /** 15 | * When a 3xx response is returned and the "max_redirects" option has been reached. 16 | * 17 | * @author Nicolas Grekas 18 | */ 19 | interface RedirectionExceptionInterface extends HttpExceptionInterface 20 | { 21 | } 22 | -------------------------------------------------------------------------------- /vendor/friendsofphp/php-cs-fixer/src/Fixer/ExperimentalFixerInterface.php: -------------------------------------------------------------------------------- 1 | 9 | * Dariusz Rumiński 10 | * 11 | * This source file is subject to the MIT license that is bundled 12 | * with this source code in the file LICENSE. 13 | */ 14 | 15 | namespace PhpCsFixer\Fixer; 16 | 17 | /** 18 | * @internal 19 | * 20 | * @no-named-arguments Parameter names are not covered by the backward compatibility promise. 21 | */ 22 | interface ExperimentalFixerInterface extends FixerInterface {} 23 | -------------------------------------------------------------------------------- /vendor/psr/http-factory/src/ResponseFactoryInterface.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | -------------------------------------------------------------------------------- /vendor/psr/http-client/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | # Changelog 2 | 3 | All notable changes to this project will be documented in this file, in reverse chronological order by release. 4 | 5 | ## 1.0.3 6 | 7 | Add `source` link in composer.json. No code changes. 8 | 9 | ## 1.0.2 10 | 11 | Allow PSR-7 (psr/http-message) 2.0. No code changes. 12 | 13 | ## 1.0.1 14 | 15 | Allow installation with PHP 8. No code changes. 16 | 17 | ## 1.0.0 18 | 19 | First stable release. No changes since 0.3.0. 20 | 21 | ## 0.3.0 22 | 23 | Added Interface suffix on exceptions 24 | 25 | ## 0.2.0 26 | 27 | All exceptions are in `Psr\Http\Client` namespace 28 | 29 | ## 0.1.0 30 | 31 | First release 32 | -------------------------------------------------------------------------------- /vendor/symfony/http-client/Exception/InvalidArgumentException.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\HttpClient\Exception; 13 | 14 | use Symfony\Contracts\HttpClient\Exception\TransportExceptionInterface; 15 | 16 | /** 17 | * @author Nicolas Grekas 18 | */ 19 | final class InvalidArgumentException extends \InvalidArgumentException implements TransportExceptionInterface 20 | { 21 | } 22 | -------------------------------------------------------------------------------- /vendor/php-feed-io/feed-io/tests/FeedIo/StandardFormatter/AtomTest.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\OptionsResolver\Exception; 13 | 14 | /** 15 | * Exception thrown when a required option is missing. 16 | * 17 | * Add the option to the passed options array. 18 | * 19 | * @author Bernhard Schussek 20 | */ 21 | class MissingOptionsException extends InvalidArgumentException 22 | { 23 | } 24 | -------------------------------------------------------------------------------- /vendor/symfony/event-dispatcher/README.md: -------------------------------------------------------------------------------- 1 | EventDispatcher Component 2 | ========================= 3 | 4 | The EventDispatcher component provides tools that allow your application 5 | components to communicate with each other by dispatching events and listening to 6 | them. 7 | 8 | Resources 9 | --------- 10 | 11 | * [Documentation](https://symfony.com/doc/current/components/event_dispatcher.html) 12 | * [Contributing](https://symfony.com/doc/current/contributing/index.html) 13 | * [Report issues](https://github.com/symfony/symfony/issues) and 14 | [send Pull Requests](https://github.com/symfony/symfony/pulls) 15 | in the [main Symfony repository](https://github.com/symfony/symfony) 16 | -------------------------------------------------------------------------------- /vendor/php-http/discovery/src/Strategy/MockClientStrategy.php: -------------------------------------------------------------------------------- 1 | 13 | */ 14 | final class MockClientStrategy implements DiscoveryStrategy 15 | { 16 | public static function getCandidates($type) 17 | { 18 | if (is_a(HttpClient::class, $type, true) || is_a(HttpAsyncClient::class, $type, true)) { 19 | return [['class' => Mock::class, 'condition' => Mock::class]]; 20 | } 21 | 22 | return []; 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /vendor/psr/event-dispatcher/composer.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "psr/event-dispatcher", 3 | "description": "Standard interfaces for event handling.", 4 | "type": "library", 5 | "keywords": ["psr", "psr-14", "events"], 6 | "license": "MIT", 7 | "authors": [ 8 | { 9 | "name": "PHP-FIG", 10 | "homepage": "http://www.php-fig.org/" 11 | } 12 | ], 13 | "require": { 14 | "php": ">=7.2.0" 15 | }, 16 | "autoload": { 17 | "psr-4": { 18 | "Psr\\EventDispatcher\\": "src/" 19 | } 20 | }, 21 | "extra": { 22 | "branch-alias": { 23 | "dev-master": "1.0.x-dev" 24 | } 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /vendor/symfony/http-client/Internal/ClientState.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\HttpClient\Internal; 13 | 14 | /** 15 | * Internal representation of the client state. 16 | * 17 | * @author Alexander M. Turek 18 | * 19 | * @internal 20 | */ 21 | class ClientState 22 | { 23 | public array $handlesActivity = []; 24 | public array $openHandles = []; 25 | public ?float $lastTimeout = null; 26 | } 27 | -------------------------------------------------------------------------------- /vendor/fidry/cpu-core-counter/src/NumberOfCpuCoreNotFound.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 | declare(strict_types=1); 13 | 14 | namespace Fidry\CpuCoreCounter; 15 | 16 | use RuntimeException; 17 | 18 | final class NumberOfCpuCoreNotFound extends RuntimeException 19 | { 20 | public static function create(): self 21 | { 22 | return new self( 23 | 'Could not find the number of CPU cores available.' 24 | ); 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /vendor/php-feed-io/feed-io/src/FeedIo/Filter/Chain.php: -------------------------------------------------------------------------------- 1 | filters[] = $filter; 16 | } 17 | 18 | public function filter(FeedInterface $feed): iterable 19 | { 20 | foreach ($feed as $item) { 21 | foreach ($this->filters as $filter) { 22 | if (!$filter->filter($item)) { 23 | continue 2; 24 | } 25 | } 26 | 27 | yield $item; 28 | } 29 | } 30 | } 31 | -------------------------------------------------------------------------------- /vendor/symfony/http-client/Exception/ClientException.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\HttpClient\Exception; 13 | 14 | use Symfony\Contracts\HttpClient\Exception\ClientExceptionInterface; 15 | 16 | /** 17 | * Represents a 4xx response. 18 | * 19 | * @author Nicolas Grekas 20 | */ 21 | final class ClientException extends \RuntimeException implements ClientExceptionInterface 22 | { 23 | use HttpExceptionTrait; 24 | } 25 | -------------------------------------------------------------------------------- /vendor/symfony/http-client/Exception/ServerException.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\HttpClient\Exception; 13 | 14 | use Symfony\Contracts\HttpClient\Exception\ServerExceptionInterface; 15 | 16 | /** 17 | * Represents a 5xx response. 18 | * 19 | * @author Nicolas Grekas 20 | */ 21 | final class ServerException extends \RuntimeException implements ServerExceptionInterface 22 | { 23 | use HttpExceptionTrait; 24 | } 25 | -------------------------------------------------------------------------------- /vendor/symfony/options-resolver/README.md: -------------------------------------------------------------------------------- 1 | OptionsResolver Component 2 | ========================= 3 | 4 | The OptionsResolver component is `array_replace` on steroids. It allows you to 5 | create an options system with required options, defaults, validation (type, 6 | value), normalization and more. 7 | 8 | Resources 9 | --------- 10 | 11 | * [Documentation](https://symfony.com/doc/current/components/options_resolver.html) 12 | * [Contributing](https://symfony.com/doc/current/contributing/index.html) 13 | * [Report issues](https://github.com/symfony/symfony/issues) and 14 | [send Pull Requests](https://github.com/symfony/symfony/pulls) 15 | in the [main Symfony repository](https://github.com/symfony/symfony) 16 | -------------------------------------------------------------------------------- /vendor/symfony/options-resolver/Exception/AccessException.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\OptionsResolver\Exception; 13 | 14 | /** 15 | * Thrown when trying to read an option outside of or write it inside of 16 | * {@link \Symfony\Component\OptionsResolver\Options::resolve()}. 17 | * 18 | * @author Bernhard Schussek 19 | */ 20 | class AccessException extends \LogicException implements ExceptionInterface 21 | { 22 | } 23 | -------------------------------------------------------------------------------- /vendor/php-feed-io/feed-io/src/FeedIo/SpecificationInterface.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\OptionsResolver\Exception; 13 | 14 | /** 15 | * Thrown when the value of an option does not match its validation rules. 16 | * 17 | * You should make sure a valid value is passed to the option. 18 | * 19 | * @author Bernhard Schussek 20 | */ 21 | class InvalidOptionsException extends InvalidArgumentException 22 | { 23 | } 24 | -------------------------------------------------------------------------------- /vendor/psr/http-client/src/RequestExceptionInterface.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\Contracts\HttpClient\Exception; 13 | 14 | use Symfony\Contracts\HttpClient\ResponseInterface; 15 | 16 | /** 17 | * Base interface for HTTP-related exceptions. 18 | * 19 | * @author Anton Chernikov 20 | */ 21 | interface HttpExceptionInterface extends ExceptionInterface 22 | { 23 | public function getResponse(): ResponseInterface; 24 | } 25 | -------------------------------------------------------------------------------- /vendor/symfony/http-client/Exception/JsonException.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\HttpClient\Exception; 13 | 14 | use Symfony\Contracts\HttpClient\Exception\DecodingExceptionInterface; 15 | 16 | /** 17 | * Thrown by responses' toArray() method when their content cannot be JSON-decoded. 18 | * 19 | * @author Nicolas Grekas 20 | */ 21 | final class JsonException extends \JsonException implements DecodingExceptionInterface 22 | { 23 | } 24 | -------------------------------------------------------------------------------- /vendor/symfony/http-client/Exception/RedirectionException.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\HttpClient\Exception; 13 | 14 | use Symfony\Contracts\HttpClient\Exception\RedirectionExceptionInterface; 15 | 16 | /** 17 | * Represents a 3xx response. 18 | * 19 | * @author Nicolas Grekas 20 | */ 21 | final class RedirectionException extends \RuntimeException implements RedirectionExceptionInterface 22 | { 23 | use HttpExceptionTrait; 24 | } 25 | -------------------------------------------------------------------------------- /vendor/symfony/options-resolver/Exception/UndefinedOptionsException.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\OptionsResolver\Exception; 13 | 14 | /** 15 | * Exception thrown when an undefined option is passed. 16 | * 17 | * You should remove the options in question from your code or define them 18 | * beforehand. 19 | * 20 | * @author Bernhard Schussek 21 | */ 22 | class UndefinedOptionsException extends InvalidArgumentException 23 | { 24 | } 25 | -------------------------------------------------------------------------------- /vendor/friendsofphp/php-cs-fixer/src/Cache/DirectoryInterface.php: -------------------------------------------------------------------------------- 1 | 9 | * Dariusz Rumiński 10 | * 11 | * This source file is subject to the MIT license that is bundled 12 | * with this source code in the file LICENSE. 13 | */ 14 | 15 | namespace PhpCsFixer\Cache; 16 | 17 | /** 18 | * @author Dariusz Rumiński 19 | * 20 | * @no-named-arguments Parameter names are not covered by the backward compatibility promise. 21 | */ 22 | interface DirectoryInterface 23 | { 24 | public function getRelativePathTo(string $file): string; 25 | } 26 | -------------------------------------------------------------------------------- /vendor/friendsofphp/php-cs-fixer/src/ExecutorWithoutErrorHandlerException.php: -------------------------------------------------------------------------------- 1 | 9 | * Dariusz Rumiński 10 | * 11 | * This source file is subject to the MIT license that is bundled 12 | * with this source code in the file LICENSE. 13 | */ 14 | 15 | namespace PhpCsFixer; 16 | 17 | /** 18 | * @author Dariusz Rumiński 19 | * 20 | * @internal 21 | * 22 | * @no-named-arguments Parameter names are not covered by the backward compatibility promise. 23 | */ 24 | final class ExecutorWithoutErrorHandlerException extends \RuntimeException {} 25 | -------------------------------------------------------------------------------- /vendor/friendsofphp/php-cs-fixer/src/FixerConfiguration/DeprecatedFixerOptionInterface.php: -------------------------------------------------------------------------------- 1 | 9 | * Dariusz Rumiński 10 | * 11 | * This source file is subject to the MIT license that is bundled 12 | * with this source code in the file LICENSE. 13 | */ 14 | 15 | namespace PhpCsFixer\FixerConfiguration; 16 | 17 | /** 18 | * @no-named-arguments Parameter names are not covered by the backward compatibility promise. 19 | */ 20 | interface DeprecatedFixerOptionInterface extends FixerOptionInterface 21 | { 22 | public function getDeprecationMessage(): string; 23 | } 24 | -------------------------------------------------------------------------------- /vendor/vimeo/vimeo-api/phpunit.xml: -------------------------------------------------------------------------------- 1 | 2 | 11 | 12 | 13 | ./tests/ 14 | 15 | 16 | 17 | 18 | 19 | src/ 20 | 21 | 22 | 23 | -------------------------------------------------------------------------------- /vendor/friendsofphp/php-cs-fixer/src/Linter/LintingException.php: -------------------------------------------------------------------------------- 1 | 9 | * Dariusz Rumiński 10 | * 11 | * This source file is subject to the MIT license that is bundled 12 | * with this source code in the file LICENSE. 13 | */ 14 | 15 | namespace PhpCsFixer\Linter; 16 | 17 | /** 18 | * @author Dariusz Rumiński 19 | * 20 | * @final 21 | * 22 | * @TODO 4.0 make class "final" 23 | * 24 | * @no-named-arguments Parameter names are not covered by the backward compatibility promise. 25 | */ 26 | class LintingException extends \RuntimeException {} 27 | -------------------------------------------------------------------------------- /vendor/friendsofphp/php-cs-fixer/src/RuleSet/DeprecatedRuleSetDescriptionInterface.php: -------------------------------------------------------------------------------- 1 | 9 | * Dariusz Rumiński 10 | * 11 | * This source file is subject to the MIT license that is bundled 12 | * with this source code in the file LICENSE. 13 | */ 14 | 15 | namespace PhpCsFixer\RuleSet; 16 | 17 | /* 18 | * @deprecated 19 | * @TODO v4 remove me @MARKER_deprecated_DeprecatedRuleSetDescriptionInterface 20 | */ 21 | class_alias( 22 | DeprecatedRuleSetDefinitionInterface::class, 23 | DeprecatedRuleSetDescriptionInterface::class // @phpstan-ignore class.notFound 24 | ); 25 | -------------------------------------------------------------------------------- /vendor/friendsofphp/php-cs-fixer/src/PregException.php: -------------------------------------------------------------------------------- 1 | 9 | * Dariusz Rumiński 10 | * 11 | * This source file is subject to the MIT license that is bundled 12 | * with this source code in the file LICENSE. 13 | */ 14 | 15 | namespace PhpCsFixer; 16 | 17 | /** 18 | * Exception that is thrown when PCRE function encounters an error. 19 | * 20 | * @author Kuba Werłos 21 | * 22 | * @internal 23 | * 24 | * @no-named-arguments Parameter names are not covered by the backward compatibility promise. 25 | */ 26 | final class PregException extends \RuntimeException {} 27 | -------------------------------------------------------------------------------- /vendor/friendsofphp/php-cs-fixer/src/RuleSet/Sets/PHP54MigrationSet.php: -------------------------------------------------------------------------------- 1 | 9 | * Dariusz Rumiński 10 | * 11 | * This source file is subject to the MIT license that is bundled 12 | * with this source code in the file LICENSE. 13 | */ 14 | 15 | namespace PhpCsFixer\RuleSet\Sets; 16 | 17 | use PhpCsFixer\RuleSet\AbstractMajorMinorDeprecationSetDefinition; 18 | 19 | /** 20 | * @internal 21 | * 22 | * @no-named-arguments Parameter names are not covered by the backward compatibility promise. 23 | */ 24 | final class PHP54MigrationSet extends AbstractMajorMinorDeprecationSetDefinition {} 25 | -------------------------------------------------------------------------------- /vendor/friendsofphp/php-cs-fixer/src/RuleSet/Sets/PHP70MigrationSet.php: -------------------------------------------------------------------------------- 1 | 9 | * Dariusz Rumiński 10 | * 11 | * This source file is subject to the MIT license that is bundled 12 | * with this source code in the file LICENSE. 13 | */ 14 | 15 | namespace PhpCsFixer\RuleSet\Sets; 16 | 17 | use PhpCsFixer\RuleSet\AbstractMajorMinorDeprecationSetDefinition; 18 | 19 | /** 20 | * @internal 21 | * 22 | * @no-named-arguments Parameter names are not covered by the backward compatibility promise. 23 | */ 24 | final class PHP70MigrationSet extends AbstractMajorMinorDeprecationSetDefinition {} 25 | -------------------------------------------------------------------------------- /vendor/friendsofphp/php-cs-fixer/src/RuleSet/Sets/PHP71MigrationSet.php: -------------------------------------------------------------------------------- 1 | 9 | * Dariusz Rumiński 10 | * 11 | * This source file is subject to the MIT license that is bundled 12 | * with this source code in the file LICENSE. 13 | */ 14 | 15 | namespace PhpCsFixer\RuleSet\Sets; 16 | 17 | use PhpCsFixer\RuleSet\AbstractMajorMinorDeprecationSetDefinition; 18 | 19 | /** 20 | * @internal 21 | * 22 | * @no-named-arguments Parameter names are not covered by the backward compatibility promise. 23 | */ 24 | final class PHP71MigrationSet extends AbstractMajorMinorDeprecationSetDefinition {} 25 | -------------------------------------------------------------------------------- /vendor/friendsofphp/php-cs-fixer/src/RuleSet/Sets/PHP73MigrationSet.php: -------------------------------------------------------------------------------- 1 | 9 | * Dariusz Rumiński 10 | * 11 | * This source file is subject to the MIT license that is bundled 12 | * with this source code in the file LICENSE. 13 | */ 14 | 15 | namespace PhpCsFixer\RuleSet\Sets; 16 | 17 | use PhpCsFixer\RuleSet\AbstractMajorMinorDeprecationSetDefinition; 18 | 19 | /** 20 | * @internal 21 | * 22 | * @no-named-arguments Parameter names are not covered by the backward compatibility promise. 23 | */ 24 | final class PHP73MigrationSet extends AbstractMajorMinorDeprecationSetDefinition {} 25 | -------------------------------------------------------------------------------- /vendor/friendsofphp/php-cs-fixer/src/RuleSet/Sets/PHP74MigrationSet.php: -------------------------------------------------------------------------------- 1 | 9 | * Dariusz Rumiński 10 | * 11 | * This source file is subject to the MIT license that is bundled 12 | * with this source code in the file LICENSE. 13 | */ 14 | 15 | namespace PhpCsFixer\RuleSet\Sets; 16 | 17 | use PhpCsFixer\RuleSet\AbstractMajorMinorDeprecationSetDefinition; 18 | 19 | /** 20 | * @internal 21 | * 22 | * @no-named-arguments Parameter names are not covered by the backward compatibility promise. 23 | */ 24 | final class PHP74MigrationSet extends AbstractMajorMinorDeprecationSetDefinition {} 25 | -------------------------------------------------------------------------------- /vendor/friendsofphp/php-cs-fixer/src/RuleSet/Sets/PHP80MigrationSet.php: -------------------------------------------------------------------------------- 1 | 9 | * Dariusz Rumiński 10 | * 11 | * This source file is subject to the MIT license that is bundled 12 | * with this source code in the file LICENSE. 13 | */ 14 | 15 | namespace PhpCsFixer\RuleSet\Sets; 16 | 17 | use PhpCsFixer\RuleSet\AbstractMajorMinorDeprecationSetDefinition; 18 | 19 | /** 20 | * @internal 21 | * 22 | * @no-named-arguments Parameter names are not covered by the backward compatibility promise. 23 | */ 24 | final class PHP80MigrationSet extends AbstractMajorMinorDeprecationSetDefinition {} 25 | -------------------------------------------------------------------------------- /vendor/friendsofphp/php-cs-fixer/src/RuleSet/Sets/PHP81MigrationSet.php: -------------------------------------------------------------------------------- 1 | 9 | * Dariusz Rumiński 10 | * 11 | * This source file is subject to the MIT license that is bundled 12 | * with this source code in the file LICENSE. 13 | */ 14 | 15 | namespace PhpCsFixer\RuleSet\Sets; 16 | 17 | use PhpCsFixer\RuleSet\AbstractMajorMinorDeprecationSetDefinition; 18 | 19 | /** 20 | * @internal 21 | * 22 | * @no-named-arguments Parameter names are not covered by the backward compatibility promise. 23 | */ 24 | final class PHP81MigrationSet extends AbstractMajorMinorDeprecationSetDefinition {} 25 | -------------------------------------------------------------------------------- /vendor/friendsofphp/php-cs-fixer/src/RuleSet/Sets/PHP82MigrationSet.php: -------------------------------------------------------------------------------- 1 | 9 | * Dariusz Rumiński 10 | * 11 | * This source file is subject to the MIT license that is bundled 12 | * with this source code in the file LICENSE. 13 | */ 14 | 15 | namespace PhpCsFixer\RuleSet\Sets; 16 | 17 | use PhpCsFixer\RuleSet\AbstractMajorMinorDeprecationSetDefinition; 18 | 19 | /** 20 | * @internal 21 | * 22 | * @no-named-arguments Parameter names are not covered by the backward compatibility promise. 23 | */ 24 | final class PHP82MigrationSet extends AbstractMajorMinorDeprecationSetDefinition {} 25 | -------------------------------------------------------------------------------- /vendor/friendsofphp/php-cs-fixer/src/RuleSet/Sets/PHP83MigrationSet.php: -------------------------------------------------------------------------------- 1 | 9 | * Dariusz Rumiński 10 | * 11 | * This source file is subject to the MIT license that is bundled 12 | * with this source code in the file LICENSE. 13 | */ 14 | 15 | namespace PhpCsFixer\RuleSet\Sets; 16 | 17 | use PhpCsFixer\RuleSet\AbstractMajorMinorDeprecationSetDefinition; 18 | 19 | /** 20 | * @internal 21 | * 22 | * @no-named-arguments Parameter names are not covered by the backward compatibility promise. 23 | */ 24 | final class PHP83MigrationSet extends AbstractMajorMinorDeprecationSetDefinition {} 25 | -------------------------------------------------------------------------------- /vendor/friendsofphp/php-cs-fixer/src/RuleSet/Sets/PHP84MigrationSet.php: -------------------------------------------------------------------------------- 1 | 9 | * Dariusz Rumiński 10 | * 11 | * This source file is subject to the MIT license that is bundled 12 | * with this source code in the file LICENSE. 13 | */ 14 | 15 | namespace PhpCsFixer\RuleSet\Sets; 16 | 17 | use PhpCsFixer\RuleSet\AbstractMajorMinorDeprecationSetDefinition; 18 | 19 | /** 20 | * @internal 21 | * 22 | * @no-named-arguments Parameter names are not covered by the backward compatibility promise. 23 | */ 24 | final class PHP84MigrationSet extends AbstractMajorMinorDeprecationSetDefinition {} 25 | -------------------------------------------------------------------------------- /vendor/friendsofphp/php-cs-fixer/src/RuleSet/Sets/PHP85MigrationSet.php: -------------------------------------------------------------------------------- 1 | 9 | * Dariusz Rumiński 10 | * 11 | * This source file is subject to the MIT license that is bundled 12 | * with this source code in the file LICENSE. 13 | */ 14 | 15 | namespace PhpCsFixer\RuleSet\Sets; 16 | 17 | use PhpCsFixer\RuleSet\AbstractMajorMinorDeprecationSetDefinition; 18 | 19 | /** 20 | * @internal 21 | * 22 | * @no-named-arguments Parameter names are not covered by the backward compatibility promise. 23 | */ 24 | final class PHP85MigrationSet extends AbstractMajorMinorDeprecationSetDefinition {} 25 | -------------------------------------------------------------------------------- /vendor/php-http/discovery/src/Strategy/DiscoveryStrategy.php: -------------------------------------------------------------------------------- 1 | 9 | */ 10 | interface DiscoveryStrategy 11 | { 12 | /** 13 | * Find a resource of a specific type. 14 | * 15 | * @param string $type 16 | * 17 | * @return array The return value is always an array with zero or more elements. Each 18 | * element is an array with two keys ['class' => string, 'condition' => mixed]. 19 | * 20 | * @throws StrategyUnavailableException if we cannot use this strategy 21 | */ 22 | public static function getCandidates($type); 23 | } 24 | -------------------------------------------------------------------------------- /vendor/friendsofphp/php-cs-fixer/src/Console/SelfUpdate/GithubClientInterface.php: -------------------------------------------------------------------------------- 1 | 9 | * Dariusz Rumiński 10 | * 11 | * This source file is subject to the MIT license that is bundled 12 | * with this source code in the file LICENSE. 13 | */ 14 | 15 | namespace PhpCsFixer\Console\SelfUpdate; 16 | 17 | /** 18 | * @internal 19 | * 20 | * @no-named-arguments Parameter names are not covered by the backward compatibility promise. 21 | */ 22 | interface GithubClientInterface 23 | { 24 | /** 25 | * @return list 26 | */ 27 | public function getTags(): array; 28 | } 29 | -------------------------------------------------------------------------------- /vendor/friendsofphp/php-cs-fixer/src/FixerDefinition/VersionSpecificationInterface.php: -------------------------------------------------------------------------------- 1 | 9 | * Dariusz Rumiński 10 | * 11 | * This source file is subject to the MIT license that is bundled 12 | * with this source code in the file LICENSE. 13 | */ 14 | 15 | namespace PhpCsFixer\FixerDefinition; 16 | 17 | /** 18 | * @author Andreas Möller 19 | * 20 | * @no-named-arguments Parameter names are not covered by the backward compatibility promise. 21 | */ 22 | interface VersionSpecificationInterface 23 | { 24 | public function isSatisfiedBy(int $version): bool; 25 | } 26 | -------------------------------------------------------------------------------- /vendor/guzzlehttp/guzzle/src/BodySummarizer.php: -------------------------------------------------------------------------------- 1 | truncateAt = $truncateAt; 17 | } 18 | 19 | /** 20 | * Returns a summarized message body. 21 | */ 22 | public function summarize(MessageInterface $message): ?string 23 | { 24 | return $this->truncateAt === null 25 | ? Psr7\Message::bodySummary($message) 26 | : Psr7\Message::bodySummary($message, $this->truncateAt); 27 | } 28 | } 29 | -------------------------------------------------------------------------------- /vendor/php-feed-io/feed-io/.github/dependabot.yml: -------------------------------------------------------------------------------- 1 | # To get started with Dependabot version updates, you'll need to specify which 2 | # package ecosystems to update and where the package manifests are located. 3 | # Please see the documentation for all configuration options: 4 | # https://help.github.com/github/administering-a-repository/configuration-options-for-dependency-updates 5 | 6 | version: 2 7 | updates: 8 | # Maintain dependencies for Composer 9 | - package-ecosystem: "composer" 10 | directory: "/" 11 | schedule: 12 | interval: "daily" 13 | versioning-strategy: increase 14 | 15 | # Maintain dependencies for GitHub Actions 16 | - package-ecosystem: "github-actions" 17 | directory: "/" 18 | schedule: 19 | interval: "daily" 20 | -------------------------------------------------------------------------------- /vendor/php-feed-io/feed-io/mkdocs.yml: -------------------------------------------------------------------------------- 1 | site_name: feed-io Documentation 2 | theme: 3 | name: material 4 | features: 5 | - content.code.copy 6 | 7 | 8 | nav: 9 | - Home: index.md 10 | - Code Quality: codecontributions.md 11 | - Specification: specifications-support.md 12 | - Upgrade: 13 | - Upgrade to v3: upgrades/UPGRADE-3.0.md 14 | - Upgrade to v4: upgrades/UPGRADE-4.0.md 15 | - Upgrade to v5: upgrades/UPGRADE-5.0.md 16 | - Upgrade to v6: upgrades/UPGRADE-6.0.md 17 | 18 | markdown_extensions: 19 | - pymdownx.highlight: 20 | use_pygments: true 21 | anchor_linenums: true 22 | line_spans: __span 23 | pygments_lang_class: true 24 | - pymdownx.inlinehilite 25 | - pymdownx.snippets 26 | - pymdownx.superfences -------------------------------------------------------------------------------- /vendor/evenement/evenement/src/EventEmitterInterface.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 Evenement; 13 | 14 | interface EventEmitterInterface 15 | { 16 | public function on($event, callable $listener); 17 | public function once($event, callable $listener); 18 | public function removeListener($event, callable $listener); 19 | public function removeAllListeners($event = null); 20 | public function listeners($event = null); 21 | public function emit($event, array $arguments = []); 22 | } 23 | -------------------------------------------------------------------------------- /vendor/friendsofphp/php-cs-fixer/src/RuleSet/Sets/PHP56MigrationRiskySet.php: -------------------------------------------------------------------------------- 1 | 9 | * Dariusz Rumiński 10 | * 11 | * This source file is subject to the MIT license that is bundled 12 | * with this source code in the file LICENSE. 13 | */ 14 | 15 | namespace PhpCsFixer\RuleSet\Sets; 16 | 17 | use PhpCsFixer\RuleSet\AbstractMajorMinorDeprecationSetDefinition; 18 | 19 | /** 20 | * @internal 21 | * 22 | * @no-named-arguments Parameter names are not covered by the backward compatibility promise. 23 | */ 24 | final class PHP56MigrationRiskySet extends AbstractMajorMinorDeprecationSetDefinition {} 25 | -------------------------------------------------------------------------------- /vendor/friendsofphp/php-cs-fixer/src/RuleSet/Sets/PHP70MigrationRiskySet.php: -------------------------------------------------------------------------------- 1 | 9 | * Dariusz Rumiński 10 | * 11 | * This source file is subject to the MIT license that is bundled 12 | * with this source code in the file LICENSE. 13 | */ 14 | 15 | namespace PhpCsFixer\RuleSet\Sets; 16 | 17 | use PhpCsFixer\RuleSet\AbstractMajorMinorDeprecationSetDefinition; 18 | 19 | /** 20 | * @internal 21 | * 22 | * @no-named-arguments Parameter names are not covered by the backward compatibility promise. 23 | */ 24 | final class PHP70MigrationRiskySet extends AbstractMajorMinorDeprecationSetDefinition {} 25 | -------------------------------------------------------------------------------- /vendor/friendsofphp/php-cs-fixer/src/RuleSet/Sets/PHP71MigrationRiskySet.php: -------------------------------------------------------------------------------- 1 | 9 | * Dariusz Rumiński 10 | * 11 | * This source file is subject to the MIT license that is bundled 12 | * with this source code in the file LICENSE. 13 | */ 14 | 15 | namespace PhpCsFixer\RuleSet\Sets; 16 | 17 | use PhpCsFixer\RuleSet\AbstractMajorMinorDeprecationSetDefinition; 18 | 19 | /** 20 | * @internal 21 | * 22 | * @no-named-arguments Parameter names are not covered by the backward compatibility promise. 23 | */ 24 | final class PHP71MigrationRiskySet extends AbstractMajorMinorDeprecationSetDefinition {} 25 | -------------------------------------------------------------------------------- /vendor/friendsofphp/php-cs-fixer/src/RuleSet/Sets/PHP74MigrationRiskySet.php: -------------------------------------------------------------------------------- 1 | 9 | * Dariusz Rumiński 10 | * 11 | * This source file is subject to the MIT license that is bundled 12 | * with this source code in the file LICENSE. 13 | */ 14 | 15 | namespace PhpCsFixer\RuleSet\Sets; 16 | 17 | use PhpCsFixer\RuleSet\AbstractMajorMinorDeprecationSetDefinition; 18 | 19 | /** 20 | * @internal 21 | * 22 | * @no-named-arguments Parameter names are not covered by the backward compatibility promise. 23 | */ 24 | final class PHP74MigrationRiskySet extends AbstractMajorMinorDeprecationSetDefinition {} 25 | -------------------------------------------------------------------------------- /vendor/friendsofphp/php-cs-fixer/src/RuleSet/Sets/PHP80MigrationRiskySet.php: -------------------------------------------------------------------------------- 1 | 9 | * Dariusz Rumiński 10 | * 11 | * This source file is subject to the MIT license that is bundled 12 | * with this source code in the file LICENSE. 13 | */ 14 | 15 | namespace PhpCsFixer\RuleSet\Sets; 16 | 17 | use PhpCsFixer\RuleSet\AbstractMajorMinorDeprecationSetDefinition; 18 | 19 | /** 20 | * @internal 21 | * 22 | * @no-named-arguments Parameter names are not covered by the backward compatibility promise. 23 | */ 24 | final class PHP80MigrationRiskySet extends AbstractMajorMinorDeprecationSetDefinition {} 25 | -------------------------------------------------------------------------------- /vendor/friendsofphp/php-cs-fixer/src/RuleSet/Sets/PHP82MigrationRiskySet.php: -------------------------------------------------------------------------------- 1 | 9 | * Dariusz Rumiński 10 | * 11 | * This source file is subject to the MIT license that is bundled 12 | * with this source code in the file LICENSE. 13 | */ 14 | 15 | namespace PhpCsFixer\RuleSet\Sets; 16 | 17 | use PhpCsFixer\RuleSet\AbstractMajorMinorDeprecationSetDefinition; 18 | 19 | /** 20 | * @internal 21 | * 22 | * @no-named-arguments Parameter names are not covered by the backward compatibility promise. 23 | */ 24 | final class PHP82MigrationRiskySet extends AbstractMajorMinorDeprecationSetDefinition {} 25 | -------------------------------------------------------------------------------- /vendor/kubawerlos/php-cs-fixer-custom-fixers/src/Analyzer/Analysis/CaseAnalysis.php: -------------------------------------------------------------------------------- 1 | colonIndex = $colonIndex; 24 | } 25 | 26 | public function getColonIndex(): int 27 | { 28 | return $this->colonIndex; 29 | } 30 | } 31 | -------------------------------------------------------------------------------- /vendor/symfony/http-client-contracts/ResponseStreamInterface.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\Contracts\HttpClient; 13 | 14 | /** 15 | * Yields response chunks, returned by HttpClientInterface::stream(). 16 | * 17 | * @author Nicolas Grekas 18 | * 19 | * @extends \Iterator 20 | */ 21 | interface ResponseStreamInterface extends \Iterator 22 | { 23 | public function key(): ResponseInterface; 24 | 25 | public function current(): ChunkInterface; 26 | } 27 | -------------------------------------------------------------------------------- /vendor/friendsofphp/php-cs-fixer/src/RuleSet/Sets/PHPUnit100MigrationRiskySet.php: -------------------------------------------------------------------------------- 1 | 9 | * Dariusz Rumiński 10 | * 11 | * This source file is subject to the MIT license that is bundled 12 | * with this source code in the file LICENSE. 13 | */ 14 | 15 | namespace PhpCsFixer\RuleSet\Sets; 16 | 17 | use PhpCsFixer\RuleSet\AbstractMajorMinorDeprecationSetDefinition; 18 | 19 | /** 20 | * @internal 21 | * 22 | * @no-named-arguments Parameter names are not covered by the backward compatibility promise. 23 | */ 24 | final class PHPUnit100MigrationRiskySet extends AbstractMajorMinorDeprecationSetDefinition {} 25 | -------------------------------------------------------------------------------- /vendor/friendsofphp/php-cs-fixer/src/RuleSet/Sets/PHPUnit30MigrationRiskySet.php: -------------------------------------------------------------------------------- 1 | 9 | * Dariusz Rumiński 10 | * 11 | * This source file is subject to the MIT license that is bundled 12 | * with this source code in the file LICENSE. 13 | */ 14 | 15 | namespace PhpCsFixer\RuleSet\Sets; 16 | 17 | use PhpCsFixer\RuleSet\AbstractMajorMinorDeprecationSetDefinition; 18 | 19 | /** 20 | * @internal 21 | * 22 | * @no-named-arguments Parameter names are not covered by the backward compatibility promise. 23 | */ 24 | final class PHPUnit30MigrationRiskySet extends AbstractMajorMinorDeprecationSetDefinition {} 25 | -------------------------------------------------------------------------------- /vendor/friendsofphp/php-cs-fixer/src/RuleSet/Sets/PHPUnit32MigrationRiskySet.php: -------------------------------------------------------------------------------- 1 | 9 | * Dariusz Rumiński 10 | * 11 | * This source file is subject to the MIT license that is bundled 12 | * with this source code in the file LICENSE. 13 | */ 14 | 15 | namespace PhpCsFixer\RuleSet\Sets; 16 | 17 | use PhpCsFixer\RuleSet\AbstractMajorMinorDeprecationSetDefinition; 18 | 19 | /** 20 | * @internal 21 | * 22 | * @no-named-arguments Parameter names are not covered by the backward compatibility promise. 23 | */ 24 | final class PHPUnit32MigrationRiskySet extends AbstractMajorMinorDeprecationSetDefinition {} 25 | -------------------------------------------------------------------------------- /vendor/friendsofphp/php-cs-fixer/src/RuleSet/Sets/PHPUnit35MigrationRiskySet.php: -------------------------------------------------------------------------------- 1 | 9 | * Dariusz Rumiński 10 | * 11 | * This source file is subject to the MIT license that is bundled 12 | * with this source code in the file LICENSE. 13 | */ 14 | 15 | namespace PhpCsFixer\RuleSet\Sets; 16 | 17 | use PhpCsFixer\RuleSet\AbstractMajorMinorDeprecationSetDefinition; 18 | 19 | /** 20 | * @internal 21 | * 22 | * @no-named-arguments Parameter names are not covered by the backward compatibility promise. 23 | */ 24 | final class PHPUnit35MigrationRiskySet extends AbstractMajorMinorDeprecationSetDefinition {} 25 | -------------------------------------------------------------------------------- /vendor/friendsofphp/php-cs-fixer/src/RuleSet/Sets/PHPUnit43MigrationRiskySet.php: -------------------------------------------------------------------------------- 1 | 9 | * Dariusz Rumiński 10 | * 11 | * This source file is subject to the MIT license that is bundled 12 | * with this source code in the file LICENSE. 13 | */ 14 | 15 | namespace PhpCsFixer\RuleSet\Sets; 16 | 17 | use PhpCsFixer\RuleSet\AbstractMajorMinorDeprecationSetDefinition; 18 | 19 | /** 20 | * @internal 21 | * 22 | * @no-named-arguments Parameter names are not covered by the backward compatibility promise. 23 | */ 24 | final class PHPUnit43MigrationRiskySet extends AbstractMajorMinorDeprecationSetDefinition {} 25 | -------------------------------------------------------------------------------- /vendor/friendsofphp/php-cs-fixer/src/RuleSet/Sets/PHPUnit48MigrationRiskySet.php: -------------------------------------------------------------------------------- 1 | 9 | * Dariusz Rumiński 10 | * 11 | * This source file is subject to the MIT license that is bundled 12 | * with this source code in the file LICENSE. 13 | */ 14 | 15 | namespace PhpCsFixer\RuleSet\Sets; 16 | 17 | use PhpCsFixer\RuleSet\AbstractMajorMinorDeprecationSetDefinition; 18 | 19 | /** 20 | * @internal 21 | * 22 | * @no-named-arguments Parameter names are not covered by the backward compatibility promise. 23 | */ 24 | final class PHPUnit48MigrationRiskySet extends AbstractMajorMinorDeprecationSetDefinition {} 25 | -------------------------------------------------------------------------------- /vendor/friendsofphp/php-cs-fixer/src/RuleSet/Sets/PHPUnit50MigrationRiskySet.php: -------------------------------------------------------------------------------- 1 | 9 | * Dariusz Rumiński 10 | * 11 | * This source file is subject to the MIT license that is bundled 12 | * with this source code in the file LICENSE. 13 | */ 14 | 15 | namespace PhpCsFixer\RuleSet\Sets; 16 | 17 | use PhpCsFixer\RuleSet\AbstractMajorMinorDeprecationSetDefinition; 18 | 19 | /** 20 | * @internal 21 | * 22 | * @no-named-arguments Parameter names are not covered by the backward compatibility promise. 23 | */ 24 | final class PHPUnit50MigrationRiskySet extends AbstractMajorMinorDeprecationSetDefinition {} 25 | -------------------------------------------------------------------------------- /vendor/friendsofphp/php-cs-fixer/src/RuleSet/Sets/PHPUnit52MigrationRiskySet.php: -------------------------------------------------------------------------------- 1 | 9 | * Dariusz Rumiński 10 | * 11 | * This source file is subject to the MIT license that is bundled 12 | * with this source code in the file LICENSE. 13 | */ 14 | 15 | namespace PhpCsFixer\RuleSet\Sets; 16 | 17 | use PhpCsFixer\RuleSet\AbstractMajorMinorDeprecationSetDefinition; 18 | 19 | /** 20 | * @internal 21 | * 22 | * @no-named-arguments Parameter names are not covered by the backward compatibility promise. 23 | */ 24 | final class PHPUnit52MigrationRiskySet extends AbstractMajorMinorDeprecationSetDefinition {} 25 | -------------------------------------------------------------------------------- /vendor/friendsofphp/php-cs-fixer/src/RuleSet/Sets/PHPUnit54MigrationRiskySet.php: -------------------------------------------------------------------------------- 1 | 9 | * Dariusz Rumiński 10 | * 11 | * This source file is subject to the MIT license that is bundled 12 | * with this source code in the file LICENSE. 13 | */ 14 | 15 | namespace PhpCsFixer\RuleSet\Sets; 16 | 17 | use PhpCsFixer\RuleSet\AbstractMajorMinorDeprecationSetDefinition; 18 | 19 | /** 20 | * @internal 21 | * 22 | * @no-named-arguments Parameter names are not covered by the backward compatibility promise. 23 | */ 24 | final class PHPUnit54MigrationRiskySet extends AbstractMajorMinorDeprecationSetDefinition {} 25 | -------------------------------------------------------------------------------- /vendor/friendsofphp/php-cs-fixer/src/RuleSet/Sets/PHPUnit55MigrationRiskySet.php: -------------------------------------------------------------------------------- 1 | 9 | * Dariusz Rumiński 10 | * 11 | * This source file is subject to the MIT license that is bundled 12 | * with this source code in the file LICENSE. 13 | */ 14 | 15 | namespace PhpCsFixer\RuleSet\Sets; 16 | 17 | use PhpCsFixer\RuleSet\AbstractMajorMinorDeprecationSetDefinition; 18 | 19 | /** 20 | * @internal 21 | * 22 | * @no-named-arguments Parameter names are not covered by the backward compatibility promise. 23 | */ 24 | final class PHPUnit55MigrationRiskySet extends AbstractMajorMinorDeprecationSetDefinition {} 25 | -------------------------------------------------------------------------------- /vendor/friendsofphp/php-cs-fixer/src/RuleSet/Sets/PHPUnit56MigrationRiskySet.php: -------------------------------------------------------------------------------- 1 | 9 | * Dariusz Rumiński 10 | * 11 | * This source file is subject to the MIT license that is bundled 12 | * with this source code in the file LICENSE. 13 | */ 14 | 15 | namespace PhpCsFixer\RuleSet\Sets; 16 | 17 | use PhpCsFixer\RuleSet\AbstractMajorMinorDeprecationSetDefinition; 18 | 19 | /** 20 | * @internal 21 | * 22 | * @no-named-arguments Parameter names are not covered by the backward compatibility promise. 23 | */ 24 | final class PHPUnit56MigrationRiskySet extends AbstractMajorMinorDeprecationSetDefinition {} 25 | -------------------------------------------------------------------------------- /vendor/friendsofphp/php-cs-fixer/src/RuleSet/Sets/PHPUnit57MigrationRiskySet.php: -------------------------------------------------------------------------------- 1 | 9 | * Dariusz Rumiński 10 | * 11 | * This source file is subject to the MIT license that is bundled 12 | * with this source code in the file LICENSE. 13 | */ 14 | 15 | namespace PhpCsFixer\RuleSet\Sets; 16 | 17 | use PhpCsFixer\RuleSet\AbstractMajorMinorDeprecationSetDefinition; 18 | 19 | /** 20 | * @internal 21 | * 22 | * @no-named-arguments Parameter names are not covered by the backward compatibility promise. 23 | */ 24 | final class PHPUnit57MigrationRiskySet extends AbstractMajorMinorDeprecationSetDefinition {} 25 | -------------------------------------------------------------------------------- /vendor/friendsofphp/php-cs-fixer/src/RuleSet/Sets/PHPUnit60MigrationRiskySet.php: -------------------------------------------------------------------------------- 1 | 9 | * Dariusz Rumiński 10 | * 11 | * This source file is subject to the MIT license that is bundled 12 | * with this source code in the file LICENSE. 13 | */ 14 | 15 | namespace PhpCsFixer\RuleSet\Sets; 16 | 17 | use PhpCsFixer\RuleSet\AbstractMajorMinorDeprecationSetDefinition; 18 | 19 | /** 20 | * @internal 21 | * 22 | * @no-named-arguments Parameter names are not covered by the backward compatibility promise. 23 | */ 24 | final class PHPUnit60MigrationRiskySet extends AbstractMajorMinorDeprecationSetDefinition {} 25 | -------------------------------------------------------------------------------- /vendor/friendsofphp/php-cs-fixer/src/RuleSet/Sets/PHPUnit75MigrationRiskySet.php: -------------------------------------------------------------------------------- 1 | 9 | * Dariusz Rumiński 10 | * 11 | * This source file is subject to the MIT license that is bundled 12 | * with this source code in the file LICENSE. 13 | */ 14 | 15 | namespace PhpCsFixer\RuleSet\Sets; 16 | 17 | use PhpCsFixer\RuleSet\AbstractMajorMinorDeprecationSetDefinition; 18 | 19 | /** 20 | * @internal 21 | * 22 | * @no-named-arguments Parameter names are not covered by the backward compatibility promise. 23 | */ 24 | final class PHPUnit75MigrationRiskySet extends AbstractMajorMinorDeprecationSetDefinition {} 25 | -------------------------------------------------------------------------------- /vendor/friendsofphp/php-cs-fixer/src/RuleSet/Sets/PHPUnit84MigrationRiskySet.php: -------------------------------------------------------------------------------- 1 | 9 | * Dariusz Rumiński 10 | * 11 | * This source file is subject to the MIT license that is bundled 12 | * with this source code in the file LICENSE. 13 | */ 14 | 15 | namespace PhpCsFixer\RuleSet\Sets; 16 | 17 | use PhpCsFixer\RuleSet\AbstractMajorMinorDeprecationSetDefinition; 18 | 19 | /** 20 | * @internal 21 | * 22 | * @no-named-arguments Parameter names are not covered by the backward compatibility promise. 23 | */ 24 | final class PHPUnit84MigrationRiskySet extends AbstractMajorMinorDeprecationSetDefinition {} 25 | -------------------------------------------------------------------------------- /vendor/friendsofphp/php-cs-fixer/src/RuleSet/Sets/PHPUnit91MigrationRiskySet.php: -------------------------------------------------------------------------------- 1 | 9 | * Dariusz Rumiński 10 | * 11 | * This source file is subject to the MIT license that is bundled 12 | * with this source code in the file LICENSE. 13 | */ 14 | 15 | namespace PhpCsFixer\RuleSet\Sets; 16 | 17 | use PhpCsFixer\RuleSet\AbstractMajorMinorDeprecationSetDefinition; 18 | 19 | /** 20 | * @internal 21 | * 22 | * @no-named-arguments Parameter names are not covered by the backward compatibility promise. 23 | */ 24 | final class PHPUnit91MigrationRiskySet extends AbstractMajorMinorDeprecationSetDefinition {} 25 | -------------------------------------------------------------------------------- /vendor/guzzlehttp/psr7/src/Rfc7230.php: -------------------------------------------------------------------------------- 1 | @,;:\\\"/[\]?={}\x01-\x20\x7F]++):[ \t]*+((?:[ \t]*+[\x21-\x7E\x80-\xFF]++)*+)[ \t]*+\r?\n)m"; 22 | public const HEADER_FOLD_REGEX = "(\r?\n[ \t]++)"; 23 | } 24 | -------------------------------------------------------------------------------- /vendor/symfony/service-contracts/ServiceCollectionInterface.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\Contracts\Service; 13 | 14 | /** 15 | * A ServiceProviderInterface that is also countable and iterable. 16 | * 17 | * @author Kevin Bond 18 | * 19 | * @template-covariant T of mixed 20 | * 21 | * @extends ServiceProviderInterface 22 | * @extends \IteratorAggregate 23 | */ 24 | interface ServiceCollectionInterface extends ServiceProviderInterface, \Countable, \IteratorAggregate 25 | { 26 | } 27 | -------------------------------------------------------------------------------- /vendor/friendsofphp/php-cs-fixer/src/PharCheckerInterface.php: -------------------------------------------------------------------------------- 1 | 9 | * Dariusz Rumiński 10 | * 11 | * This source file is subject to the MIT license that is bundled 12 | * with this source code in the file LICENSE. 13 | */ 14 | 15 | namespace PhpCsFixer; 16 | 17 | /** 18 | * @internal 19 | * 20 | * @no-named-arguments Parameter names are not covered by the backward compatibility promise. 21 | */ 22 | interface PharCheckerInterface 23 | { 24 | /** 25 | * @return null|string the invalidity reason if any, null otherwise 26 | */ 27 | public function checkFileValidity(string $filename): ?string; 28 | } 29 | -------------------------------------------------------------------------------- /vendor/friendsofphp/php-cs-fixer/src/ConfigurationException/RequiredFixerConfigurationException.php: -------------------------------------------------------------------------------- 1 | 9 | * Dariusz Rumiński 10 | * 11 | * This source file is subject to the MIT license that is bundled 12 | * with this source code in the file LICENSE. 13 | */ 14 | 15 | namespace PhpCsFixer\ConfigurationException; 16 | 17 | /** 18 | * @author Dariusz Rumiński 19 | * 20 | * @internal 21 | * 22 | * @no-named-arguments Parameter names are not covered by the backward compatibility promise. 23 | */ 24 | final class RequiredFixerConfigurationException extends InvalidFixerConfigurationException {} 25 | -------------------------------------------------------------------------------- /vendor/symfony/filesystem/Exception/IOExceptionInterface.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\Filesystem\Exception; 13 | 14 | /** 15 | * IOException interface for file and input/output stream related exceptions thrown by the component. 16 | * 17 | * @author Christian Gärtner 18 | */ 19 | interface IOExceptionInterface extends ExceptionInterface 20 | { 21 | /** 22 | * Returns the associated path for the exception. 23 | */ 24 | public function getPath(): ?string; 25 | } 26 | -------------------------------------------------------------------------------- /vendor/friendsofphp/php-cs-fixer/src/FixerDefinition/VersionSpecificCodeSampleInterface.php: -------------------------------------------------------------------------------- 1 | 9 | * Dariusz Rumiński 10 | * 11 | * This source file is subject to the MIT license that is bundled 12 | * with this source code in the file LICENSE. 13 | */ 14 | 15 | namespace PhpCsFixer\FixerDefinition; 16 | 17 | /** 18 | * @author Andreas Moeller 19 | * 20 | * @no-named-arguments Parameter names are not covered by the backward compatibility promise. 21 | */ 22 | interface VersionSpecificCodeSampleInterface extends CodeSampleInterface 23 | { 24 | public function isSuitableFor(int $version): bool; 25 | } 26 | -------------------------------------------------------------------------------- /vendor/psr/http-client/src/NetworkExceptionInterface.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\Contracts\Service\Attribute; 13 | 14 | /** 15 | * A required dependency. 16 | * 17 | * This attribute indicates that a property holds a required dependency. The annotated property or method should be 18 | * considered during the instantiation process of the containing class. 19 | * 20 | * @author Alexander M. Turek 21 | */ 22 | #[\Attribute(\Attribute::TARGET_METHOD | \Attribute::TARGET_PROPERTY)] 23 | final class Required 24 | { 25 | } 26 | -------------------------------------------------------------------------------- /vendor/friendsofphp/php-cs-fixer/src/ConfigurationException/InvalidForEnvFixerConfigurationException.php: -------------------------------------------------------------------------------- 1 | 9 | * Dariusz Rumiński 10 | * 11 | * This source file is subject to the MIT license that is bundled 12 | * with this source code in the file LICENSE. 13 | */ 14 | 15 | namespace PhpCsFixer\ConfigurationException; 16 | 17 | /** 18 | * @author Dariusz Rumiński 19 | * 20 | * @internal 21 | * 22 | * @no-named-arguments Parameter names are not covered by the backward compatibility promise. 23 | */ 24 | final class InvalidForEnvFixerConfigurationException extends InvalidFixerConfigurationException {} 25 | -------------------------------------------------------------------------------- /vendor/php-feed-io/feed-io/examples/media-reading.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 | require __DIR__.DIRECTORY_SEPARATOR.'bootstrap.php'; 12 | 13 | $client = new \FeedIo\Adapter\FileSystem\Client(); 14 | 15 | $logger = new \Psr\Log\NullLogger(); 16 | 17 | $feedIo = new \FeedIo\FeedIo($client, $logger); 18 | 19 | $result = $feedIo->read(dirname(__FILE__).'/../tests/samples/enclosure-atom.xml'); 20 | 21 | $feed = $result->getFeed(); 22 | 23 | foreach($feed as $item) { 24 | foreach($item->getMedias() as $media) { 25 | var_dump($media); 26 | } 27 | } 28 | -------------------------------------------------------------------------------- /vendor/composer/autoload_files.php: -------------------------------------------------------------------------------- 1 | $vendorDir . '/react/promise/src/functions_include.php', 10 | '6e3fae29631ef280660b3cdad06f25a8' => $vendorDir . '/symfony/deprecation-contracts/function.php', 11 | '9d2b9fc6db0f153a0a149fefb182415e' => $vendorDir . '/symfony/polyfill-php84/bootstrap.php', 12 | '7b11c4dc42b3b3023073cb14e519683c' => $vendorDir . '/ralouphie/getallheaders/src/getallheaders.php', 13 | '37a3dc5111fe8f707ab4c132ef1dbc62' => $vendorDir . '/guzzlehttp/guzzle/src/functions_include.php', 14 | '662a729f963d39afe703c9d9b7ab4a8c' => $vendorDir . '/symfony/polyfill-php83/bootstrap.php', 15 | ); 16 | -------------------------------------------------------------------------------- /vendor/evenement/evenement/composer.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "evenement/evenement", 3 | "description": "Événement is a very simple event dispatching library for PHP", 4 | "keywords": ["event-dispatcher", "event-emitter"], 5 | "license": "MIT", 6 | "authors": [ 7 | { 8 | "name": "Igor Wiedler", 9 | "email": "igor@wiedler.ch" 10 | } 11 | ], 12 | "require": { 13 | "php": ">=7.0" 14 | }, 15 | "require-dev": { 16 | "phpunit/phpunit": "^9 || ^6" 17 | }, 18 | "autoload": { 19 | "psr-4": { 20 | "Evenement\\": "src/" 21 | } 22 | }, 23 | "autoload-dev": { 24 | "psr-4": { 25 | "Evenement\\Tests\\": "tests/" 26 | }, 27 | "files": ["tests/functions.php"] 28 | } 29 | } 30 | -------------------------------------------------------------------------------- /vendor/friendsofphp/php-cs-fixer/src/ConfigurationException/UnresolvableAutoRuleSetConfigurationException.php: -------------------------------------------------------------------------------- 1 | 9 | * Dariusz Rumiński 10 | * 11 | * This source file is subject to the MIT license that is bundled 12 | * with this source code in the file LICENSE. 13 | */ 14 | 15 | namespace PhpCsFixer\ConfigurationException; 16 | 17 | /** 18 | * @author Dariusz Rumiński 19 | * 20 | * @internal 21 | * 22 | * @no-named-arguments Parameter names are not covered by the backward compatibility promise. 23 | */ 24 | final class UnresolvableAutoRuleSetConfigurationException extends InvalidConfigurationException {} 25 | -------------------------------------------------------------------------------- /vendor/friendsofphp/php-cs-fixer/src/Differ/DifferInterface.php: -------------------------------------------------------------------------------- 1 | 9 | * Dariusz Rumiński 10 | * 11 | * This source file is subject to the MIT license that is bundled 12 | * with this source code in the file LICENSE. 13 | */ 14 | 15 | namespace PhpCsFixer\Differ; 16 | 17 | /** 18 | * @author Dariusz Rumiński 19 | * 20 | * @no-named-arguments Parameter names are not covered by the backward compatibility promise. 21 | */ 22 | interface DifferInterface 23 | { 24 | /** 25 | * Create diff. 26 | */ 27 | public function diff(string $old, string $new, ?\SplFileInfo $file = null): string; 28 | } 29 | -------------------------------------------------------------------------------- /vendor/guzzlehttp/guzzle/src/Handler/CurlFactoryInterface.php: -------------------------------------------------------------------------------- 1 | =8.4" 20 | }, 21 | "autoload": { 22 | "psr-4": { "Symfony\\Component\\Process\\": "" }, 23 | "exclude-from-classmap": [ 24 | "/Tests/" 25 | ] 26 | }, 27 | "minimum-stability": "dev" 28 | } 29 | -------------------------------------------------------------------------------- /package.yml: -------------------------------------------------------------------------------- 1 | package: feeds 2 | version: '6.0.2' 3 | author: Friends Of REDAXO 4 | supportpage: https://github.com/FriendsOfREDAXO/feeds 5 | 6 | page: 7 | title: 'translate:feeds' 8 | perm: feeds[] 9 | pjax: true 10 | icon: rex-icon fa-rss 11 | subpages: 12 | streams: 13 | title: 'translate:streams' 14 | items: 15 | title: 'translate:items' 16 | help: 17 | title: 'translate:help' 18 | perm: admin[] 19 | pjax: false 20 | subPath: README.md 21 | itemClass: pull-right 22 | 23 | requires: 24 | redaxo: '^5.14' 25 | php: 26 | version: '>=8.2' 27 | packages: 28 | media_manager: '^2' 29 | 30 | conflicts: 31 | packages: 32 | yfeed: '<=1.3.0' 33 | feeds: '<4.0.0-dev' 34 | -------------------------------------------------------------------------------- /vendor/friendsofphp/php-cs-fixer/src/Differ/NullDiffer.php: -------------------------------------------------------------------------------- 1 | 9 | * Dariusz Rumiński 10 | * 11 | * This source file is subject to the MIT license that is bundled 12 | * with this source code in the file LICENSE. 13 | */ 14 | 15 | namespace PhpCsFixer\Differ; 16 | 17 | /** 18 | * @author Dariusz Rumiński 19 | * 20 | * @no-named-arguments Parameter names are not covered by the backward compatibility promise. 21 | */ 22 | final class NullDiffer implements DifferInterface 23 | { 24 | public function diff(string $old, string $new, ?\SplFileInfo $file = null): string 25 | { 26 | return ''; 27 | } 28 | } 29 | -------------------------------------------------------------------------------- /vendor/php-http/httplug/src/HttpAsyncClient.php: -------------------------------------------------------------------------------- 1 | 12 | */ 13 | interface HttpAsyncClient 14 | { 15 | /** 16 | * Sends a PSR-7 request in an asynchronous way. 17 | * 18 | * Exceptions related to processing the request are available from the returned Promise. 19 | * 20 | * @return Promise resolves a PSR-7 Response or fails with an Http\Client\Exception 21 | * 22 | * @throws \Exception If processing the request is impossible (eg. bad configuration). 23 | */ 24 | public function sendAsyncRequest(RequestInterface $request); 25 | } 26 | -------------------------------------------------------------------------------- /vendor/symfony/process/Exception/RunProcessFailedException.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\Process\Exception; 13 | 14 | use Symfony\Component\Process\Messenger\RunProcessContext; 15 | 16 | /** 17 | * @author Kevin Bond 18 | */ 19 | final class RunProcessFailedException extends RuntimeException 20 | { 21 | public function __construct(ProcessFailedException $exception, public readonly RunProcessContext $context) 22 | { 23 | parent::__construct($exception->getMessage(), $exception->getCode()); 24 | } 25 | } 26 | -------------------------------------------------------------------------------- /vendor/friendsofphp/php-cs-fixer/src/FixerDefinition/FileSpecificCodeSampleInterface.php: -------------------------------------------------------------------------------- 1 | 9 | * Dariusz Rumiński 10 | * 11 | * This source file is subject to the MIT license that is bundled 12 | * with this source code in the file LICENSE. 13 | */ 14 | 15 | namespace PhpCsFixer\FixerDefinition; 16 | 17 | /** 18 | * @author Dariusz Rumiński 19 | * 20 | * @internal 21 | * 22 | * @no-named-arguments Parameter names are not covered by the backward compatibility promise. 23 | */ 24 | interface FileSpecificCodeSampleInterface extends CodeSampleInterface 25 | { 26 | public function getSplFileInfo(): \SplFileInfo; 27 | } 28 | -------------------------------------------------------------------------------- /vendor/php-feed-io/feed-io/tests/FeedIo/Feed/ElementsAwareTraitTest.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 FeedIo\Feed; 12 | 13 | use PHPUnit\Framework\TestCase; 14 | 15 | class ElementsAwareTraitTest extends TestCase 16 | { 17 | public function testGetElementsAsGenerator() 18 | { 19 | $object = new ElementsAwareClass(); 20 | $object->set('foo', 'bar'); 21 | 22 | $elements = $object->getElementsGenerator(); 23 | 24 | $this->assertEquals('foo', $elements->key()); 25 | $this->assertEquals('bar', $elements->current()); 26 | } 27 | } 28 | -------------------------------------------------------------------------------- /vendor/friendsofphp/php-cs-fixer/src/Linter/LintingResultInterface.php: -------------------------------------------------------------------------------- 1 | 9 | * Dariusz Rumiński 10 | * 11 | * This source file is subject to the MIT license that is bundled 12 | * with this source code in the file LICENSE. 13 | */ 14 | 15 | namespace PhpCsFixer\Linter; 16 | 17 | /** 18 | * @author Dariusz Rumiński 19 | * 20 | * @no-named-arguments Parameter names are not covered by the backward compatibility promise. 21 | */ 22 | interface LintingResultInterface 23 | { 24 | /** 25 | * Check if linting process was successful and raise LintingException if not. 26 | */ 27 | public function check(): void; 28 | } 29 | -------------------------------------------------------------------------------- /vendor/madcoda/php-youtube-api/src/Constants.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 | if (\PHP_VERSION_ID < 80400) { 13 | #[Attribute(Attribute::TARGET_METHOD | Attribute::TARGET_FUNCTION | Attribute::TARGET_CLASS_CONSTANT)] 14 | final class Deprecated 15 | { 16 | public readonly ?string $message; 17 | public readonly ?string $since; 18 | 19 | public function __construct(?string $message = null, ?string $since = null) 20 | { 21 | $this->message = $message; 22 | $this->since = $since; 23 | } 24 | } 25 | } 26 | -------------------------------------------------------------------------------- /vendor/autoload.php: -------------------------------------------------------------------------------- 1 | 9 | * Dariusz Rumiński 10 | * 11 | * This source file is subject to the MIT license that is bundled 12 | * with this source code in the file LICENSE. 13 | */ 14 | 15 | namespace PhpCsFixer\Console\Output\Progress; 16 | 17 | use PhpCsFixer\Runner\Event\FileProcessed; 18 | 19 | /** 20 | * @internal 21 | * 22 | * @no-named-arguments Parameter names are not covered by the backward compatibility promise. 23 | */ 24 | interface ProgressOutputInterface 25 | { 26 | public function printLegend(): void; 27 | 28 | public function onFixerFileProcessed(FileProcessed $event): void; 29 | } 30 | -------------------------------------------------------------------------------- /vendor/friendsofphp/php-cs-fixer/src/Fixer/WhitespacesAwareFixerInterface.php: -------------------------------------------------------------------------------- 1 | 9 | * Dariusz Rumiński 10 | * 11 | * This source file is subject to the MIT license that is bundled 12 | * with this source code in the file LICENSE. 13 | */ 14 | 15 | namespace PhpCsFixer\Fixer; 16 | 17 | use PhpCsFixer\WhitespacesFixerConfig; 18 | 19 | /** 20 | * @author Dariusz Rumiński 21 | * 22 | * @no-named-arguments Parameter names are not covered by the backward compatibility promise. 23 | */ 24 | interface WhitespacesAwareFixerInterface extends FixerInterface 25 | { 26 | public function setWhitespacesConfig(WhitespacesFixerConfig $config): void; 27 | } 28 | -------------------------------------------------------------------------------- /vendor/friendsofphp/php-cs-fixer/src/FixerConfiguration/InvalidOptionsForEnvException.php: -------------------------------------------------------------------------------- 1 | 9 | * Dariusz Rumiński 10 | * 11 | * This source file is subject to the MIT license that is bundled 12 | * with this source code in the file LICENSE. 13 | */ 14 | 15 | namespace PhpCsFixer\FixerConfiguration; 16 | 17 | use Symfony\Component\OptionsResolver\Exception\InvalidOptionsException; 18 | 19 | /** 20 | * @author Dariusz Rumiński 21 | * 22 | * @internal 23 | * 24 | * @no-named-arguments Parameter names are not covered by the backward compatibility promise. 25 | */ 26 | final class InvalidOptionsForEnvException extends InvalidOptionsException {} 27 | -------------------------------------------------------------------------------- /vendor/madcoda/php-youtube-api/phpunit.xml.dist: -------------------------------------------------------------------------------- 1 | 2 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | tests 17 | 18 | 19 | 20 | 21 | 22 | src 23 | 24 | 25 | 26 | -------------------------------------------------------------------------------- /vendor/php-feed-io/feed-io/tests/samples/rss/truncated-rss.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | RSS Title 5 | This is an example of an RSS feed 6 | http://www.someexamplerssdomain.com/main.html 7 | 1800 8 | RSS Title 9 | 10 | 11 | Example entry 12 | Here is some text containing an interesting description. 13 | http://www.wikipedia.org/ 14 | unique string per item 15 | Mon, 06 Sep 2009 16:45:00 +0000 16 | 17 | 18 | 19 | 20 | -------------------------------------------------------------------------------- /vendor/friendsofphp/php-cs-fixer/src/Cache/FileHandlerInterface.php: -------------------------------------------------------------------------------- 1 | 9 | * Dariusz Rumiński 10 | * 11 | * This source file is subject to the MIT license that is bundled 12 | * with this source code in the file LICENSE. 13 | */ 14 | 15 | namespace PhpCsFixer\Cache; 16 | 17 | /** 18 | * @author Andreas Möller 19 | * 20 | * @internal 21 | * 22 | * @no-named-arguments Parameter names are not covered by the backward compatibility promise. 23 | */ 24 | interface FileHandlerInterface 25 | { 26 | public function getFile(): string; 27 | 28 | public function read(): ?CacheInterface; 29 | 30 | public function write(CacheInterface $cache): void; 31 | } 32 | -------------------------------------------------------------------------------- /vendor/symfony/finder/Iterator/LazyIterator.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\Finder\Iterator; 13 | 14 | /** 15 | * @author Jérémy Derussé 16 | * 17 | * @internal 18 | */ 19 | class LazyIterator implements \IteratorAggregate 20 | { 21 | private \Closure $iteratorFactory; 22 | 23 | public function __construct(callable $iteratorFactory) 24 | { 25 | $this->iteratorFactory = $iteratorFactory(...); 26 | } 27 | 28 | public function getIterator(): \Traversable 29 | { 30 | yield from ($this->iteratorFactory)(); 31 | } 32 | } 33 | -------------------------------------------------------------------------------- /vendor/friendsofphp/php-cs-fixer/src/FixerDefinition/CodeSampleInterface.php: -------------------------------------------------------------------------------- 1 | 9 | * Dariusz Rumiński 10 | * 11 | * This source file is subject to the MIT license that is bundled 12 | * with this source code in the file LICENSE. 13 | */ 14 | 15 | namespace PhpCsFixer\FixerDefinition; 16 | 17 | /** 18 | * @author Dariusz Rumiński 19 | * 20 | * @no-named-arguments Parameter names are not covered by the backward compatibility promise. 21 | */ 22 | interface CodeSampleInterface 23 | { 24 | public function getCode(): string; 25 | 26 | /** 27 | * @return null|array 28 | */ 29 | public function getConfiguration(): ?array; 30 | } 31 | -------------------------------------------------------------------------------- /vendor/friendsofphp/php-cs-fixer/src/Linter/UnavailableLinterException.php: -------------------------------------------------------------------------------- 1 | 9 | * Dariusz Rumiński 10 | * 11 | * This source file is subject to the MIT license that is bundled 12 | * with this source code in the file LICENSE. 13 | */ 14 | 15 | namespace PhpCsFixer\Linter; 16 | 17 | /** 18 | * Exception that is thrown when the chosen linter is not available on the environment. 19 | * 20 | * @author Dariusz Rumiński 21 | * 22 | * @final 23 | * 24 | * @TODO 4.0 make class "final" 25 | * 26 | * @no-named-arguments Parameter names are not covered by the backward compatibility promise. 27 | */ 28 | class UnavailableLinterException extends \RuntimeException {} 29 | -------------------------------------------------------------------------------- /vendor/symfony/stopwatch/composer.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "symfony/stopwatch", 3 | "type": "library", 4 | "description": "Provides a way to profile code", 5 | "keywords": [], 6 | "homepage": "https://symfony.com", 7 | "license": "MIT", 8 | "authors": [ 9 | { 10 | "name": "Fabien Potencier", 11 | "email": "fabien@symfony.com" 12 | }, 13 | { 14 | "name": "Symfony Community", 15 | "homepage": "https://symfony.com/contributors" 16 | } 17 | ], 18 | "require": { 19 | "php": ">=8.4", 20 | "symfony/service-contracts": "^2.5|^3" 21 | }, 22 | "autoload": { 23 | "psr-4": { "Symfony\\Component\\Stopwatch\\": "" }, 24 | "exclude-from-classmap": [ 25 | "/Tests/" 26 | ] 27 | }, 28 | "minimum-stability": "dev" 29 | } 30 | -------------------------------------------------------------------------------- /vendor/composer/pcre/extension.neon: -------------------------------------------------------------------------------- 1 | # composer/pcre PHPStan extensions 2 | # 3 | # These can be reused by third party packages by including 'vendor/composer/pcre/extension.neon' 4 | # in your phpstan config 5 | 6 | services: 7 | - 8 | class: Composer\Pcre\PHPStan\PregMatchParameterOutTypeExtension 9 | tags: 10 | - phpstan.staticMethodParameterOutTypeExtension 11 | - 12 | class: Composer\Pcre\PHPStan\PregMatchTypeSpecifyingExtension 13 | tags: 14 | - phpstan.typeSpecifier.staticMethodTypeSpecifyingExtension 15 | - 16 | class: Composer\Pcre\PHPStan\PregReplaceCallbackClosureTypeExtension 17 | tags: 18 | - phpstan.staticMethodParameterClosureTypeExtension 19 | 20 | rules: 21 | - Composer\Pcre\PHPStan\UnsafeStrictGroupsCallRule 22 | - Composer\Pcre\PHPStan\InvalidRegexPatternRule 23 | -------------------------------------------------------------------------------- /vendor/symfony/http-client/Chunk/InformationalChunk.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\HttpClient\Chunk; 13 | 14 | /** 15 | * @author Nicolas Grekas 16 | * 17 | * @internal 18 | */ 19 | class InformationalChunk extends DataChunk 20 | { 21 | private array $status; 22 | 23 | public function __construct(int $statusCode, array $headers) 24 | { 25 | $this->status = [$statusCode, $headers]; 26 | 27 | parent::__construct(); 28 | } 29 | 30 | public function getInformationalStatus(): ?array 31 | { 32 | return $this->status; 33 | } 34 | } 35 | -------------------------------------------------------------------------------- /vendor/friendsofphp/php-cs-fixer/src/Fixer/DeprecatedFixerInterface.php: -------------------------------------------------------------------------------- 1 | 9 | * Dariusz Rumiński 10 | * 11 | * This source file is subject to the MIT license that is bundled 12 | * with this source code in the file LICENSE. 13 | */ 14 | 15 | namespace PhpCsFixer\Fixer; 16 | 17 | /** 18 | * @author Kuba Werłos 19 | * 20 | * @no-named-arguments Parameter names are not covered by the backward compatibility promise. 21 | */ 22 | interface DeprecatedFixerInterface extends FixerInterface 23 | { 24 | /** 25 | * Returns names of fixers to use instead, if any. 26 | * 27 | * @return list 28 | */ 29 | public function getSuccessorsNames(): array; 30 | } 31 | -------------------------------------------------------------------------------- /vendor/php-feed-io/feed-io/tests/samples/discovery-dualprotocol.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /vendor/symfony/http-client/Internal/PushedResponse.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\HttpClient\Internal; 13 | 14 | use Symfony\Component\HttpClient\Response\CurlResponse; 15 | 16 | /** 17 | * A pushed response with its request headers. 18 | * 19 | * @author Alexander M. Turek 20 | * 21 | * @internal 22 | */ 23 | final class PushedResponse 24 | { 25 | public function __construct( 26 | public CurlResponse $response, 27 | public array $requestHeaders, 28 | public array $parentOptions, 29 | public \CurlHandle $handle, 30 | ) { 31 | } 32 | } 33 | -------------------------------------------------------------------------------- /vendor/symfony/options-resolver/Exception/NoConfigurationException.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\OptionsResolver\Exception; 13 | 14 | use Symfony\Component\OptionsResolver\Debug\OptionsResolverIntrospector; 15 | 16 | /** 17 | * Thrown when trying to introspect an option definition property 18 | * for which no value was configured inside the OptionsResolver instance. 19 | * 20 | * @see OptionsResolverIntrospector 21 | * 22 | * @author Maxime Steinhausser 23 | */ 24 | class NoConfigurationException extends \RuntimeException implements ExceptionInterface 25 | { 26 | } 27 | -------------------------------------------------------------------------------- /vendor/php-feed-io/feed-io/src/FeedIo/Parser/UrlGenerator.php: -------------------------------------------------------------------------------- 1 | generateAbsolutePath($host, $path); 18 | } 19 | return $path; 20 | } 21 | 22 | /** 23 | * @param string $host 24 | * @param string $path 25 | * @return string 26 | */ 27 | public function generateAbsolutePath(string $host, string $path): string 28 | { 29 | $path = substr($path, 0, 1) == '/' ? $path : "/{$path}"; 30 | return $host . $path; 31 | } 32 | } 33 | -------------------------------------------------------------------------------- /vendor/psr/http-client/composer.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "psr/http-client", 3 | "description": "Common interface for HTTP clients", 4 | "keywords": ["psr", "psr-18", "http", "http-client"], 5 | "homepage": "https://github.com/php-fig/http-client", 6 | "license": "MIT", 7 | "authors": [ 8 | { 9 | "name": "PHP-FIG", 10 | "homepage": "https://www.php-fig.org/" 11 | } 12 | ], 13 | "support": { 14 | "source": "https://github.com/php-fig/http-client" 15 | }, 16 | "require": { 17 | "php": "^7.0 || ^8.0", 18 | "psr/http-message": "^1.0 || ^2.0" 19 | }, 20 | "autoload": { 21 | "psr-4": { 22 | "Psr\\Http\\Client\\": "src/" 23 | } 24 | }, 25 | "extra": { 26 | "branch-alias": { 27 | "dev-master": "1.0.x-dev" 28 | } 29 | } 30 | } 31 | -------------------------------------------------------------------------------- /vendor/madcoda/php-youtube-api/composer.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "madcoda/php-youtube-api", 3 | "type": "library", 4 | "description": "PHP wrapper for the Youtube Data API v3", 5 | "keywords": ["youtube", "api", "video", "madcoda"], 6 | "license": "MIT", 7 | "authors": [ 8 | { 9 | "name": "Madcoda", 10 | "email": "jason@madcoda.com" 11 | } 12 | ], 13 | "support":{ 14 | "email":"jason@madcoda.com", 15 | "issues":"https://github.com/madcoda/php-youtube-api/issues" 16 | }, 17 | "require": { 18 | "php" : ">=7.0", 19 | "ext-curl": "*" 20 | }, 21 | "require-dev":{ 22 | "phpunit/phpunit": "^5.7" 23 | }, 24 | "autoload": { 25 | "psr-4": { 26 | "Madcoda\\Youtube\\": "src" 27 | }, 28 | "classmap": ["src/compat.php"] 29 | } 30 | } 31 | -------------------------------------------------------------------------------- /vendor/symfony/stopwatch/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | CHANGELOG 2 | ========= 3 | 4 | 7.2 5 | --- 6 | 7 | * Add method `getLastPeriod()` to `StopwatchEvent` 8 | * Add `getRootSectionEvents()` method and `ROOT` constant to `Stopwatch` 9 | 10 | 5.2 11 | --- 12 | 13 | * Add `name` argument to the `StopWatchEvent` constructor, accessible via a new `StopwatchEvent::getName()` 14 | 15 | 5.0.0 16 | ----- 17 | 18 | * Removed support for passing `null` as 1st (`$id`) argument of `Section::get()` method, pass a valid child section identifier instead. 19 | 20 | 4.4.0 21 | ----- 22 | 23 | * Deprecated passing `null` as 1st (`$id`) argument of `Section::get()` method, pass a valid child section identifier instead. 24 | 25 | 3.4.0 26 | ----- 27 | 28 | * added the `Stopwatch::reset()` method 29 | * allowed to measure sub-millisecond times by introducing an argument to the 30 | constructor of `Stopwatch` 31 | -------------------------------------------------------------------------------- /vendor/friendsofphp/php-cs-fixer/src/RuleSet/Sets/PHP5x4MigrationSet.php: -------------------------------------------------------------------------------- 1 | 9 | * Dariusz Rumiński 10 | * 11 | * This source file is subject to the MIT license that is bundled 12 | * with this source code in the file LICENSE. 13 | */ 14 | 15 | namespace PhpCsFixer\RuleSet\Sets; 16 | 17 | use PhpCsFixer\RuleSet\AbstractMigrationSetDefinition; 18 | 19 | /** 20 | * @internal 21 | * 22 | * @no-named-arguments Parameter names are not covered by the backward compatibility promise. 23 | */ 24 | final class PHP5x4MigrationSet extends AbstractMigrationSetDefinition 25 | { 26 | public function getRules(): array 27 | { 28 | return [ 29 | 'array_syntax' => true, 30 | ]; 31 | } 32 | } 33 | -------------------------------------------------------------------------------- /vendor/php-feed-io/feed-io/examples/test-async.php: -------------------------------------------------------------------------------- 1 | readAsync($requests, new \FeedIo\Async\DefaultCallback($logger)); 21 | -------------------------------------------------------------------------------- /vendor/php-feed-io/feed-io/tests/samples/discovery.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /vendor/friendsofphp/php-cs-fixer/src/Console/Output/Progress/NullOutput.php: -------------------------------------------------------------------------------- 1 | 9 | * Dariusz Rumiński 10 | * 11 | * This source file is subject to the MIT license that is bundled 12 | * with this source code in the file LICENSE. 13 | */ 14 | 15 | namespace PhpCsFixer\Console\Output\Progress; 16 | 17 | use PhpCsFixer\Runner\Event\FileProcessed; 18 | 19 | /** 20 | * @readonly 21 | * 22 | * @internal 23 | * 24 | * @no-named-arguments Parameter names are not covered by the backward compatibility promise. 25 | */ 26 | final class NullOutput implements ProgressOutputInterface 27 | { 28 | public function printLegend(): void {} 29 | 30 | public function onFixerFileProcessed(FileProcessed $event): void {} 31 | } 32 | -------------------------------------------------------------------------------- /vendor/friendsofphp/php-cs-fixer/src/RuleSet/Sets/PHP8x3MigrationSet.php: -------------------------------------------------------------------------------- 1 | 9 | * Dariusz Rumiński 10 | * 11 | * This source file is subject to the MIT license that is bundled 12 | * with this source code in the file LICENSE. 13 | */ 14 | 15 | namespace PhpCsFixer\RuleSet\Sets; 16 | 17 | use PhpCsFixer\RuleSet\AbstractMigrationSetDefinition; 18 | 19 | /** 20 | * @internal 21 | * 22 | * @no-named-arguments Parameter names are not covered by the backward compatibility promise. 23 | */ 24 | final class PHP8x3MigrationSet extends AbstractMigrationSetDefinition 25 | { 26 | public function getRules(): array 27 | { 28 | return [ 29 | '@PHP8x2Migration' => true, 30 | ]; 31 | } 32 | } 33 | -------------------------------------------------------------------------------- /vendor/symfony/http-client/Messenger/PingWebhookMessage.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\HttpClient\Messenger; 13 | 14 | /** 15 | * @author Kevin Bond 16 | */ 17 | final class PingWebhookMessage implements \Stringable 18 | { 19 | public function __construct( 20 | public readonly string $method, 21 | public readonly string $url, 22 | public readonly array $options = [], 23 | public readonly bool $throw = true, 24 | ) { 25 | } 26 | 27 | public function __toString(): string 28 | { 29 | return "[{$this->method}] {$this->url}"; 30 | } 31 | } 32 | -------------------------------------------------------------------------------- /vendor/php-feed-io/feed-io/tests/samples/discovery-https.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /vendor/symfony/http-client/Internal/DnsCache.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\HttpClient\Internal; 13 | 14 | /** 15 | * Cache for resolved DNS queries. 16 | * 17 | * @author Alexander M. Turek 18 | * 19 | * @internal 20 | */ 21 | final class DnsCache 22 | { 23 | /** 24 | * Resolved hostnames (hostname => IP address). 25 | * 26 | * @var string[] 27 | */ 28 | public array $hostnames = []; 29 | 30 | /** 31 | * @var string[] 32 | */ 33 | public array $removals = []; 34 | 35 | /** 36 | * @var string[] 37 | */ 38 | public array $evictions = []; 39 | } 40 | -------------------------------------------------------------------------------- /vendor/fidry/cpu-core-counter/src/Finder/NullCpuCoreFinder.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 | declare(strict_types=1); 13 | 14 | namespace Fidry\CpuCoreCounter\Finder; 15 | 16 | /** 17 | * This finder returns whatever value you gave to it. This is useful for testing. 18 | */ 19 | final class NullCpuCoreFinder implements CpuCoreFinder 20 | { 21 | public function diagnose(): string 22 | { 23 | return 'Will return "null".'; 24 | } 25 | 26 | public function find(): ?int 27 | { 28 | return null; 29 | } 30 | 31 | public function toString(): string 32 | { 33 | return 'NullCpuCoreFinder'; 34 | } 35 | } 36 | -------------------------------------------------------------------------------- /vendor/friendsofphp/php-cs-fixer/src/RuleSet/Sets/PHP5x6MigrationRiskySet.php: -------------------------------------------------------------------------------- 1 | 9 | * Dariusz Rumiński 10 | * 11 | * This source file is subject to the MIT license that is bundled 12 | * with this source code in the file LICENSE. 13 | */ 14 | 15 | namespace PhpCsFixer\RuleSet\Sets; 16 | 17 | use PhpCsFixer\RuleSet\AbstractMigrationSetDefinition; 18 | 19 | /** 20 | * @internal 21 | * 22 | * @no-named-arguments Parameter names are not covered by the backward compatibility promise. 23 | */ 24 | final class PHP5x6MigrationRiskySet extends AbstractMigrationSetDefinition 25 | { 26 | public function getRules(): array 27 | { 28 | return [ 29 | 'pow_to_exponentiation' => true, 30 | ]; 31 | } 32 | } 33 | -------------------------------------------------------------------------------- /vendor/friendsofphp/php-cs-fixer/src/RuleSet/Sets/PHP8x1MigrationRiskySet.php: -------------------------------------------------------------------------------- 1 | 9 | * Dariusz Rumiński 10 | * 11 | * This source file is subject to the MIT license that is bundled 12 | * with this source code in the file LICENSE. 13 | */ 14 | 15 | namespace PhpCsFixer\RuleSet\Sets; 16 | 17 | use PhpCsFixer\RuleSet\AbstractMigrationSetDefinition; 18 | 19 | /** 20 | * @internal 21 | * 22 | * @no-named-arguments Parameter names are not covered by the backward compatibility promise. 23 | */ 24 | final class PHP8x1MigrationRiskySet extends AbstractMigrationSetDefinition 25 | { 26 | public function getRules(): array 27 | { 28 | return [ 29 | '@PHP8x0Migration:risky' => true, 30 | ]; 31 | } 32 | } 33 | -------------------------------------------------------------------------------- /vendor/friendsofphp/php-cs-fixer/src/RuleSet/Sets/PHP8x3MigrationRiskySet.php: -------------------------------------------------------------------------------- 1 | 9 | * Dariusz Rumiński 10 | * 11 | * This source file is subject to the MIT license that is bundled 12 | * with this source code in the file LICENSE. 13 | */ 14 | 15 | namespace PhpCsFixer\RuleSet\Sets; 16 | 17 | use PhpCsFixer\RuleSet\AbstractMigrationSetDefinition; 18 | 19 | /** 20 | * @internal 21 | * 22 | * @no-named-arguments Parameter names are not covered by the backward compatibility promise. 23 | */ 24 | final class PHP8x3MigrationRiskySet extends AbstractMigrationSetDefinition 25 | { 26 | public function getRules(): array 27 | { 28 | return [ 29 | '@PHP8x2Migration:risky' => true, 30 | ]; 31 | } 32 | } 33 | -------------------------------------------------------------------------------- /vendor/friendsofphp/php-cs-fixer/src/RuleSet/Sets/PHP8x4MigrationRiskySet.php: -------------------------------------------------------------------------------- 1 | 9 | * Dariusz Rumiński 10 | * 11 | * This source file is subject to the MIT license that is bundled 12 | * with this source code in the file LICENSE. 13 | */ 14 | 15 | namespace PhpCsFixer\RuleSet\Sets; 16 | 17 | use PhpCsFixer\RuleSet\AbstractMigrationSetDefinition; 18 | 19 | /** 20 | * @internal 21 | * 22 | * @no-named-arguments Parameter names are not covered by the backward compatibility promise. 23 | */ 24 | final class PHP8x4MigrationRiskySet extends AbstractMigrationSetDefinition 25 | { 26 | public function getRules(): array 27 | { 28 | return [ 29 | '@PHP8x3Migration:risky' => true, 30 | ]; 31 | } 32 | } 33 | -------------------------------------------------------------------------------- /vendor/friendsofphp/php-cs-fixer/src/RuleSet/Sets/PHP8x5MigrationRiskySet.php: -------------------------------------------------------------------------------- 1 | 9 | * Dariusz Rumiński 10 | * 11 | * This source file is subject to the MIT license that is bundled 12 | * with this source code in the file LICENSE. 13 | */ 14 | 15 | namespace PhpCsFixer\RuleSet\Sets; 16 | 17 | use PhpCsFixer\RuleSet\AbstractMigrationSetDefinition; 18 | 19 | /** 20 | * @internal 21 | * 22 | * @no-named-arguments Parameter names are not covered by the backward compatibility promise. 23 | */ 24 | final class PHP8x5MigrationRiskySet extends AbstractMigrationSetDefinition 25 | { 26 | public function getRules(): array 27 | { 28 | return [ 29 | '@PHP8x4Migration:risky' => true, 30 | ]; 31 | } 32 | } 33 | -------------------------------------------------------------------------------- /vendor/php-feed-io/feed-io/examples/modifiedSince.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 | require __DIR__.DIRECTORY_SEPARATOR.'bootstrap.php'; 12 | 13 | $client = new \FeedIo\Adapter\Guzzle\Client(new GuzzleHttp\Client()); 14 | 15 | $logger = new \Psr\Log\NullLogger(); 16 | 17 | $feedIo = new \FeedIo\FeedIo($client, $logger); 18 | 19 | $result = $feedIo->readSince('http://php.net/feed.atom', new \DateTime('-1 month')); 20 | 21 | echo "feed title : {$result->getFeed()->getTitle()} \n "; 22 | 23 | $newItems = $result->getFeed(); 24 | foreach($newItems as $value) { 25 | echo $value->getTitle() . ' : ' . $value->getLastModified()->format(\DateTime::ATOM) . PHP_EOL; 26 | } 27 | -------------------------------------------------------------------------------- /vendor/php-http/httplug/src/Exception/NetworkException.php: -------------------------------------------------------------------------------- 1 | 14 | */ 15 | class NetworkException extends TransferException implements PsrNetworkException 16 | { 17 | use RequestAwareTrait; 18 | 19 | /** 20 | * @param string $message 21 | */ 22 | public function __construct($message, RequestInterface $request, ?\Exception $previous = null) 23 | { 24 | $this->setRequest($request); 25 | 26 | parent::__construct($message, 0, $previous); 27 | } 28 | } 29 | -------------------------------------------------------------------------------- /vendor/friendsofphp/php-cs-fixer/src/RuleSet/DeprecatedRuleSetDefinitionInterface.php: -------------------------------------------------------------------------------- 1 | 9 | * Dariusz Rumiński 10 | * 11 | * This source file is subject to the MIT license that is bundled 12 | * with this source code in the file LICENSE. 13 | */ 14 | 15 | namespace PhpCsFixer\RuleSet; 16 | 17 | /** 18 | * @author Greg Korba 19 | * 20 | * @no-named-arguments Parameter names are not covered by the backward compatibility promise. 21 | */ 22 | interface DeprecatedRuleSetDefinitionInterface extends RuleSetDefinitionInterface 23 | { 24 | /** 25 | * Returns names of rule sets to use instead, if any. 26 | * 27 | * @return list 28 | */ 29 | public function getSuccessorsNames(): array; 30 | } 31 | -------------------------------------------------------------------------------- /vendor/php-feed-io/feed-io/src/FeedIo/Standard/Json.php: -------------------------------------------------------------------------------- 1 | isJson(); 27 | } 28 | 29 | /** 30 | * @return FormatterInterface 31 | */ 32 | public function getFormatter(): FormatterInterface 33 | { 34 | return new JsonFormatter(); 35 | } 36 | } 37 | --------------------------------------------------------------------------------