Skip to content

Commit

Permalink
Rename vendor
Browse files Browse the repository at this point in the history
  • Loading branch information
Ben Speakman committed Jan 19, 2016
1 parent fef1f8f commit a66f00f
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 10 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ Laravel Paymill is a Laravel 5 specific wrapper for the [Paymill PHP](https://gi

Simply add the following line to your `composer.json` and run install/update:

"speakman/laravel-paymill": "~1.3"
"threesquared/laravel-paymill": "~1.3"

## Configuration

Expand All @@ -27,11 +27,11 @@ You will also need to add the service provider and the facade alias to your `con

```php
'providers' => array(
Speakman\LaravelPaymill\LaravelPaymillServiceProvider::class
Threesquared\LaravelPaymill\LaravelPaymillServiceProvider::class
)

'aliases' => array(
'Paymill' => Speakman\LaravelPaymill\Facades\Paymill::class
'Paymill' => Threesquared\LaravelPaymill\Facades\Paymill::class
),
```

Expand Down
4 changes: 2 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "speakman/laravel-paymill",
"name": "threesquared/laravel-paymill",
"description": "Laravel wrapper for the Paymill API",
"keywords": ["laravel", "package", "paymill", "payments", "billing"],
"license": "MIT",
Expand All @@ -22,7 +22,7 @@
"src/migrations"
],
"psr-0": {
"Speakman\\LaravelPaymill\\": "src/"
"Threesquared\\LaravelPaymill\\": "src/"
}
},
"minimum-stability": "stable"
Expand Down
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
<?php namespace Speakman\LaravelPaymill\Facades;
<?php namespace Threesquared\LaravelPaymill\Facades;

use Illuminate\Support\Facades\Facade;

class Paymill extends Facade {

protected static function getFacadeAccessor() { return 'paymill'; }

}
}
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<?php namespace Speakman\LaravelPaymill;
<?php namespace Threesquared\LaravelPaymill;

use Illuminate\Support\ServiceProvider;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<?php namespace Speakman\LaravelPaymill;
<?php namespace Threesquared\LaravelPaymill;

use Paymill\Request;

Expand Down
2 changes: 1 addition & 1 deletion tests/ModelTest.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

use Speakman\LaravelPaymill\Paymill;
use Threesquared\LaravelPaymill\Paymill;

class FactoryTest extends PHPUnit_Framework_TestCase {

Expand Down

0 comments on commit a66f00f

Please sign in to comment.