Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/elao/accesseo
- Owner: Elao
- License: mit
- Created: 2020-11-08T20:09:34.000Z (about 4 years ago)
- Default Branch: master
- Last Pushed: 2024-04-12T10:41:17.000Z (7 months ago)
- Last Synced: 2024-10-29T04:17:24.365Z (17 days ago)
- Topics: accessibility, seo, symfony-bundle, symfony-profiler
- Language: PHP
- Homepage:
- Size: 287 KB
- Stars: 29
- Watchers: 7
- Forks: 3
- Open Issues: 12
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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
- ...
```