├── .editorconfig ├── .github ├── dependabot.yml └── workflows │ ├── pest.yml │ └── pint.yml ├── CHANGELOG.md ├── LICENSE.md ├── README.md ├── composer.json └── src ├── BaseObject.php ├── OpenGraph.php ├── Property.php ├── StructuredProperties ├── Audio.php ├── Image.php ├── StructuredProperty.php └── Video.php ├── Twitter.php ├── TwitterProperty.php ├── TwitterType.php ├── Type.php └── Types ├── Article.php ├── Book.php ├── Music ├── Album.php ├── Playlist.php ├── RadioStation.php └── Song.php ├── Profile.php ├── Twitter ├── App.php ├── Player.php ├── Summary.php └── SummaryLargeImage.php ├── Video ├── Episode.php ├── Movie.php ├── Other.php └── TvShow.php └── Website.php /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Astrotomic/php-open-graph/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Astrotomic/php-open-graph/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/pest.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Astrotomic/php-open-graph/HEAD/.github/workflows/pest.yml -------------------------------------------------------------------------------- /.github/workflows/pint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Astrotomic/php-open-graph/HEAD/.github/workflows/pint.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Astrotomic/php-open-graph/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Astrotomic/php-open-graph/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Astrotomic/php-open-graph/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Astrotomic/php-open-graph/HEAD/composer.json -------------------------------------------------------------------------------- /src/BaseObject.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Astrotomic/php-open-graph/HEAD/src/BaseObject.php -------------------------------------------------------------------------------- /src/OpenGraph.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Astrotomic/php-open-graph/HEAD/src/OpenGraph.php -------------------------------------------------------------------------------- /src/Property.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Astrotomic/php-open-graph/HEAD/src/Property.php -------------------------------------------------------------------------------- /src/StructuredProperties/Audio.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Astrotomic/php-open-graph/HEAD/src/StructuredProperties/Audio.php -------------------------------------------------------------------------------- /src/StructuredProperties/Image.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Astrotomic/php-open-graph/HEAD/src/StructuredProperties/Image.php -------------------------------------------------------------------------------- /src/StructuredProperties/StructuredProperty.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Astrotomic/php-open-graph/HEAD/src/StructuredProperties/StructuredProperty.php -------------------------------------------------------------------------------- /src/StructuredProperties/Video.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Astrotomic/php-open-graph/HEAD/src/StructuredProperties/Video.php -------------------------------------------------------------------------------- /src/Twitter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Astrotomic/php-open-graph/HEAD/src/Twitter.php -------------------------------------------------------------------------------- /src/TwitterProperty.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Astrotomic/php-open-graph/HEAD/src/TwitterProperty.php -------------------------------------------------------------------------------- /src/TwitterType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Astrotomic/php-open-graph/HEAD/src/TwitterType.php -------------------------------------------------------------------------------- /src/Type.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Astrotomic/php-open-graph/HEAD/src/Type.php -------------------------------------------------------------------------------- /src/Types/Article.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Astrotomic/php-open-graph/HEAD/src/Types/Article.php -------------------------------------------------------------------------------- /src/Types/Book.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Astrotomic/php-open-graph/HEAD/src/Types/Book.php -------------------------------------------------------------------------------- /src/Types/Music/Album.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Astrotomic/php-open-graph/HEAD/src/Types/Music/Album.php -------------------------------------------------------------------------------- /src/Types/Music/Playlist.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Astrotomic/php-open-graph/HEAD/src/Types/Music/Playlist.php -------------------------------------------------------------------------------- /src/Types/Music/RadioStation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Astrotomic/php-open-graph/HEAD/src/Types/Music/RadioStation.php -------------------------------------------------------------------------------- /src/Types/Music/Song.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Astrotomic/php-open-graph/HEAD/src/Types/Music/Song.php -------------------------------------------------------------------------------- /src/Types/Profile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Astrotomic/php-open-graph/HEAD/src/Types/Profile.php -------------------------------------------------------------------------------- /src/Types/Twitter/App.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Astrotomic/php-open-graph/HEAD/src/Types/Twitter/App.php -------------------------------------------------------------------------------- /src/Types/Twitter/Player.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Astrotomic/php-open-graph/HEAD/src/Types/Twitter/Player.php -------------------------------------------------------------------------------- /src/Types/Twitter/Summary.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Astrotomic/php-open-graph/HEAD/src/Types/Twitter/Summary.php -------------------------------------------------------------------------------- /src/Types/Twitter/SummaryLargeImage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Astrotomic/php-open-graph/HEAD/src/Types/Twitter/SummaryLargeImage.php -------------------------------------------------------------------------------- /src/Types/Video/Episode.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Astrotomic/php-open-graph/HEAD/src/Types/Video/Episode.php -------------------------------------------------------------------------------- /src/Types/Video/Movie.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Astrotomic/php-open-graph/HEAD/src/Types/Video/Movie.php -------------------------------------------------------------------------------- /src/Types/Video/Other.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Astrotomic/php-open-graph/HEAD/src/Types/Video/Other.php -------------------------------------------------------------------------------- /src/Types/Video/TvShow.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Astrotomic/php-open-graph/HEAD/src/Types/Video/TvShow.php -------------------------------------------------------------------------------- /src/Types/Website.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Astrotomic/php-open-graph/HEAD/src/Types/Website.php --------------------------------------------------------------------------------