Skip to content

v1.2.0

Compare
Choose a tag to compare
@SebKay SebKay released this 07 Jan 19:28

What's Changed

Full Changelog: 1.1.0...1.2.0

Highlights

Plugins and Theme Configuration

You can can now configure plugins and themes to use in tests, like so:

# config.touchstone.php

<?php

return [
    'plugins' => [
        [
            'name' => 'Hello Dolly',
            'file' => dirname(__FILE__) . '/bin/plugins/hello-dolly/hello.php',
        ],
    ],
    'theme' => [
        'root' => dirname(__FILE__) . '/../../themes/twentytwentyone',
    ],
];