Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/elao/accesseo

Provide accessibility and SEO insights of your page in Symfony profiler
https://github.com/elao/accesseo

accessibility seo symfony-bundle symfony-profiler

Last synced: 5 days ago
JSON representation

Provide accessibility and SEO insights of your page in Symfony profiler

Awesome Lists containing this project

README

        

# Accesseo

Accesseo helps you improve the accessibility and SEO of your pages with some simple optimization insights.

## Installation

```
composer require --dev elao/accesseo:^1.0@beta
```

in `config/bundles.php` add:

```php
Elao\Bundle\Accesseo\ElaoAccesseoBundle::class => ['dev' => true],
```

### Configuration options

in `config/packages/elao_accesseo.yaml` :

#### Disable bundle :

```yaml
elao_accesseo:
enabled: false
```

#### Disable SEO panel :

```yaml
elao_accesseo:
enabled_seo_panel: false
```

#### Disable Accessibility panel :

```yaml
elao_accesseo:
enabled_accessibility_panel: false
```

### Accessibility panel : icons

Configure the list of icons css classes in your html so we can check if they are readable by screen readers :

```yaml
elao_accesseo:
icons:
- icon
- duck-icon
- ...
```