phpish / shopify_app-skeleton

Skeleton Shopify App project using phpish/shopify
94 stars 41 forks source link

Ist there a version available that runs without composer? #41

Open mhuegel opened 7 years ago

myjanky commented 7 years ago

You do not need to run composer. Just make sure that any other Libraries that are listed in the composer.json file are in the path listed in the file.

For example, this composer.json has phpish/shopify.php as a required lib and php version greater or equal to 5.3.0. (you can find phpish/shopify.php here https://github.com/phpish/shopify

{ "minimum-stability": "dev", "require": { "php": ">=5.3.0", "phpish/shopify": "dev-master" } }

mhuegel commented 6 years ago

Sorry for my late reply - thank you!