gnikyt / laravel-shopify

A full-featured Laravel package for aiding in Shopify App development
MIT License
1.24k stars 374 forks source link

Laravel 9 #1157

Closed AcriCAA closed 2 years ago

AcriCAA commented 2 years ago

Will there be forthcoming support for Laravel 9?

Composer is throwing this message: osiset/laravel-shopify[v17.1.0, ..., 17.1.x-dev] require laravel/framework ^7.0 || ^8.0 -> found laravel/framework[v7.0.0, ..., 7.x-dev, v8.0.0, ..., 8.x-dev] but it conflicts with your root composer.json require (^9.2).

RensBruil commented 2 years ago

Up for visibility :)

dutsik commented 2 years ago

up

frankiejarrett commented 2 years ago

There is a PR for this in #1100.

If you need an immediate workaround for Laravel 9 until that PR is merged...

Update your Laravel project's composer.json with:

{
  "repositories": [
    {
      "type": "vcs",
      "url": "git@github.com:steveperrycreative/laravel-shopify.git"
    }
  ],
  "require": {
    "osiset/laravel-shopify": "dev-master"
  }
}

Then:

composer update osiset/laravel-shopify
Kyon147 commented 2 years ago

Duplicate, so closing.