Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,14 @@ composer.phar
/.idea/
/build

# PHPUnit
.phpunit.result.cache

# Playwright E2E artifacts
tests/pw/test-results/
tests/pw/playwright-report/
tests/pw/.last-run.json

# Commit your application's lock file https://getcomposer.org/doc/01-basic-usage.md#commit-your-composer-lock-file-to-version-control
# You may choose to ignore a library lock file http://getcomposer.org/doc/02-libraries.md#lock-file
# composer.lock
Expand Down
9 changes: 9 additions & 0 deletions CONTEXT.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,3 +27,12 @@ A glossary of domain terms for this plugin. Keep implementation details out.
(getdokan/plugin-ui). Components render inside a `ThemeProvider` scope.
TryAura consumes it with default tokens: no custom theme, no dark mode, and
no Shadow DOM for now.

## Features

- **Enhancer** — The admin feature that turns a store's existing product photos into
new or improved visuals from inside the WordPress media modal: AI images for all
users, and AI videos for Pro. Not the customer-facing feature — that is Try-On.
- **Try-On** — The customer-facing feature on WooCommerce single-product pages where a
shopper supplies a photo (upload or camera) and sees themselves composited wearing or
using the product. Avoid "virtual mirror," a marketing phrase for the same thing.
17 changes: 16 additions & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,11 @@
"Dokan\\TryAura\\ThirdParty\\Packages\\": "lib/packages/"
}
},
"autoload-dev": {
"psr-4": {
"Dokan\\TryAura\\Test\\": "tests/php/src"
}
},
"authors": [
{
"name": "Dokan Inc.",
Expand All @@ -27,7 +32,11 @@
"squizlabs/php_codesniffer": "*",
"dealerdirect/phpcodesniffer-composer-installer": "*",
"league/container": "^4.2",
"coenjacobs/mozart": "^0.7"
"coenjacobs/mozart": "^0.7",
"phpunit/phpunit": "^9.6",
"yoast/phpunit-polyfills": "^1.1",
"wp-phpunit/wp-phpunit": "^6.6",
"brain/monkey": "^2.6"
},
"config": {
"allow-plugins": {
Expand All @@ -51,6 +60,12 @@
],
"phpcbf": [
"vendor/bin/phpcbf -p"
],
"test": [
"phpunit"
],
"test-f": [
"phpunit --filter"
]
},
"extra": {
Expand Down
Loading