All Projects → shopware → composer-project

shopware / composer-project

Licence: other
Skeleton for Shopware projects with composer

Programming Languages

PHP
23972 projects - #3 most used programming language
shell
77523 projects

Projects that are alternatives of or similar to composer-project

hubble-frontend-pwa
E-Commerce PWA Frontend
Stars: ✭ 43 (-40.28%)
Mutual labels:  ecommerce, shopware, ecommerce-platform
Vue Storefront
The open-source frontend for any eCommerce. Built with a PWA and headless approach, using a modern JS stack. We have custom integrations with Magento, commercetools, Shopware and Shopify and total coverage is just a matter of time. The API approach also allows you to merge VSF with any third-party tool like CMS, payment gateways or analytics. Ne…
Stars: ✭ 9,111 (+12554.17%)
Mutual labels:  ecommerce, shopware, ecommerce-platform
saleor
A modular, high performance, headless e-commerce platform built with Python, GraphQL, Django, and React.
Stars: ✭ 15,824 (+21877.78%)
Mutual labels:  ecommerce, ecommerce-platform
crimson commerce
An OpenSource Ecommerce platform on the Elixir/Phoenix stack, which aims to leverage the power of functional programming for ecommerce.
Stars: ✭ 74 (+2.78%)
Mutual labels:  ecommerce, ecommerce-platform
grandnode2
Free, Open source, Fast, Headless, Multi-tenant eCommerce platform built with .NET Core, MongoDB, AWS DocumentDB, Azure CosmosDB, LiteDB, Vue.js.
Stars: ✭ 626 (+769.44%)
Mutual labels:  ecommerce, ecommerce-platform
Zencart
Zen Cart® is a full-function e-commerce application for your website.
Stars: ✭ 250 (+247.22%)
Mutual labels:  ecommerce, ecommerce-platform
freshcom-api
Deprecated
Stars: ✭ 43 (-40.28%)
Mutual labels:  ecommerce, ecommerce-platform
FoodDelivery
E-Commerce demo project. Food delivery application project made with.
Stars: ✭ 106 (+47.22%)
Mutual labels:  ecommerce, ecommerce-platform
Shopper
An eCommerce administration built with Laravel 5 for create online shop.
Stars: ✭ 205 (+184.72%)
Mutual labels:  ecommerce, ecommerce-platform
v-shopware-api-client
The reliable way to import and update a bazillion products.
Stars: ✭ 20 (-72.22%)
Mutual labels:  ecommerce, shopware
MyOOS
MyOOS [Shop system] Repository
Stars: ✭ 26 (-63.89%)
Mutual labels:  ecommerce, ecommerce-platform
solidus auth devise
🔑 Devise authentication for your Solidus store.
Stars: ✭ 46 (-36.11%)
Mutual labels:  ecommerce, ecommerce-platform
E-commerceCustomerFYP
Android E-commerce Platform. Allow customer to buy product, chat, feedback rating, make payment to retailer
Stars: ✭ 41 (-43.06%)
Mutual labels:  ecommerce, ecommerce-platform
Arastta
Solid, Free, Open Source, Community Driven eCommerce
Stars: ✭ 251 (+248.61%)
Mutual labels:  ecommerce, ecommerce-platform
downtown
With our portal, we want to support local authorities and merchants. We want to connect merchants with closed stores to their customers. And we want to keep in mind, that not every merchant has a sophisticated digital strategy - or even a homepage.
Stars: ✭ 45 (-37.5%)
Mutual labels:  ecommerce, shopware
Scipio Erp
Your Online Business Kit - Build your own business applications. Create your own online shop. Customize to your own needs.
Stars: ✭ 247 (+243.06%)
Mutual labels:  ecommerce, ecommerce-platform
E-commerceRetailerFYP
Android E-commerce Platform. Allow retailer to post product, manage order, chat and view report
Stars: ✭ 31 (-56.94%)
Mutual labels:  ecommerce, ecommerce-platform
Coreshop
CoreShop - Pimcore eCommerce
Stars: ✭ 193 (+168.06%)
Mutual labels:  ecommerce, ecommerce-platform
Ecommwar
A leaderboard of the top open-source e-commerce platforms. Promoting the bests for building reliable stores.
Stars: ✭ 203 (+181.94%)
Mutual labels:  ecommerce, ecommerce-platform
production
Shopware 6 production template
Stars: ✭ 156 (+116.67%)
Mutual labels:  ecommerce, shopware

Composer template for Shopware projects

Starting with v5.4 Shopware supports installation using composer out of the box. Earlier versions of Shopware are not supported.

Installation

composer create-project shopware/composer-project my_project_name --no-interaction --stability=dev

This will clone the repository with all necessary dependencies into a new directory my_project_name. You can then either remove the history of this project by deleting the .git directory and start from scratch by executing git init ., or keep the history and just add your own remote to push to.

Afterwards you either provide a .env file for defining database credentials, the shop-url and Shopware version or have one created for you using an interactive installer.

To use the installer, simply run:

$ ./app/bin/install.sh

Configuration

Configuration settings like environment specific database settings, API tokens, server IPs or any type of credentials should be set via environment variables. That way you don't have to include any environment specific or sensitive information in your project. You can use a .env file for local development or as a workaround.

You can also configure some generic project services in app/services.xml. For instance, the error log is configured to use stderr output instead of default log file located at var/log directory. New and additional services should be provided using plugins, though.

Updating Shopware

Update the version number of shopware/shopware in composer.json. Then run composer update shopware/shopware to install the new version. Do not forget to commit the new composer.lock file to your project afterwards.

Prepare plugins for composer installation

Given you have a plugin called SwagMediaSftp add your dependencies in your plugins composer.json file. Also set the type to shopware-plugin. See the SwagMediaSftp repository for the complete plugin.

{
    "name": "shopwarelabs/swag-media-sftp",
    "type": "shopware-plugin",
    "description": "The SFTP adapter allows you to manage your media files in shopware on a SFTP environment.",
    "license": "MIT",
    "extra": {
        "installer-name": "SwagMediaSftp"
    },
    "require": {
        "league/flysystem-sftp": "^1.0"
    }
}

For a complete list of the available Shopware-related types see the Composer Installers repository.

Plugins

Plugins being installed like described above are installed into custom/plugins/, legacy Shopware plugins are getting installed into Plugins/. Those directories are included in the .gitignore of this repo so plugins installed via composer are not being tracked by git.

In case you need some project specific plugins that you don't want to add to your project via composer but track them using this repository, then you can add them to the custom/project directory. Only plugins using the new plugin style are supported.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].