├── .editorconfig ├── .github └── workflows │ └── main.yml ├── .gitignore ├── LICENSE ├── README.md ├── composer.json ├── phpunit.xml ├── src ├── Exceptions │ ├── SeoException.php │ └── SitemapException.php ├── Helper.php ├── Indexing.php ├── Interfaces │ ├── SchemaInterface.php │ ├── SeoInterface.php │ ├── SitemapBuilderInterface.php │ ├── SitemapIndexInterface.php │ └── SitemapInterface.php ├── MetaTags.php ├── Ping.php ├── Robots.php ├── Schema.php ├── Schema │ ├── Thing.php │ └── Things │ │ ├── ContactPoint.php │ │ ├── Offer.php │ │ ├── Organization.php │ │ ├── Product.php │ │ └── WebPage.php ├── Sitemap.php └── Sitemap │ ├── LinksBuilder.php │ ├── NewsBuilder.php │ ├── SitemapBuilder.php │ └── SitemapIndex.php └── tests ├── MetaTagsTest.php ├── RobotsTest.php ├── SchemaObjectsTest.php ├── SchemaTest.php ├── SitemapsTest.php └── bootstrap.php /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melbahja/seo/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melbahja/seo/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /vendor 2 | /composer.lock 3 | /.idea -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melbahja/seo/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melbahja/seo/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melbahja/seo/HEAD/composer.json -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melbahja/seo/HEAD/phpunit.xml -------------------------------------------------------------------------------- /src/Exceptions/SeoException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melbahja/seo/HEAD/src/Exceptions/SeoException.php -------------------------------------------------------------------------------- /src/Exceptions/SitemapException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melbahja/seo/HEAD/src/Exceptions/SitemapException.php -------------------------------------------------------------------------------- /src/Helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melbahja/seo/HEAD/src/Helper.php -------------------------------------------------------------------------------- /src/Indexing.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melbahja/seo/HEAD/src/Indexing.php -------------------------------------------------------------------------------- /src/Interfaces/SchemaInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melbahja/seo/HEAD/src/Interfaces/SchemaInterface.php -------------------------------------------------------------------------------- /src/Interfaces/SeoInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melbahja/seo/HEAD/src/Interfaces/SeoInterface.php -------------------------------------------------------------------------------- /src/Interfaces/SitemapBuilderInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melbahja/seo/HEAD/src/Interfaces/SitemapBuilderInterface.php -------------------------------------------------------------------------------- /src/Interfaces/SitemapIndexInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melbahja/seo/HEAD/src/Interfaces/SitemapIndexInterface.php -------------------------------------------------------------------------------- /src/Interfaces/SitemapInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melbahja/seo/HEAD/src/Interfaces/SitemapInterface.php -------------------------------------------------------------------------------- /src/MetaTags.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melbahja/seo/HEAD/src/MetaTags.php -------------------------------------------------------------------------------- /src/Ping.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melbahja/seo/HEAD/src/Ping.php -------------------------------------------------------------------------------- /src/Robots.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melbahja/seo/HEAD/src/Robots.php -------------------------------------------------------------------------------- /src/Schema.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melbahja/seo/HEAD/src/Schema.php -------------------------------------------------------------------------------- /src/Schema/Thing.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melbahja/seo/HEAD/src/Schema/Thing.php -------------------------------------------------------------------------------- /src/Schema/Things/ContactPoint.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melbahja/seo/HEAD/src/Schema/Things/ContactPoint.php -------------------------------------------------------------------------------- /src/Schema/Things/Offer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melbahja/seo/HEAD/src/Schema/Things/Offer.php -------------------------------------------------------------------------------- /src/Schema/Things/Organization.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melbahja/seo/HEAD/src/Schema/Things/Organization.php -------------------------------------------------------------------------------- /src/Schema/Things/Product.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melbahja/seo/HEAD/src/Schema/Things/Product.php -------------------------------------------------------------------------------- /src/Schema/Things/WebPage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melbahja/seo/HEAD/src/Schema/Things/WebPage.php -------------------------------------------------------------------------------- /src/Sitemap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melbahja/seo/HEAD/src/Sitemap.php -------------------------------------------------------------------------------- /src/Sitemap/LinksBuilder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melbahja/seo/HEAD/src/Sitemap/LinksBuilder.php -------------------------------------------------------------------------------- /src/Sitemap/NewsBuilder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melbahja/seo/HEAD/src/Sitemap/NewsBuilder.php -------------------------------------------------------------------------------- /src/Sitemap/SitemapBuilder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melbahja/seo/HEAD/src/Sitemap/SitemapBuilder.php -------------------------------------------------------------------------------- /src/Sitemap/SitemapIndex.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melbahja/seo/HEAD/src/Sitemap/SitemapIndex.php -------------------------------------------------------------------------------- /tests/MetaTagsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melbahja/seo/HEAD/tests/MetaTagsTest.php -------------------------------------------------------------------------------- /tests/RobotsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melbahja/seo/HEAD/tests/RobotsTest.php -------------------------------------------------------------------------------- /tests/SchemaObjectsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melbahja/seo/HEAD/tests/SchemaObjectsTest.php -------------------------------------------------------------------------------- /tests/SchemaTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melbahja/seo/HEAD/tests/SchemaTest.php -------------------------------------------------------------------------------- /tests/SitemapsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melbahja/seo/HEAD/tests/SitemapsTest.php -------------------------------------------------------------------------------- /tests/bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melbahja/seo/HEAD/tests/bootstrap.php --------------------------------------------------------------------------------