Skip to content

Commit

Permalink
fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
koriym committed Sep 5, 2015
1 parent 6878e96 commit d155c20
Showing 1 changed file with 7 additions and 6 deletions.
13 changes: 7 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
# Ray.AuraSessionModule

[![Scrutinizer Code Quality](https://scrutinizer-ci.com/g/ray-di/Ray.AuraSesssionModule/badges/quality-score.png?b=1.x)](https://scrutinizer-ci.com/g/ray-di/Ray.AuraSesssionModule/?branch=1.x)
[![Code Coverage](https://scrutinizer-ci.com/g/ray-di/Ray.AuraSesssionModule/badges/coverage.png?b=1.x)](https://scrutinizer-ci.com/g/ray-di/Ray.AuraSesssionModule/?branch=1.x)
[![Build Status](https://travis-ci.org/ray-di/Ray.AuraSesssionModule.svg?branch=1.x)](https://travis-ci.org/ray-di/Ray.AuraSesssionModule)
[![Scrutinizer Code Quality](https://scrutinizer-ci.com/g/ray-di/Ray.AuraSessionModule/badges/quality-score.png?b=1.x)](https://scrutinizer-ci.com/g/ray-di/Ray.AuraSessionModule/?branch=1.x)
[![Code Coverage](https://scrutinizer-ci.com/g/ray-di/Ray.AuraSessionModule/badges/coverage.png?b=1.x)](https://scrutinizer-ci.com/g/ray-di/Ray.AuraSessionModule/?branch=1.x)
[![Build Status](https://travis-ci.org/ray-di/Ray.AuraSessionModule.svg?branch=1.x)](https://travis-ci.org/ray-di/Ray.AuraSessionModule)

An [Aura.Session](https://github.com/auraphp/Aura.Session) module for [Ray.Di](https://github.com/ray-di/Ray.Di).

Expand All @@ -11,20 +11,21 @@ An [Aura.Session](https://github.com/auraphp/Aura.Session) module for [Ray.Di](h
### Composer install

$ composer require ray/aura-session-module

### Module install

```php
use Ray\Di\AbstractModule;
use Ray\AuraSessionModule\AuraSesssionModule;
use Ray\AuraSessionModule\AuraSessionModule;

class AppModule extends AbstractModule
{
protected function configure()
{
$this->install(new AuraSesssionModule);
$this->install(new AuraSessionModule);
}
}
```

### Requirements

Expand Down

0 comments on commit d155c20

Please sign in to comment.