diff --git a/README.md b/README.md index dfbe1001..dd617509 100644 --- a/README.md +++ b/README.md @@ -8,6 +8,7 @@

GitHub Actions status + Codecov Code Coverage LICENSE PHP Versions Supported Support me on Patreon Support me on PayPal diff --git a/example/laravel-mysql.yml b/examples/laravel-mysql.yml similarity index 100% rename from example/laravel-mysql.yml rename to examples/laravel-mysql.yml diff --git a/example/laravel-postgres.yml b/examples/laravel-postgres.yml similarity index 89% rename from example/laravel-postgres.yml rename to examples/laravel-postgres.yml index 1efdec3c..9e270cb4 100644 --- a/example/laravel-postgres.yml +++ b/examples/laravel-postgres.yml @@ -9,6 +9,11 @@ jobs: CACHE_DRIVER: redis QUEUE_CONNECTION: redis SESSION_DRIVER: redis + DB_CONNECTION: pgsql + DB_HOST: localhost + DB_PASSWORD: postgres + DB_USERNAME: postgres + DB_DATABASE: postgres services: postgres: image: postgres:10.8 @@ -50,5 +55,4 @@ jobs: - name: Run Migration run: php artisan migrate -v env: - POSTGRES_HOST: localhost - POSTGRES_PORT: ${{ job.services.postgres.ports[5432] }} \ No newline at end of file + DB_PORT: ${{ job.services.postgres.ports[5432] }} \ No newline at end of file diff --git a/example/slim-framework.yml b/examples/slim-framework.yml similarity index 100% rename from example/slim-framework.yml rename to examples/slim-framework.yml