Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
markitosgv authored Oct 7, 2016
1 parent 0308542 commit effc065
Showing 1 changed file with 12 additions and 12 deletions.
24 changes: 12 additions & 12 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
# WobbleCode - SMS Counter for PHP
# Instasent - SMS Counter for PHP

Character counter for SMS Messages

[![Build Status](https://img.shields.io/travis/wobblecode/sms-counter-php.svg?style=flat-square)](https://travis-ci.org/wobblecode/sms-counter-php)
[![Build Status](https://img.shields.io/travis/instasent/sms-counter-php.svg?style=flat-square)](https://travis-ci.org/instasent/sms-counter-php)
[![SensioLabsInsight](https://img.shields.io/sensiolabs/i/0a2fa87a-0287-46f6-b8b5-818b44a2b9f9.svg?style=flat-square)](https://insight.sensiolabs.com/projects/0a2fa87a-0287-46f6-b8b5-818b44a2b9f9)

##Usage

```php
use WobbleCode\SMSCounter\SMSCounter;
use Instasent\SMSCounter\SMSCounter;

$smsCounter = new SMSCounter;
$smsCounter->count('some-string-to-be-counted');
Expand All @@ -18,23 +18,23 @@ which returns
```
stdClass Object
(
[encoding] => GSM_7BIT
[length] => 25
[per_message] => 160
[remaining] => 135
[messages] => 1
[encoding] => GSM_7BIT
[length] => 25
[per_message] => 160
[remaining] => 135
[messages] => 1
)
```

##Installation

`sms-counter-php` is available via [composer](http://getcomposer.org) on [packagist](https://packagist.org/packages/wobblecode/sms-counter-php).
`sms-counter-php` is available via [composer](http://getcomposer.org) on [packagist](https://packagist.org/packages/instasent/sms-counter-php).

```json
{
"require": {
"wobblecode/sms-counter-php": "dev-master"
}
"require": {
"instasent/sms-counter-php": "dev-master"
}
}
```

Expand Down

0 comments on commit effc065

Please sign in to comment.