├── .env.example ├── .gitignore ├── Plugins ├── Community │ ├── Backend │ │ └── .gitkeep │ ├── Core │ │ └── .gitkeep │ └── Frontend │ │ └── .gitkeep └── Local │ ├── Backend │ └── .gitkeep │ ├── Core │ └── .gitkeep │ └── Frontend │ └── .gitkeep ├── Procfile ├── README.md ├── Themes └── .gitkeep ├── app.json ├── app ├── AppKernel.php ├── autoload.php ├── config │ └── config.php ├── create_symlinks.sh ├── install.sh ├── services.xml └── update.sh ├── bin └── console ├── composer.json ├── composer.lock ├── files ├── documents │ └── .gitkeep └── downloads │ └── .gitkeep ├── src └── .gitkeep ├── var ├── cache │ └── .gitkeep └── logs │ └── .gitkeep └── web ├── .htaccess ├── .user.ini └── index.php /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcremer/shopware-composer-project/HEAD/.env.example -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcremer/shopware-composer-project/HEAD/.gitignore -------------------------------------------------------------------------------- /Plugins/Community/Backend/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Plugins/Community/Core/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Plugins/Community/Frontend/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Plugins/Local/Backend/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Plugins/Local/Core/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Plugins/Local/Frontend/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- 1 | web: vendor/bin/heroku-php-apache2 web/ 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcremer/shopware-composer-project/HEAD/README.md -------------------------------------------------------------------------------- /Themes/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcremer/shopware-composer-project/HEAD/app.json -------------------------------------------------------------------------------- /app/AppKernel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcremer/shopware-composer-project/HEAD/app/AppKernel.php -------------------------------------------------------------------------------- /app/autoload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcremer/shopware-composer-project/HEAD/app/autoload.php -------------------------------------------------------------------------------- /app/config/config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcremer/shopware-composer-project/HEAD/app/config/config.php -------------------------------------------------------------------------------- /app/create_symlinks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcremer/shopware-composer-project/HEAD/app/create_symlinks.sh -------------------------------------------------------------------------------- /app/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcremer/shopware-composer-project/HEAD/app/install.sh -------------------------------------------------------------------------------- /app/services.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcremer/shopware-composer-project/HEAD/app/services.xml -------------------------------------------------------------------------------- /app/update.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcremer/shopware-composer-project/HEAD/app/update.sh -------------------------------------------------------------------------------- /bin/console: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcremer/shopware-composer-project/HEAD/bin/console -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcremer/shopware-composer-project/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcremer/shopware-composer-project/HEAD/composer.lock -------------------------------------------------------------------------------- /files/documents/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /files/downloads/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /var/cache/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /var/logs/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /web/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcremer/shopware-composer-project/HEAD/web/.htaccess -------------------------------------------------------------------------------- /web/.user.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcremer/shopware-composer-project/HEAD/web/.user.ini -------------------------------------------------------------------------------- /web/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcremer/shopware-composer-project/HEAD/web/index.php --------------------------------------------------------------------------------