├── .circleci └── config.yml ├── .editorconfig ├── .github ├── CODEOWNERS └── workflows │ └── codeql.yml ├── .php-cs-fixer.php ├── CHANGELOG.md ├── LICENSE ├── README.md ├── catalog-info.yaml ├── composer.json ├── phpunit.xml.dist ├── sami.php ├── scripts ├── create-redirector.php └── prepare-docs.sh ├── src ├── ContentfulServiceProvider.php ├── Facades │ └── ContentfulDelivery.php └── config │ └── contentful.php └── tests ├── TestCase.php └── Unit ├── ClientTest.php └── ConfigTest.php /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentful/contentful-laravel/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentful/contentful-laravel/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- 1 | * @contentful/team-developer-experience 2 | -------------------------------------------------------------------------------- /.github/workflows/codeql.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentful/contentful-laravel/HEAD/.github/workflows/codeql.yml -------------------------------------------------------------------------------- /.php-cs-fixer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentful/contentful-laravel/HEAD/.php-cs-fixer.php -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentful/contentful-laravel/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentful/contentful-laravel/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentful/contentful-laravel/HEAD/README.md -------------------------------------------------------------------------------- /catalog-info.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentful/contentful-laravel/HEAD/catalog-info.yaml -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentful/contentful-laravel/HEAD/composer.json -------------------------------------------------------------------------------- /phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentful/contentful-laravel/HEAD/phpunit.xml.dist -------------------------------------------------------------------------------- /sami.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentful/contentful-laravel/HEAD/sami.php -------------------------------------------------------------------------------- /scripts/create-redirector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentful/contentful-laravel/HEAD/scripts/create-redirector.php -------------------------------------------------------------------------------- /scripts/prepare-docs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentful/contentful-laravel/HEAD/scripts/prepare-docs.sh -------------------------------------------------------------------------------- /src/ContentfulServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentful/contentful-laravel/HEAD/src/ContentfulServiceProvider.php -------------------------------------------------------------------------------- /src/Facades/ContentfulDelivery.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentful/contentful-laravel/HEAD/src/Facades/ContentfulDelivery.php -------------------------------------------------------------------------------- /src/config/contentful.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentful/contentful-laravel/HEAD/src/config/contentful.php -------------------------------------------------------------------------------- /tests/TestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentful/contentful-laravel/HEAD/tests/TestCase.php -------------------------------------------------------------------------------- /tests/Unit/ClientTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentful/contentful-laravel/HEAD/tests/Unit/ClientTest.php -------------------------------------------------------------------------------- /tests/Unit/ConfigTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentful/contentful-laravel/HEAD/tests/Unit/ConfigTest.php --------------------------------------------------------------------------------