Enable A11y tests for your Laravel project.

v0.1 2020-10-15 16:10 UTC

This package is auto-updated.

Last update: 2024-02-29 04:04:50 UTC


README

Latest Version on Packagist Total Downloads

This is where your description should go. Take a look at contributing.md to see a to do list.

Installation

Via Composer

$ composer require silvertipsoftware/a11y

Usage

In your your Laravel project's AppServiceProvider.php, add a Browser::mixin to the boot() method:

    public function boot() {
        ...

        if ($this->app->environment('local', 'testing')) {
            Browser::mixin(new \SilvertipSoftware\A11y\BrowserMixins);
        }

        ...
    }

Change log

Please see the changelog for more information on what has changed recently.

Contributing

Please see contributing.md for details and a todolist.

Security

If you discover any security related issues, please email andre@silvertipsoftware.com instead of using the issue tracker.

Credits

License

WTFPL. Please see the license file for more information.