├── .editorconfig ├── .github ├── CONTRIBUTING.md ├── FUNDING.yml ├── SECURITY.md └── workflows │ ├── php-code-sniffer.yml │ ├── phpstan.yml │ └── run-tests.yml ├── .gitignore ├── LICENSE.md ├── README.md ├── composer.json ├── config └── seo-manager.php ├── database └── migrations │ └── create_seo_tags_table.php.stub ├── phpcs.xml ├── phpstan.neon ├── phpunit.xml.dist ├── src ├── Composers │ └── SeoComposer.php ├── Contracts │ └── SeoTagContract.php ├── Exceptions │ └── ShouldImplementSeoTagInterfaceException.php ├── Models │ └── SeoTag.php └── SeoManagerServiceProvider.php └── tests ├── BindabilityTest.php ├── SeoManagerTest.php ├── Stubs ├── FakeModel.php ├── TestModel.php ├── TestServiceProvider.php └── resources │ └── views │ ├── test-view.blade.php │ └── type-view.blade.php └── TestCase.php /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-rubel/laravel-seo-manager/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-rubel/laravel-seo-manager/HEAD/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | custom: ["https://paypal.me/observername"] 2 | -------------------------------------------------------------------------------- /.github/SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-rubel/laravel-seo-manager/HEAD/.github/SECURITY.md -------------------------------------------------------------------------------- /.github/workflows/php-code-sniffer.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-rubel/laravel-seo-manager/HEAD/.github/workflows/php-code-sniffer.yml -------------------------------------------------------------------------------- /.github/workflows/phpstan.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-rubel/laravel-seo-manager/HEAD/.github/workflows/phpstan.yml -------------------------------------------------------------------------------- /.github/workflows/run-tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-rubel/laravel-seo-manager/HEAD/.github/workflows/run-tests.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-rubel/laravel-seo-manager/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-rubel/laravel-seo-manager/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-rubel/laravel-seo-manager/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-rubel/laravel-seo-manager/HEAD/composer.json -------------------------------------------------------------------------------- /config/seo-manager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-rubel/laravel-seo-manager/HEAD/config/seo-manager.php -------------------------------------------------------------------------------- /database/migrations/create_seo_tags_table.php.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-rubel/laravel-seo-manager/HEAD/database/migrations/create_seo_tags_table.php.stub -------------------------------------------------------------------------------- /phpcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-rubel/laravel-seo-manager/HEAD/phpcs.xml -------------------------------------------------------------------------------- /phpstan.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-rubel/laravel-seo-manager/HEAD/phpstan.neon -------------------------------------------------------------------------------- /phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-rubel/laravel-seo-manager/HEAD/phpunit.xml.dist -------------------------------------------------------------------------------- /src/Composers/SeoComposer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-rubel/laravel-seo-manager/HEAD/src/Composers/SeoComposer.php -------------------------------------------------------------------------------- /src/Contracts/SeoTagContract.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-rubel/laravel-seo-manager/HEAD/src/Contracts/SeoTagContract.php -------------------------------------------------------------------------------- /src/Exceptions/ShouldImplementSeoTagInterfaceException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-rubel/laravel-seo-manager/HEAD/src/Exceptions/ShouldImplementSeoTagInterfaceException.php -------------------------------------------------------------------------------- /src/Models/SeoTag.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-rubel/laravel-seo-manager/HEAD/src/Models/SeoTag.php -------------------------------------------------------------------------------- /src/SeoManagerServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-rubel/laravel-seo-manager/HEAD/src/SeoManagerServiceProvider.php -------------------------------------------------------------------------------- /tests/BindabilityTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-rubel/laravel-seo-manager/HEAD/tests/BindabilityTest.php -------------------------------------------------------------------------------- /tests/SeoManagerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-rubel/laravel-seo-manager/HEAD/tests/SeoManagerTest.php -------------------------------------------------------------------------------- /tests/Stubs/FakeModel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-rubel/laravel-seo-manager/HEAD/tests/Stubs/FakeModel.php -------------------------------------------------------------------------------- /tests/Stubs/TestModel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-rubel/laravel-seo-manager/HEAD/tests/Stubs/TestModel.php -------------------------------------------------------------------------------- /tests/Stubs/TestServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-rubel/laravel-seo-manager/HEAD/tests/Stubs/TestServiceProvider.php -------------------------------------------------------------------------------- /tests/Stubs/resources/views/test-view.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-rubel/laravel-seo-manager/HEAD/tests/Stubs/resources/views/test-view.blade.php -------------------------------------------------------------------------------- /tests/Stubs/resources/views/type-view.blade.php: -------------------------------------------------------------------------------- 1 | {{ ${config('seo-manager.variable_name')} }} 2 | 3 | -------------------------------------------------------------------------------- /tests/TestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-rubel/laravel-seo-manager/HEAD/tests/TestCase.php --------------------------------------------------------------------------------