basecom / sw6-fixtures-plugin
basecom Fixtures Plugin
Installs: 84 083
Dependents: 0
Suggesters: 0
Security: 0
Stars: 15
Watchers: 3
Forks: 3
Open Issues: 2
Type:shopware-platform-plugin
Requires
- php: ^8.2 || ^8.3
- shopware/administration: 6.5.*|6.6.*
- shopware/core: 6.5.*|6.6.*
- shopware/storefront: 6.5.*|6.6.*
- spatie/once: ^3.1
Requires (Dev)
- friendsofphp/php-cs-fixer: 3.58.1
- phpstan/phpstan: ^1.10
- vimeo/psalm: ^5.20
README
The FixturePlugin for Shopware 6 offers convenient commands and structures to create and manage fixtures for your shop project or plugin.
Documentation
Please see the official documentation to see how to get started!
Installation
You can easily install the plugin via Composer in any existing Shopware shop:
# Install the plugin via Composer composer require basecom/sw6-fixtures-plugin # Refresh the plugin list and install/activate the plugin bin/console plugin:refresh bin/console plugin:install --activate BasecomFixturePlugin
Contribution
This plugin uses a full-featured Dockware docker image. It already comes with a pre-installed Shopware 6 instance and everything you need to start developing.
Please see the Dockware documentation.
To start developing, simply start the container:
> docker compose up -d
Access the container:
> make shell
Install the dependencies and make everything ready (defined in composer.json and package.json). This command needs to be executed from the host-system (not in shell)
> make install
Linting
Before committing, please run the linting and static analysis tools. This command also needs to be executed from the host machine (not in shell):
> make lint
Github Actions
The Github actions pipeline is already pre-configured. It contains multiple jobs for all linting, static analysis and testing tools.