# scandiweb/satoshi

> Satoshi Theme for Magento 2 on Hyva - High-performance, user experience-focused theme

`composer require scandiweb/satoshi`

Canonical URL: https://packagento.com/scandiweb/satoshi

## At a glance

- **Vendor**: scandiweb (https://packagento.com/scandiweb.md)
- **Latest version**: 2.0.0 — released 2025-07-11
- **Pricing**: Free
- **Package type**: Magento 2 theme
- **Status**: active, accepting new buyers

## Installation

Packagento is licence-gated, so even free packages need a licence on a project before Composer can resolve them.

1. **Sign in or create an account** at https://packagento.com/customer/account/.

2. **Add the package to your account.** Open https://packagento.com/scandiweb/satoshi and complete the free checkout. A licence is minted automatically.

3. **Create or pick a project, then activate the licence on it.**
   - Projects represent the Magento installs you deploy to. Manage them at https://packagento.com/projects/.
   - Activate the new licence on the project you'll deploy this package to. Activation is what generates the Composer credentials scoped to that project.

4. **Add the project credentials to your Magento codebase.**

   Grab the project's public + private key from https://packagento.com/projects/ (open the project, then its Credentials tab), and add them to `auth.json`:

   ```json
   {
     "http-basic": {
       "packagento.com": {
         "username": "ppk_live_...",
         "password": "psk_live_..."
       }
     }
   }
   ```

   Add the Packagento Composer repository to `composer.json`:

   ```json
   {
     "repositories": [
       { "type": "composer", "url": "https://packagento.com" }
     ]
   }
   ```

5. **Install and apply.**

   ```bash
   composer require scandiweb/satoshi:*
   bin/magento setup:upgrade
   bin/magento setup:di:compile
   bin/magento cache:flush
   ```

## What it does

Satoshi Theme for Magento 2 on Hyva - High-performance, user experience-focused theme

## README

> [!IMPORTANT]  
> **Satoshi is currently in public beta**. We’d love to hear your feedback — [join the discussion and share your thoughts here](https://github.com/scandiweb/satoshi-hyva/discussions/categories/improvement-ideas).

<br>

<p align="center"><a href="https://www.satoshitheme.com/hyva" target="_blank" rel="noopener noreferrer"><img width="400px" src="logo.png"></a></p>

<h3 align="center">Enhance exceptional Hyvä performance with outstanding Satoshi UX.</h3>

<p align="center">
  <img src="https://img.shields.io/github/last-commit/satoshiux/hyva">
  <img src="https://img.shields.io/github/license/satoshiux/hyva">
</p>

### Features

1. An app-like user journey
2. Page transitions & animations
3. Dynamic template rendering
4. Product preview peeks
5. PDP with instant add to cart
6. Image zoom to see products in detail
7. Seamless filtering & sorting
8. Endless Pagination
9. Smooth checkout experience

### Links

[Website](https://www.satoshitheme.com/hyva) • [Documentation](https://scandiweb.notion.site/Hyv-Satoshi-theme-documentation-1adc346d72c080ffb1b2faa454d6739d)

### Demo

You can check out the `Satoshi` demo at [hyva.satoshitheme.com](https://hyva.satoshitheme.com/). But if you're eager to see it in action, here's a sneak peek! 😉

https://github.com/user-attachments/assets/46f1f487-4436-4a8c-9399-5f22a15f27c8

### Getting started

Start with the [Developer Guide](https://scandiweb.notion.site/Hyv-Satoshi-theme-documentation-1adc346d72c080ffb1b2faa454d6739d?pvs=4#1b5c346d72c080bda053ee8412188e5f) section in our [documentation](https://scandiweb.notion.site/Hyv-Satoshi-theme-documentation-1adc346d72c080ffb1b2faa454d6739d)—it provides an overview of what you can achieve with Satoshi and guides you through the learning process.

### Changelog

Refer to the [Releases](https://github.com/satoshiux/hyva/releases) tab for details.

### License

Refer to the [License file](https://github.com/satoshiux/hyva/blob/production/LICENSE.md) for more details.

### Versioning

Satoshi follows semantic versioning. Here's what `major.minor.patch` (eg. `6.0.1`) means for us:

`major` - breaking changes, major new features, complete rewrites.\
`minor` - new features, released in backwards-compatible ways.\
`patch` - bug fixes & small non-breaking changes.

### Contributing guidelines

We welcome contributions! Please see the [Contributing Guidelines](CONTRIBUTING.md).

## Changelog

All notable changes to `Satoshi` will be documented in this file.

### 2.0.0 - 2025-07-11 - Package Release

-   Restructured to be a composer package

### 1.0.0 - 2025-03-25

-   Initial release

## Recent Versions

| Version | Released |
|---|---|
| 2.0.0 | 2025-07-11 |

## Dependencies

### Require

| Package | Constraint |
|---|---|
| hyva-themes/magento2-default-theme | ^1.3 |
| hyva-themes/magento2-luma-checkout | ^1.1 |
| php | >=8.1 |

## Quality

Latest release (2.0.0) fails the Packagento QA pipeline. Verdicts below are per-cell (Magento line × PHP version) for the matrixed tools, and run-once for the static / security tiers.


### Compatibility

Each Magento line is installed on its supported PHP versions, then the module is built (DI compile + static-content deploy). Cells show passed / failed / untested; staircase gaps render as `–`.

| Magento | PHP 8.2 | PHP 8.3 | PHP 8.4 | PHP 8.5 |
|---|---|---|---|---|
| 2.4.7 | 1 | 1 | – | – |
| 2.4.8 | – | 1 | 1 | – |
| 2.4.9 | – | – | 1 | 1 |


### Code Quality

Advisory checks against the module's source. Never affect the Compatibility verdict — a phpcs finding can't make a module incompatible.

#### Static Analysis

Coding standards (phpcs), mess detection (phpmd), copy-pasted code (cpd), PHP cross-version compatibility, composer.json validity. Each runs once for the whole module.

| Tool | Status | Findings | Summary |
|---|---|---|---|
| PHPCS | Fail | 1336 | 451 errors, 885 warnings (ruleset: Magento2) — 313 auto-fixable with phpcbf |
| PHPMD | Pass | 0 |  |
| Cpd | Pass | 0 |  |
| Composer validate | Info | 1 | valid; 1 advisory note (composer validate --strict) |

#### PHPStan

Type-checks the module against a real Magento install. Re-runs per Magento + PHP version because resolvable symbols differ between releases.

| Magento | PHP 8.2 | PHP 8.3 | PHP 8.4 | PHP 8.5 |
|---|---|---|---|---|
| 2.4.7 | Error | Error | – | – |
| 2.4.8 | – | Error | Error | – |
| 2.4.9 | – | – | Error | Error |


### Tests

Unit and integration suites run per Magento + PHP cell. Test failures speak to the module's behaviour, not its compatibility with a line, so they're reported here separately.

#### Unit Tests

| Magento | PHP 8.2 | PHP 8.3 | PHP 8.4 | PHP 8.5 |
|---|---|---|---|---|
| 2.4.7 | N/A | N/A | – | – |
| 2.4.8 | – | N/A | N/A | – |
| 2.4.9 | – | – | N/A | N/A |

#### Integration Tests

| Magento | PHP 8.2 | PHP 8.3 | PHP 8.4 | PHP 8.5 |
|---|---|---|---|---|
| 2.4.7 | N/A | N/A | – | – |
| 2.4.8 | – | N/A | N/A | – |
| 2.4.9 | – | – | N/A | N/A |


### Security

Dependency-advisory audit (composer audit) plus a source malware scan. A malware detection fails the version outright.

| Tool | Status | Findings | Summary |
|---|---|---|---|
| Composer audit | N/A | 0 | no resolvable dependency tree to audit — Your requirements could not be resolved to an installable set of packages. Problem 1 |
| Malware scan | Pass | 0 |  |

## Licence and pricing

Free. A licence is still minted on checkout and bound to your project for Composer access — no payment step.

Refundable within 14 days of first purchase via https://packagento.com/account/refunds/.

## Install via Claude Code or any MCP client

The Packagento MCP server can run the licence + project + Composer steps above in one tool call:

```
purchase_and_install_packages(
  composer_names=["scandiweb/satoshi"],
  project_id="proj_xxx"
)
```

This handles cart, checkout, licence minting, project activation, and writes auth.json credentials. Connect a client with `claude mcp add packagento https://mcp.packagento.com`. Full setup at https://packagento.com/docs/mcp-setup.

## Vendor

scandiweb is a Magento 2 vendor on Packagento. See https://packagento.com/scandiweb.md for their full catalogue.

