├── Makefile ├── composer.json ├── phpunit.xml.dist ├── src ├── AlternateLocaleProviderInterface.php ├── Cache │ ├── CacheInterface.php │ ├── ExtractorCollection.php │ └── FileCache.php ├── CmfSeoBundle.php ├── Controller │ ├── SitemapController.php │ └── SuggestionProviderController.php ├── DependencyInjection │ ├── CmfSeoExtension.php │ ├── Compiler │ │ ├── RegisterExtractorsPass.php │ │ ├── RegisterSuggestionProviderPass.php │ │ └── RegisterUrlInformationProviderPass.php │ ├── ConfigValues.php │ └── Configuration.php ├── Doctrine │ └── Phpcr │ │ ├── AlternateLocaleProvider.php │ │ ├── BaseSuggestionProvider.php │ │ ├── ParentSuggestionProvider.php │ │ ├── SeoMetadata.php │ │ ├── SiblingSuggestionProvider.php │ │ └── SitemapDocumentProvider.php ├── EventListener │ ├── ContentListener.php │ └── LanguageListener.php ├── Exception │ ├── ExtractorStrategyException.php │ └── InvalidArgumentException.php ├── Extractor │ ├── DescriptionExtractor.php │ ├── DescriptionReadInterface.php │ ├── ExtractorInterface.php │ ├── ExtrasExtractor.php │ ├── ExtrasReadInterface.php │ ├── KeywordsExtractor.php │ ├── KeywordsReadInterface.php │ ├── OriginalRouteExtractor.php │ ├── OriginalRouteReadInterface.php │ ├── OriginalUrlExtractor.php │ ├── OriginalUrlReadInterface.php │ ├── TitleExtractor.php │ ├── TitleReadExtractor.php │ └── TitleReadInterface.php ├── Form │ └── Type │ │ └── SeoMetadataType.php ├── Matcher │ └── ExclusionMatcher.php ├── Model │ ├── AlternateLocale.php │ ├── AlternateLocaleCollection.php │ ├── SeoMetadata.php │ ├── SeoMetadataInterface.php │ └── UrlInformation.php ├── Resources │ ├── config │ │ ├── content-listener.xml │ │ ├── doctrine-model │ │ │ ├── SeoMetadata.orm.xml │ │ │ └── SeoMetadata.phpcr.xml │ │ ├── doctrine-phpcr │ │ │ └── SeoMetadata.phpcr.xml │ │ ├── extractors.xml │ │ ├── matcher_phpcr.xml │ │ ├── phpcr-alternate-locale.xml │ │ ├── phpcr-sitemap.xml │ │ ├── routing │ │ │ └── sitemap.xml │ │ ├── schema │ │ │ └── seo-1.0.xsd │ │ ├── services.xml │ │ └── sitemap.xml │ ├── meta │ │ └── LICENSE │ └── views │ │ ├── Exception │ │ └── error.html.twig │ │ └── Sitemap │ │ ├── index.html.twig │ │ └── index.xml.twig ├── SeoAwareInterface.php ├── SeoAwareTrait.php ├── SeoPresentation.php ├── SeoPresentationInterface.php ├── Sitemap │ ├── AbstractChain.php │ ├── AlternateLocalesGuesser.php │ ├── DefaultChangeFrequencyGuesser.php │ ├── DepthGuesser.php │ ├── GuesserChain.php │ ├── GuesserInterface.php │ ├── LastModifiedGuesser.php │ ├── LoaderChain.php │ ├── LoaderInterface.php │ ├── LocationGuesser.php │ ├── PublishWorkflowVoter.php │ ├── SeoMetadataTitleGuesser.php │ ├── SitemapAwareDocumentVoter.php │ ├── UrlInformationProvider.php │ ├── VoterChain.php │ └── VoterInterface.php ├── SitemapAwareInterface.php ├── SuggestionProviderInterface.php └── Twig │ └── Extension │ └── CmfSeoExtension.php ├── tests ├── Fixtures │ ├── App │ │ ├── Controller │ │ │ └── TestController.php │ │ ├── DataFixtures │ │ │ └── Phpcr │ │ │ │ ├── LoadContentData.php │ │ │ │ └── LoadSitemapData.php │ │ ├── Document │ │ │ ├── AllStrategiesDocument.php │ │ │ ├── AlternateLocaleContent.php │ │ │ ├── ContentBase.php │ │ │ ├── ContentWithExtractors.php │ │ │ ├── SeoAwareContent.php │ │ │ ├── SitemapAwareContent.php │ │ │ ├── SitemapAwareWithLastModifiedDateContent.php │ │ │ └── SitemapAwareWithPublishWorkflowContent.php │ │ ├── Entity │ │ │ └── SeoAwareOrmContent.php │ │ ├── Kernel.php │ │ ├── Model │ │ │ └── SeoAwareOrmContent.php │ │ ├── Resources │ │ │ └── views │ │ │ │ ├── base.html.twig │ │ │ │ └── tests │ │ │ │ ├── exception.html.twig │ │ │ │ └── index.html.twig │ │ ├── config │ │ │ ├── bundles.php │ │ │ ├── cmf_seo.orm.yml │ │ │ ├── cmf_seo.phpcr.yml │ │ │ ├── cmf_seo.yml │ │ │ ├── config.php │ │ │ ├── config_orm.php │ │ │ ├── config_phpcr.php │ │ │ ├── routing.php │ │ │ ├── tree_browser_1.x.yml │ │ │ └── tree_browser_2.x.yml │ │ └── translations │ │ │ ├── mesages.de.xliff │ │ │ └── mesages.en.xliff │ └── fixtures │ │ └── config │ │ ├── config.php │ │ ├── config.xml │ │ ├── config.yml │ │ ├── config1.xml │ │ ├── config2.xml │ │ ├── config3.xml │ │ ├── config4.xml │ │ ├── config_error.xml │ │ └── config_sitemap.xml ├── Functional │ └── Doctrine │ │ ├── Orm │ │ └── SeoMetadataTest.php │ │ └── Phpcr │ │ ├── SeoMetadataTest.php │ │ └── SitemapDocumentProviderTest.php ├── Unit │ ├── Cache │ │ └── FileCacheTest.php │ ├── Controller │ │ └── SitemapControllerTest.php │ ├── DependencyInjection │ │ ├── CmfSeoExtensionTest.php │ │ ├── Compiler │ │ │ ├── RegisterExtractorsPassTest.php │ │ │ ├── RegisterSuggestionProviderPassTest.php │ │ │ └── RegisterUrlInformationProviderPassTest.php │ │ ├── ConfigValuesTest.php │ │ ├── ConfigurationTest.php │ │ └── XmlSchemaTest.php │ ├── EventListener │ │ ├── ContentListenerTest.php │ │ └── LanguageListenerTest.php │ ├── Extractor │ │ ├── BaseTestCase.php │ │ ├── DescriptionExtractorTest.php │ │ ├── ExtrasExtractorTest.php │ │ ├── KeywordsExtractorTest.php │ │ ├── OriginalRouteExtractorTest.php │ │ ├── OriginalUrlExtractorTest.php │ │ ├── TitleExtractorTest.php │ │ └── TitleReadExtractorTest.php │ ├── Form │ │ └── Type │ │ │ └── SeoMetadataTypeTest.php │ ├── Matcher │ │ └── ExclusionMatcherTest.php │ ├── Model │ │ └── UrlInformationTest.php │ ├── SeoPresentationTest.php │ └── Sitemap │ │ ├── AbstractChainTest.php │ │ ├── AlternateLocalesGuesserTest.php │ │ ├── DefaultChangeFrequencyGuesserTest.php │ │ ├── DepthGuesserTest.php │ │ ├── GuesserTestCase.php │ │ ├── LastModifiedGuesserTest.php │ │ ├── LocationGuesserTest.php │ │ ├── SeoMetadataTitleGuesserTest.php │ │ ├── SitemapAwareDocumentVoterTest.php │ │ └── UrlInformationProviderTest.php ├── WebTest │ ├── SeoFrontendTest.php │ └── SitemapTest.php └── bootstrap.php └── travis.php.ini /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony-cmf/seo-bundle/HEAD/Makefile -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony-cmf/seo-bundle/HEAD/composer.json -------------------------------------------------------------------------------- /phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony-cmf/seo-bundle/HEAD/phpunit.xml.dist -------------------------------------------------------------------------------- /src/AlternateLocaleProviderInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony-cmf/seo-bundle/HEAD/src/AlternateLocaleProviderInterface.php -------------------------------------------------------------------------------- /src/Cache/CacheInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony-cmf/seo-bundle/HEAD/src/Cache/CacheInterface.php -------------------------------------------------------------------------------- /src/Cache/ExtractorCollection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony-cmf/seo-bundle/HEAD/src/Cache/ExtractorCollection.php -------------------------------------------------------------------------------- /src/Cache/FileCache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony-cmf/seo-bundle/HEAD/src/Cache/FileCache.php -------------------------------------------------------------------------------- /src/CmfSeoBundle.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony-cmf/seo-bundle/HEAD/src/CmfSeoBundle.php -------------------------------------------------------------------------------- /src/Controller/SitemapController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony-cmf/seo-bundle/HEAD/src/Controller/SitemapController.php -------------------------------------------------------------------------------- /src/Controller/SuggestionProviderController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony-cmf/seo-bundle/HEAD/src/Controller/SuggestionProviderController.php -------------------------------------------------------------------------------- /src/DependencyInjection/CmfSeoExtension.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony-cmf/seo-bundle/HEAD/src/DependencyInjection/CmfSeoExtension.php -------------------------------------------------------------------------------- /src/DependencyInjection/Compiler/RegisterExtractorsPass.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony-cmf/seo-bundle/HEAD/src/DependencyInjection/Compiler/RegisterExtractorsPass.php -------------------------------------------------------------------------------- /src/DependencyInjection/Compiler/RegisterSuggestionProviderPass.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony-cmf/seo-bundle/HEAD/src/DependencyInjection/Compiler/RegisterSuggestionProviderPass.php -------------------------------------------------------------------------------- /src/DependencyInjection/Compiler/RegisterUrlInformationProviderPass.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony-cmf/seo-bundle/HEAD/src/DependencyInjection/Compiler/RegisterUrlInformationProviderPass.php -------------------------------------------------------------------------------- /src/DependencyInjection/ConfigValues.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony-cmf/seo-bundle/HEAD/src/DependencyInjection/ConfigValues.php -------------------------------------------------------------------------------- /src/DependencyInjection/Configuration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony-cmf/seo-bundle/HEAD/src/DependencyInjection/Configuration.php -------------------------------------------------------------------------------- /src/Doctrine/Phpcr/AlternateLocaleProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony-cmf/seo-bundle/HEAD/src/Doctrine/Phpcr/AlternateLocaleProvider.php -------------------------------------------------------------------------------- /src/Doctrine/Phpcr/BaseSuggestionProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony-cmf/seo-bundle/HEAD/src/Doctrine/Phpcr/BaseSuggestionProvider.php -------------------------------------------------------------------------------- /src/Doctrine/Phpcr/ParentSuggestionProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony-cmf/seo-bundle/HEAD/src/Doctrine/Phpcr/ParentSuggestionProvider.php -------------------------------------------------------------------------------- /src/Doctrine/Phpcr/SeoMetadata.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony-cmf/seo-bundle/HEAD/src/Doctrine/Phpcr/SeoMetadata.php -------------------------------------------------------------------------------- /src/Doctrine/Phpcr/SiblingSuggestionProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony-cmf/seo-bundle/HEAD/src/Doctrine/Phpcr/SiblingSuggestionProvider.php -------------------------------------------------------------------------------- /src/Doctrine/Phpcr/SitemapDocumentProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony-cmf/seo-bundle/HEAD/src/Doctrine/Phpcr/SitemapDocumentProvider.php -------------------------------------------------------------------------------- /src/EventListener/ContentListener.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony-cmf/seo-bundle/HEAD/src/EventListener/ContentListener.php -------------------------------------------------------------------------------- /src/EventListener/LanguageListener.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony-cmf/seo-bundle/HEAD/src/EventListener/LanguageListener.php -------------------------------------------------------------------------------- /src/Exception/ExtractorStrategyException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony-cmf/seo-bundle/HEAD/src/Exception/ExtractorStrategyException.php -------------------------------------------------------------------------------- /src/Exception/InvalidArgumentException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony-cmf/seo-bundle/HEAD/src/Exception/InvalidArgumentException.php -------------------------------------------------------------------------------- /src/Extractor/DescriptionExtractor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony-cmf/seo-bundle/HEAD/src/Extractor/DescriptionExtractor.php -------------------------------------------------------------------------------- /src/Extractor/DescriptionReadInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony-cmf/seo-bundle/HEAD/src/Extractor/DescriptionReadInterface.php -------------------------------------------------------------------------------- /src/Extractor/ExtractorInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony-cmf/seo-bundle/HEAD/src/Extractor/ExtractorInterface.php -------------------------------------------------------------------------------- /src/Extractor/ExtrasExtractor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony-cmf/seo-bundle/HEAD/src/Extractor/ExtrasExtractor.php -------------------------------------------------------------------------------- /src/Extractor/ExtrasReadInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony-cmf/seo-bundle/HEAD/src/Extractor/ExtrasReadInterface.php -------------------------------------------------------------------------------- /src/Extractor/KeywordsExtractor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony-cmf/seo-bundle/HEAD/src/Extractor/KeywordsExtractor.php -------------------------------------------------------------------------------- /src/Extractor/KeywordsReadInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony-cmf/seo-bundle/HEAD/src/Extractor/KeywordsReadInterface.php -------------------------------------------------------------------------------- /src/Extractor/OriginalRouteExtractor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony-cmf/seo-bundle/HEAD/src/Extractor/OriginalRouteExtractor.php -------------------------------------------------------------------------------- /src/Extractor/OriginalRouteReadInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony-cmf/seo-bundle/HEAD/src/Extractor/OriginalRouteReadInterface.php -------------------------------------------------------------------------------- /src/Extractor/OriginalUrlExtractor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony-cmf/seo-bundle/HEAD/src/Extractor/OriginalUrlExtractor.php -------------------------------------------------------------------------------- /src/Extractor/OriginalUrlReadInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony-cmf/seo-bundle/HEAD/src/Extractor/OriginalUrlReadInterface.php -------------------------------------------------------------------------------- /src/Extractor/TitleExtractor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony-cmf/seo-bundle/HEAD/src/Extractor/TitleExtractor.php -------------------------------------------------------------------------------- /src/Extractor/TitleReadExtractor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony-cmf/seo-bundle/HEAD/src/Extractor/TitleReadExtractor.php -------------------------------------------------------------------------------- /src/Extractor/TitleReadInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony-cmf/seo-bundle/HEAD/src/Extractor/TitleReadInterface.php -------------------------------------------------------------------------------- /src/Form/Type/SeoMetadataType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony-cmf/seo-bundle/HEAD/src/Form/Type/SeoMetadataType.php -------------------------------------------------------------------------------- /src/Matcher/ExclusionMatcher.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony-cmf/seo-bundle/HEAD/src/Matcher/ExclusionMatcher.php -------------------------------------------------------------------------------- /src/Model/AlternateLocale.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony-cmf/seo-bundle/HEAD/src/Model/AlternateLocale.php -------------------------------------------------------------------------------- /src/Model/AlternateLocaleCollection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony-cmf/seo-bundle/HEAD/src/Model/AlternateLocaleCollection.php -------------------------------------------------------------------------------- /src/Model/SeoMetadata.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony-cmf/seo-bundle/HEAD/src/Model/SeoMetadata.php -------------------------------------------------------------------------------- /src/Model/SeoMetadataInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony-cmf/seo-bundle/HEAD/src/Model/SeoMetadataInterface.php -------------------------------------------------------------------------------- /src/Model/UrlInformation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony-cmf/seo-bundle/HEAD/src/Model/UrlInformation.php -------------------------------------------------------------------------------- /src/Resources/config/content-listener.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony-cmf/seo-bundle/HEAD/src/Resources/config/content-listener.xml -------------------------------------------------------------------------------- /src/Resources/config/doctrine-model/SeoMetadata.orm.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony-cmf/seo-bundle/HEAD/src/Resources/config/doctrine-model/SeoMetadata.orm.xml -------------------------------------------------------------------------------- /src/Resources/config/doctrine-model/SeoMetadata.phpcr.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony-cmf/seo-bundle/HEAD/src/Resources/config/doctrine-model/SeoMetadata.phpcr.xml -------------------------------------------------------------------------------- /src/Resources/config/doctrine-phpcr/SeoMetadata.phpcr.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony-cmf/seo-bundle/HEAD/src/Resources/config/doctrine-phpcr/SeoMetadata.phpcr.xml -------------------------------------------------------------------------------- /src/Resources/config/extractors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony-cmf/seo-bundle/HEAD/src/Resources/config/extractors.xml -------------------------------------------------------------------------------- /src/Resources/config/matcher_phpcr.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony-cmf/seo-bundle/HEAD/src/Resources/config/matcher_phpcr.xml -------------------------------------------------------------------------------- /src/Resources/config/phpcr-alternate-locale.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony-cmf/seo-bundle/HEAD/src/Resources/config/phpcr-alternate-locale.xml -------------------------------------------------------------------------------- /src/Resources/config/phpcr-sitemap.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony-cmf/seo-bundle/HEAD/src/Resources/config/phpcr-sitemap.xml -------------------------------------------------------------------------------- /src/Resources/config/routing/sitemap.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony-cmf/seo-bundle/HEAD/src/Resources/config/routing/sitemap.xml -------------------------------------------------------------------------------- /src/Resources/config/schema/seo-1.0.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony-cmf/seo-bundle/HEAD/src/Resources/config/schema/seo-1.0.xsd -------------------------------------------------------------------------------- /src/Resources/config/services.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony-cmf/seo-bundle/HEAD/src/Resources/config/services.xml -------------------------------------------------------------------------------- /src/Resources/config/sitemap.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony-cmf/seo-bundle/HEAD/src/Resources/config/sitemap.xml -------------------------------------------------------------------------------- /src/Resources/meta/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony-cmf/seo-bundle/HEAD/src/Resources/meta/LICENSE -------------------------------------------------------------------------------- /src/Resources/views/Exception/error.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony-cmf/seo-bundle/HEAD/src/Resources/views/Exception/error.html.twig -------------------------------------------------------------------------------- /src/Resources/views/Sitemap/index.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony-cmf/seo-bundle/HEAD/src/Resources/views/Sitemap/index.html.twig -------------------------------------------------------------------------------- /src/Resources/views/Sitemap/index.xml.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony-cmf/seo-bundle/HEAD/src/Resources/views/Sitemap/index.xml.twig -------------------------------------------------------------------------------- /src/SeoAwareInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony-cmf/seo-bundle/HEAD/src/SeoAwareInterface.php -------------------------------------------------------------------------------- /src/SeoAwareTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony-cmf/seo-bundle/HEAD/src/SeoAwareTrait.php -------------------------------------------------------------------------------- /src/SeoPresentation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony-cmf/seo-bundle/HEAD/src/SeoPresentation.php -------------------------------------------------------------------------------- /src/SeoPresentationInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony-cmf/seo-bundle/HEAD/src/SeoPresentationInterface.php -------------------------------------------------------------------------------- /src/Sitemap/AbstractChain.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony-cmf/seo-bundle/HEAD/src/Sitemap/AbstractChain.php -------------------------------------------------------------------------------- /src/Sitemap/AlternateLocalesGuesser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony-cmf/seo-bundle/HEAD/src/Sitemap/AlternateLocalesGuesser.php -------------------------------------------------------------------------------- /src/Sitemap/DefaultChangeFrequencyGuesser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony-cmf/seo-bundle/HEAD/src/Sitemap/DefaultChangeFrequencyGuesser.php -------------------------------------------------------------------------------- /src/Sitemap/DepthGuesser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony-cmf/seo-bundle/HEAD/src/Sitemap/DepthGuesser.php -------------------------------------------------------------------------------- /src/Sitemap/GuesserChain.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony-cmf/seo-bundle/HEAD/src/Sitemap/GuesserChain.php -------------------------------------------------------------------------------- /src/Sitemap/GuesserInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony-cmf/seo-bundle/HEAD/src/Sitemap/GuesserInterface.php -------------------------------------------------------------------------------- /src/Sitemap/LastModifiedGuesser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony-cmf/seo-bundle/HEAD/src/Sitemap/LastModifiedGuesser.php -------------------------------------------------------------------------------- /src/Sitemap/LoaderChain.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony-cmf/seo-bundle/HEAD/src/Sitemap/LoaderChain.php -------------------------------------------------------------------------------- /src/Sitemap/LoaderInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony-cmf/seo-bundle/HEAD/src/Sitemap/LoaderInterface.php -------------------------------------------------------------------------------- /src/Sitemap/LocationGuesser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony-cmf/seo-bundle/HEAD/src/Sitemap/LocationGuesser.php -------------------------------------------------------------------------------- /src/Sitemap/PublishWorkflowVoter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony-cmf/seo-bundle/HEAD/src/Sitemap/PublishWorkflowVoter.php -------------------------------------------------------------------------------- /src/Sitemap/SeoMetadataTitleGuesser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony-cmf/seo-bundle/HEAD/src/Sitemap/SeoMetadataTitleGuesser.php -------------------------------------------------------------------------------- /src/Sitemap/SitemapAwareDocumentVoter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony-cmf/seo-bundle/HEAD/src/Sitemap/SitemapAwareDocumentVoter.php -------------------------------------------------------------------------------- /src/Sitemap/UrlInformationProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony-cmf/seo-bundle/HEAD/src/Sitemap/UrlInformationProvider.php -------------------------------------------------------------------------------- /src/Sitemap/VoterChain.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony-cmf/seo-bundle/HEAD/src/Sitemap/VoterChain.php -------------------------------------------------------------------------------- /src/Sitemap/VoterInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony-cmf/seo-bundle/HEAD/src/Sitemap/VoterInterface.php -------------------------------------------------------------------------------- /src/SitemapAwareInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony-cmf/seo-bundle/HEAD/src/SitemapAwareInterface.php -------------------------------------------------------------------------------- /src/SuggestionProviderInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony-cmf/seo-bundle/HEAD/src/SuggestionProviderInterface.php -------------------------------------------------------------------------------- /src/Twig/Extension/CmfSeoExtension.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony-cmf/seo-bundle/HEAD/src/Twig/Extension/CmfSeoExtension.php -------------------------------------------------------------------------------- /tests/Fixtures/App/Controller/TestController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony-cmf/seo-bundle/HEAD/tests/Fixtures/App/Controller/TestController.php -------------------------------------------------------------------------------- /tests/Fixtures/App/DataFixtures/Phpcr/LoadContentData.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony-cmf/seo-bundle/HEAD/tests/Fixtures/App/DataFixtures/Phpcr/LoadContentData.php -------------------------------------------------------------------------------- /tests/Fixtures/App/DataFixtures/Phpcr/LoadSitemapData.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony-cmf/seo-bundle/HEAD/tests/Fixtures/App/DataFixtures/Phpcr/LoadSitemapData.php -------------------------------------------------------------------------------- /tests/Fixtures/App/Document/AllStrategiesDocument.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony-cmf/seo-bundle/HEAD/tests/Fixtures/App/Document/AllStrategiesDocument.php -------------------------------------------------------------------------------- /tests/Fixtures/App/Document/AlternateLocaleContent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony-cmf/seo-bundle/HEAD/tests/Fixtures/App/Document/AlternateLocaleContent.php -------------------------------------------------------------------------------- /tests/Fixtures/App/Document/ContentBase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony-cmf/seo-bundle/HEAD/tests/Fixtures/App/Document/ContentBase.php -------------------------------------------------------------------------------- /tests/Fixtures/App/Document/ContentWithExtractors.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony-cmf/seo-bundle/HEAD/tests/Fixtures/App/Document/ContentWithExtractors.php -------------------------------------------------------------------------------- /tests/Fixtures/App/Document/SeoAwareContent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony-cmf/seo-bundle/HEAD/tests/Fixtures/App/Document/SeoAwareContent.php -------------------------------------------------------------------------------- /tests/Fixtures/App/Document/SitemapAwareContent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony-cmf/seo-bundle/HEAD/tests/Fixtures/App/Document/SitemapAwareContent.php -------------------------------------------------------------------------------- /tests/Fixtures/App/Document/SitemapAwareWithLastModifiedDateContent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony-cmf/seo-bundle/HEAD/tests/Fixtures/App/Document/SitemapAwareWithLastModifiedDateContent.php -------------------------------------------------------------------------------- /tests/Fixtures/App/Document/SitemapAwareWithPublishWorkflowContent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony-cmf/seo-bundle/HEAD/tests/Fixtures/App/Document/SitemapAwareWithPublishWorkflowContent.php -------------------------------------------------------------------------------- /tests/Fixtures/App/Entity/SeoAwareOrmContent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony-cmf/seo-bundle/HEAD/tests/Fixtures/App/Entity/SeoAwareOrmContent.php -------------------------------------------------------------------------------- /tests/Fixtures/App/Kernel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony-cmf/seo-bundle/HEAD/tests/Fixtures/App/Kernel.php -------------------------------------------------------------------------------- /tests/Fixtures/App/Model/SeoAwareOrmContent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony-cmf/seo-bundle/HEAD/tests/Fixtures/App/Model/SeoAwareOrmContent.php -------------------------------------------------------------------------------- /tests/Fixtures/App/Resources/views/base.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony-cmf/seo-bundle/HEAD/tests/Fixtures/App/Resources/views/base.html.twig -------------------------------------------------------------------------------- /tests/Fixtures/App/Resources/views/tests/exception.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony-cmf/seo-bundle/HEAD/tests/Fixtures/App/Resources/views/tests/exception.html.twig -------------------------------------------------------------------------------- /tests/Fixtures/App/Resources/views/tests/index.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony-cmf/seo-bundle/HEAD/tests/Fixtures/App/Resources/views/tests/index.html.twig -------------------------------------------------------------------------------- /tests/Fixtures/App/config/bundles.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony-cmf/seo-bundle/HEAD/tests/Fixtures/App/config/bundles.php -------------------------------------------------------------------------------- /tests/Fixtures/App/config/cmf_seo.orm.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony-cmf/seo-bundle/HEAD/tests/Fixtures/App/config/cmf_seo.orm.yml -------------------------------------------------------------------------------- /tests/Fixtures/App/config/cmf_seo.phpcr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony-cmf/seo-bundle/HEAD/tests/Fixtures/App/config/cmf_seo.phpcr.yml -------------------------------------------------------------------------------- /tests/Fixtures/App/config/cmf_seo.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony-cmf/seo-bundle/HEAD/tests/Fixtures/App/config/cmf_seo.yml -------------------------------------------------------------------------------- /tests/Fixtures/App/config/config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony-cmf/seo-bundle/HEAD/tests/Fixtures/App/config/config.php -------------------------------------------------------------------------------- /tests/Fixtures/App/config/config_orm.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony-cmf/seo-bundle/HEAD/tests/Fixtures/App/config/config_orm.php -------------------------------------------------------------------------------- /tests/Fixtures/App/config/config_phpcr.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony-cmf/seo-bundle/HEAD/tests/Fixtures/App/config/config_phpcr.php -------------------------------------------------------------------------------- /tests/Fixtures/App/config/routing.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony-cmf/seo-bundle/HEAD/tests/Fixtures/App/config/routing.php -------------------------------------------------------------------------------- /tests/Fixtures/App/config/tree_browser_1.x.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony-cmf/seo-bundle/HEAD/tests/Fixtures/App/config/tree_browser_1.x.yml -------------------------------------------------------------------------------- /tests/Fixtures/App/config/tree_browser_2.x.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony-cmf/seo-bundle/HEAD/tests/Fixtures/App/config/tree_browser_2.x.yml -------------------------------------------------------------------------------- /tests/Fixtures/App/translations/mesages.de.xliff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony-cmf/seo-bundle/HEAD/tests/Fixtures/App/translations/mesages.de.xliff -------------------------------------------------------------------------------- /tests/Fixtures/App/translations/mesages.en.xliff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony-cmf/seo-bundle/HEAD/tests/Fixtures/App/translations/mesages.en.xliff -------------------------------------------------------------------------------- /tests/Fixtures/fixtures/config/config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony-cmf/seo-bundle/HEAD/tests/Fixtures/fixtures/config/config.php -------------------------------------------------------------------------------- /tests/Fixtures/fixtures/config/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony-cmf/seo-bundle/HEAD/tests/Fixtures/fixtures/config/config.xml -------------------------------------------------------------------------------- /tests/Fixtures/fixtures/config/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony-cmf/seo-bundle/HEAD/tests/Fixtures/fixtures/config/config.yml -------------------------------------------------------------------------------- /tests/Fixtures/fixtures/config/config1.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/Fixtures/fixtures/config/config2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony-cmf/seo-bundle/HEAD/tests/Fixtures/fixtures/config/config2.xml -------------------------------------------------------------------------------- /tests/Fixtures/fixtures/config/config3.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony-cmf/seo-bundle/HEAD/tests/Fixtures/fixtures/config/config3.xml -------------------------------------------------------------------------------- /tests/Fixtures/fixtures/config/config4.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony-cmf/seo-bundle/HEAD/tests/Fixtures/fixtures/config/config4.xml -------------------------------------------------------------------------------- /tests/Fixtures/fixtures/config/config_error.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony-cmf/seo-bundle/HEAD/tests/Fixtures/fixtures/config/config_error.xml -------------------------------------------------------------------------------- /tests/Fixtures/fixtures/config/config_sitemap.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony-cmf/seo-bundle/HEAD/tests/Fixtures/fixtures/config/config_sitemap.xml -------------------------------------------------------------------------------- /tests/Functional/Doctrine/Orm/SeoMetadataTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony-cmf/seo-bundle/HEAD/tests/Functional/Doctrine/Orm/SeoMetadataTest.php -------------------------------------------------------------------------------- /tests/Functional/Doctrine/Phpcr/SeoMetadataTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony-cmf/seo-bundle/HEAD/tests/Functional/Doctrine/Phpcr/SeoMetadataTest.php -------------------------------------------------------------------------------- /tests/Functional/Doctrine/Phpcr/SitemapDocumentProviderTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony-cmf/seo-bundle/HEAD/tests/Functional/Doctrine/Phpcr/SitemapDocumentProviderTest.php -------------------------------------------------------------------------------- /tests/Unit/Cache/FileCacheTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony-cmf/seo-bundle/HEAD/tests/Unit/Cache/FileCacheTest.php -------------------------------------------------------------------------------- /tests/Unit/Controller/SitemapControllerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony-cmf/seo-bundle/HEAD/tests/Unit/Controller/SitemapControllerTest.php -------------------------------------------------------------------------------- /tests/Unit/DependencyInjection/CmfSeoExtensionTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony-cmf/seo-bundle/HEAD/tests/Unit/DependencyInjection/CmfSeoExtensionTest.php -------------------------------------------------------------------------------- /tests/Unit/DependencyInjection/Compiler/RegisterExtractorsPassTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony-cmf/seo-bundle/HEAD/tests/Unit/DependencyInjection/Compiler/RegisterExtractorsPassTest.php -------------------------------------------------------------------------------- /tests/Unit/DependencyInjection/Compiler/RegisterSuggestionProviderPassTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony-cmf/seo-bundle/HEAD/tests/Unit/DependencyInjection/Compiler/RegisterSuggestionProviderPassTest.php -------------------------------------------------------------------------------- /tests/Unit/DependencyInjection/Compiler/RegisterUrlInformationProviderPassTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony-cmf/seo-bundle/HEAD/tests/Unit/DependencyInjection/Compiler/RegisterUrlInformationProviderPassTest.php -------------------------------------------------------------------------------- /tests/Unit/DependencyInjection/ConfigValuesTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony-cmf/seo-bundle/HEAD/tests/Unit/DependencyInjection/ConfigValuesTest.php -------------------------------------------------------------------------------- /tests/Unit/DependencyInjection/ConfigurationTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony-cmf/seo-bundle/HEAD/tests/Unit/DependencyInjection/ConfigurationTest.php -------------------------------------------------------------------------------- /tests/Unit/DependencyInjection/XmlSchemaTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony-cmf/seo-bundle/HEAD/tests/Unit/DependencyInjection/XmlSchemaTest.php -------------------------------------------------------------------------------- /tests/Unit/EventListener/ContentListenerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony-cmf/seo-bundle/HEAD/tests/Unit/EventListener/ContentListenerTest.php -------------------------------------------------------------------------------- /tests/Unit/EventListener/LanguageListenerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony-cmf/seo-bundle/HEAD/tests/Unit/EventListener/LanguageListenerTest.php -------------------------------------------------------------------------------- /tests/Unit/Extractor/BaseTestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony-cmf/seo-bundle/HEAD/tests/Unit/Extractor/BaseTestCase.php -------------------------------------------------------------------------------- /tests/Unit/Extractor/DescriptionExtractorTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony-cmf/seo-bundle/HEAD/tests/Unit/Extractor/DescriptionExtractorTest.php -------------------------------------------------------------------------------- /tests/Unit/Extractor/ExtrasExtractorTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony-cmf/seo-bundle/HEAD/tests/Unit/Extractor/ExtrasExtractorTest.php -------------------------------------------------------------------------------- /tests/Unit/Extractor/KeywordsExtractorTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony-cmf/seo-bundle/HEAD/tests/Unit/Extractor/KeywordsExtractorTest.php -------------------------------------------------------------------------------- /tests/Unit/Extractor/OriginalRouteExtractorTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony-cmf/seo-bundle/HEAD/tests/Unit/Extractor/OriginalRouteExtractorTest.php -------------------------------------------------------------------------------- /tests/Unit/Extractor/OriginalUrlExtractorTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony-cmf/seo-bundle/HEAD/tests/Unit/Extractor/OriginalUrlExtractorTest.php -------------------------------------------------------------------------------- /tests/Unit/Extractor/TitleExtractorTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony-cmf/seo-bundle/HEAD/tests/Unit/Extractor/TitleExtractorTest.php -------------------------------------------------------------------------------- /tests/Unit/Extractor/TitleReadExtractorTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony-cmf/seo-bundle/HEAD/tests/Unit/Extractor/TitleReadExtractorTest.php -------------------------------------------------------------------------------- /tests/Unit/Form/Type/SeoMetadataTypeTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony-cmf/seo-bundle/HEAD/tests/Unit/Form/Type/SeoMetadataTypeTest.php -------------------------------------------------------------------------------- /tests/Unit/Matcher/ExclusionMatcherTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony-cmf/seo-bundle/HEAD/tests/Unit/Matcher/ExclusionMatcherTest.php -------------------------------------------------------------------------------- /tests/Unit/Model/UrlInformationTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony-cmf/seo-bundle/HEAD/tests/Unit/Model/UrlInformationTest.php -------------------------------------------------------------------------------- /tests/Unit/SeoPresentationTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony-cmf/seo-bundle/HEAD/tests/Unit/SeoPresentationTest.php -------------------------------------------------------------------------------- /tests/Unit/Sitemap/AbstractChainTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony-cmf/seo-bundle/HEAD/tests/Unit/Sitemap/AbstractChainTest.php -------------------------------------------------------------------------------- /tests/Unit/Sitemap/AlternateLocalesGuesserTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony-cmf/seo-bundle/HEAD/tests/Unit/Sitemap/AlternateLocalesGuesserTest.php -------------------------------------------------------------------------------- /tests/Unit/Sitemap/DefaultChangeFrequencyGuesserTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony-cmf/seo-bundle/HEAD/tests/Unit/Sitemap/DefaultChangeFrequencyGuesserTest.php -------------------------------------------------------------------------------- /tests/Unit/Sitemap/DepthGuesserTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony-cmf/seo-bundle/HEAD/tests/Unit/Sitemap/DepthGuesserTest.php -------------------------------------------------------------------------------- /tests/Unit/Sitemap/GuesserTestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony-cmf/seo-bundle/HEAD/tests/Unit/Sitemap/GuesserTestCase.php -------------------------------------------------------------------------------- /tests/Unit/Sitemap/LastModifiedGuesserTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony-cmf/seo-bundle/HEAD/tests/Unit/Sitemap/LastModifiedGuesserTest.php -------------------------------------------------------------------------------- /tests/Unit/Sitemap/LocationGuesserTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony-cmf/seo-bundle/HEAD/tests/Unit/Sitemap/LocationGuesserTest.php -------------------------------------------------------------------------------- /tests/Unit/Sitemap/SeoMetadataTitleGuesserTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony-cmf/seo-bundle/HEAD/tests/Unit/Sitemap/SeoMetadataTitleGuesserTest.php -------------------------------------------------------------------------------- /tests/Unit/Sitemap/SitemapAwareDocumentVoterTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony-cmf/seo-bundle/HEAD/tests/Unit/Sitemap/SitemapAwareDocumentVoterTest.php -------------------------------------------------------------------------------- /tests/Unit/Sitemap/UrlInformationProviderTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony-cmf/seo-bundle/HEAD/tests/Unit/Sitemap/UrlInformationProviderTest.php -------------------------------------------------------------------------------- /tests/WebTest/SeoFrontendTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony-cmf/seo-bundle/HEAD/tests/WebTest/SeoFrontendTest.php -------------------------------------------------------------------------------- /tests/WebTest/SitemapTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony-cmf/seo-bundle/HEAD/tests/WebTest/SitemapTest.php -------------------------------------------------------------------------------- /tests/bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony-cmf/seo-bundle/HEAD/tests/bootstrap.php -------------------------------------------------------------------------------- /travis.php.ini: -------------------------------------------------------------------------------- 1 | memory_limit = -1 2 | --------------------------------------------------------------------------------