laravel-shopify icon indicating copy to clipboard operation
laravel-shopify copied to clipboard

Make requests to the Shopify API from your Laravel app

Results 17 laravel-shopify issues
Sort by recently updated
recently updated
newest added

I am using the latest version of package, and when trying to create a product like its written in the documentation: ``` // Create a product $product = $shopify->createProduct([ 'title'...

When I try to require the module, I receive this error: ``` Problem 1 - signifly/laravel-shopify[v1.2.0, ..., v1.2.4] require illuminate/contracts ^8.0|^9.0 -> found illuminate/contracts[v8.0.0, ..., v8.83.27, v9.0.0, ..., v9.52.16] but...

Allow installations on PHP 8.3. Tested with a fresh Laravel 11.

I'm wondering if there is an official release for L11 support.

According to Shopify "The REST Admin API is a legacy API as of October 1, 2024. All apps and integrations should be built with the [GraphQL Admin API](https://shopify.dev/docs/api/admin-graphql). For details...

The config for this lib requires a token however Shopify provides a Client ID and Client Secret. Most libraries will take the native provided Id + Secret and include scaffolding...

I am building a shopify app using Laravel signifly pacakge and by using that I have write following code to get access token: ``` https://{$shopDomain}/admin/oauth/authorize?client_id=" . env('SHOPIFY_API_KEY') . "&scope=read_products,write_products&redirect_uri=" ....