BNMetrics / Laravel-ShopifyAPI

Shopify Laravel API Wrapper ( with Billing support!)
MIT License
53 stars 29 forks source link

shopify.php config file not generated #2

Closed baberuth22 closed 7 years ago

baberuth22 commented 7 years ago

I run $: php artisan vendor:publish --tag=shopify Publishing complete.

But the file is not generated in app/config. Tried setting all files to 777, but still no shopify.php generated.

baberuth22 commented 7 years ago

Should I manually copy /vendor/bin/bnmetrics/laravel-shopif-api/src/config/shopify.php to /app/config/shopify.php?

BNMetrics commented 7 years ago

Hi there @baberuth22, I think with the auto package discovery, there is a bit of issue with laravel 5.4

Try running the following commands:

php artisan config:clear
php artisan cache:clear
php artisan vendor:publish --provider='BNMetrics\Shopify\ShopifyServiceProvider'

Let me know if this works.

Thanks!