├── .gitignore ├── .styleci.yml ├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE.md ├── README.md ├── SitemapController.php ├── SitemapServiceProvider.php ├── composer.json ├── meta.yaml └── resources └── views └── index.blade.php /.gitignore: -------------------------------------------------------------------------------- 1 | composer.lock 2 | vendor 3 | -------------------------------------------------------------------------------- /.styleci.yml: -------------------------------------------------------------------------------- 1 | preset: psr2 2 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Marbles/statamic-sitemap/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Marbles/statamic-sitemap/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Marbles/statamic-sitemap/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Marbles/statamic-sitemap/HEAD/README.md -------------------------------------------------------------------------------- /SitemapController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Marbles/statamic-sitemap/HEAD/SitemapController.php -------------------------------------------------------------------------------- /SitemapServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Marbles/statamic-sitemap/HEAD/SitemapServiceProvider.php -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Marbles/statamic-sitemap/HEAD/composer.json -------------------------------------------------------------------------------- /meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Marbles/statamic-sitemap/HEAD/meta.yaml -------------------------------------------------------------------------------- /resources/views/index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Marbles/statamic-sitemap/HEAD/resources/views/index.blade.php --------------------------------------------------------------------------------