From fbae7bbda1c387db6df215796b9904548601e5ec Mon Sep 17 00:00:00 2001 From: Wolfred Montilla Date: Sun, 25 Apr 2021 14:11:07 -0400 Subject: [PATCH 1/3] add example to the .env for cloudinary --- .env.example | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.env.example b/.env.example index 6684722..0bdf5c1 100644 --- a/.env.example +++ b/.env.example @@ -47,3 +47,7 @@ PUSHER_APP_CLUSTER=mt1 MIX_PUSHER_APP_KEY="${PUSHER_APP_KEY}" MIX_PUSHER_APP_CLUSTER="${PUSHER_APP_CLUSTER}" + +CLOUDINARY_API_KEY= +CLOUDINARY_API_SECRET= +CLOUDINARY_CLOUD_NAME= From 5ff8b6c6cf605ae2a0cf822c8f578bf860d8f07f Mon Sep 17 00:00:00 2001 From: Wolfred Montilla Date: Sun, 25 Apr 2021 14:11:31 -0400 Subject: [PATCH 2/3] add configuration in the config filesystem --- config/filesystems.php | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/config/filesystems.php b/config/filesystems.php index 10c9d9b..cb20ad9 100644 --- a/config/filesystems.php +++ b/config/filesystems.php @@ -52,6 +52,13 @@ 'endpoint' => env('AWS_ENDPOINT'), ], + 'cloudinary' => [ + 'driver' => 'cloudinary', + 'api_key' => env('CLOUDINARY_API_KEY'), + 'api_secret' => env('CLOUDINARY_API_SECRET'), + 'cloud_name' => env('CLOUDINARY_CLOUD_NAME'), + ], + ], /* From c1e53e3eda2b966af9bcd553b7852e7e3cea6a7b Mon Sep 17 00:00:00 2001 From: Wolfred Montilla Date: Sun, 25 Apr 2021 14:15:30 -0400 Subject: [PATCH 3/3] bump dependencies --- composer.json | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/composer.json b/composer.json index 9130223..203dcb2 100644 --- a/composer.json +++ b/composer.json @@ -12,8 +12,13 @@ "laravel/framework": "^8.12", "laravel/nova": "^3.22", "laravel/tinker": "^2.5", - "tipoff/authorization": "^2.8.1", - "tipoff/locations": "^2.10.0" + "silvanite/nova-field-cloudinary": "^1.3", + "tipoff/authorization": "^2.8.6", + "tipoff/checkout": "^2.7.2", + "tipoff/escape-room": "^2.3.4", + "tipoff/locations": "^2.12.0", + "tipoff/scheduler": "^2.0.1", + "tipoff/support": "^2.1.5" }, "require-dev": { "facade/ignition": "^2.8.2",