├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── composer.json ├── phpunit.xml ├── resources └── config.php ├── src ├── Embed.php ├── Exceptions │ ├── ExtractorException.php │ └── HtmlParsingException.php ├── Extractor.php ├── Facades │ └── OEmbed.php ├── Factory.php ├── HtmlBuilder.php ├── ImportProviders.php ├── OEmbed.php ├── OEmbedExtractor.php ├── OEmbedServiceProvider.php └── RegexExtractor.php └── tests ├── EmbedHtmlTest.php ├── EmbedTest.php └── OEmbedTest.php /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaneCohen/oembed/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaneCohen/oembed/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaneCohen/oembed/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaneCohen/oembed/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaneCohen/oembed/HEAD/composer.json -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaneCohen/oembed/HEAD/phpunit.xml -------------------------------------------------------------------------------- /resources/config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaneCohen/oembed/HEAD/resources/config.php -------------------------------------------------------------------------------- /src/Embed.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaneCohen/oembed/HEAD/src/Embed.php -------------------------------------------------------------------------------- /src/Exceptions/ExtractorException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaneCohen/oembed/HEAD/src/Exceptions/ExtractorException.php -------------------------------------------------------------------------------- /src/Exceptions/HtmlParsingException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaneCohen/oembed/HEAD/src/Exceptions/HtmlParsingException.php -------------------------------------------------------------------------------- /src/Extractor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaneCohen/oembed/HEAD/src/Extractor.php -------------------------------------------------------------------------------- /src/Facades/OEmbed.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaneCohen/oembed/HEAD/src/Facades/OEmbed.php -------------------------------------------------------------------------------- /src/Factory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaneCohen/oembed/HEAD/src/Factory.php -------------------------------------------------------------------------------- /src/HtmlBuilder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaneCohen/oembed/HEAD/src/HtmlBuilder.php -------------------------------------------------------------------------------- /src/ImportProviders.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaneCohen/oembed/HEAD/src/ImportProviders.php -------------------------------------------------------------------------------- /src/OEmbed.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaneCohen/oembed/HEAD/src/OEmbed.php -------------------------------------------------------------------------------- /src/OEmbedExtractor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaneCohen/oembed/HEAD/src/OEmbedExtractor.php -------------------------------------------------------------------------------- /src/OEmbedServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaneCohen/oembed/HEAD/src/OEmbedServiceProvider.php -------------------------------------------------------------------------------- /src/RegexExtractor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaneCohen/oembed/HEAD/src/RegexExtractor.php -------------------------------------------------------------------------------- /tests/EmbedHtmlTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaneCohen/oembed/HEAD/tests/EmbedHtmlTest.php -------------------------------------------------------------------------------- /tests/EmbedTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaneCohen/oembed/HEAD/tests/EmbedTest.php -------------------------------------------------------------------------------- /tests/OEmbedTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaneCohen/oembed/HEAD/tests/OEmbedTest.php --------------------------------------------------------------------------------