Skip to content

Commit f89093d

Browse files
[laravel-mentions] Update namespace from Busayo to Unicodeveloper
1 parent 3f733d5 commit f89093d

11 files changed

+24
-24
lines changed

CHANGELOG.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
All Notable changes to laravel-mentions will be documented in this file
44

5-
## NEXT - YYYY-MM-DD
5+
## 2015-11-04
66

77
### Added
88
- Nothing
@@ -11,7 +11,7 @@ All Notable changes to laravel-mentions will be documented in this file
1111
- Nothing
1212

1313
### Fixed
14-
- Nothing
14+
- Changed namespace from Busayo to Unicodeveloper
1515

1616
### Removed
1717
- Nothing

LICENSE.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# The MIT License (MIT)
22

3-
Copyright (c) 2015 :author_name <:author_email>
3+
Copyright (c) 2015 Prosper Otemuyiwa <[email protected]>
44

55
> Permission is hereby granted, free of charge, to any person obtaining a copy
66
> of this software and associated documentation files (the "Software"), to deal

README.md

+8-8
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
1-
# Laravel Mentions
1+
# laravel-mentions
22

3-
[![Latest Stable Version](https://poser.pugx.org/busayo/laravel-mentions/v/stable.svg)](https://packagist.org/packages/busayo/laravel-mentions)
3+
[![Latest Stable Version](https://poser.pugx.org/unicodeveloper/laravel-mentions/v/stable.svg)](https://packagist.org/packages/unicodeveloper/laravel-mentions)
44
![](https://img.shields.io/badge/unicodeveloper-approved-brightgreen.svg)
5-
[![License](https://poser.pugx.org/busayo/laravel-mentions/license.svg)](LICENSE.md)
6-
[![Build Status](https://img.shields.io/travis/busayo/laravel-mentions.svg)](https://travis-ci.org/busayo/laravel-mentions)
7-
[![Quality Score](https://img.shields.io/scrutinizer/g/busayo/laravel-mentions.svg?style=flat-square)](https://scrutinizer-ci.com/g/busayo/laravel-mentions)
8-
[![Total Downloads](https://img.shields.io/packagist/dt/busayo/laravel-mentions.svg?style=flat-square)](https://packagist.org/packages/busayo/laravel-mentions)
5+
[![License](https://poser.pugx.org/unicodeveloper/laravel-mentions/license.svg)](LICENSE.md)
6+
[![Build Status](https://img.shields.io/travis/unicodeveloper/laravel-mentions.svg)](https://travis-ci.org/unicodeveloper/laravel-mentions)
7+
[![Quality Score](https://img.shields.io/scrutinizer/g/unicodeveloper/laravel-mentions.svg?style=flat-square)](https://scrutinizer-ci.com/g/unicodeveloper/laravel-mentions)
8+
[![Total Downloads](https://img.shields.io/packagist/dt/unicodeveloper/laravel-mentions.svg?style=flat-square)](https://packagist.org/packages/unicodeveloper/laravel-mentions)
99

1010
This package makes it possible to create text/textarea fields that enable **mentioning** by using [At.js](https://github.com/ichord/At.js).
1111

@@ -17,15 +17,15 @@ First, pull in the package through Composer.
1717

1818
```js
1919
"require": {
20-
"busayo/laravel-mentions": "1.0.*"
20+
"unicodeveloper/laravel-mentions": "1.1.*"
2121
}
2222
```
2323

2424
And then include these service providers within `config/app.php`.
2525

2626
```php
2727
'providers' => [
28-
Busayo\Mention\MentionServiceProvider::class,
28+
Unicodeveloper\Mention\MentionServiceProvider::class,
2929
Collective\Html\HtmlServiceProvider::class,
3030
];
3131
```

composer.json

+5-4
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,15 @@
11
{
2-
"name": "busayo/laravel-mentions",
2+
"name": "unicodeveloper/laravel-mentions",
33
"description": "Laravel 5 package that provides facebook-like mention functionality",
44
"keywords": [
55
"laravel",
6+
"laravel 5",
67
"laravel-mentions",
78
"facebook-mentions",
89
"autocomplete",
910
"smart search"
1011
],
11-
"homepage": "https://github.com/busayo/laravel-mentions",
12+
"homepage": "https://github.com/unicodeveloper/laravel-mentions",
1213
"license": "MIT",
1314
"authors": [
1415
{
@@ -28,15 +29,15 @@
2829
},
2930
"autoload": {
3031
"psr-4": {
31-
"Busayo\\Mention\\": "src"
32+
"Unicodeveloper\\Mention\\": "src"
3233
},
3334
"files": [
3435
"src/helper.php"
3536
]
3637
},
3738
"autoload-dev": {
3839
"psr-4": {
39-
"Busayo\\Mention\\Test\\": "tests"
40+
"Unicodeveloper\\Mention\\Test\\": "tests"
4041
}
4142
},
4243
"scripts": {

phpunit.xml.dist

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
processIsolation="false"
1111
stopOnFailure="false">
1212
<testsuites>
13-
<testsuite name="Laravel-mentions Test Suite">
13+
<testsuite name="laravel-mentions Test Suite">
1414
<directory>tests</directory>
1515
</testsuite>
1616
</testsuites>

src/Factory/MentionBuilder.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php
22

3-
namespace Busayo\Mention\Factory;
3+
namespace Unicodeveloper\Mention\Factory;
44

55
use Collective\Html\FormBuilder as FormBuilder;
66
use Collective\Html\HtmlBuilder as HtmlBuilder;

src/Http/Controllers/ApiController.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php
22

3-
namespace Busayo\Mention\Http\Controllers;
3+
namespace Unicodeveloper\Mention\Http\Controllers;
44

55
use Illuminate\Http\Request;
66
use Illuminate\Routing\Controller;

src/Http/routes.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
<?php
22

3-
Route::get('/api/mentions/{type}', 'Busayo\Mention\Http\Controllers\ApiController@index');
3+
Route::get('/api/mentions/{type}', 'Unicodeveloper\Mention\Http\Controllers\ApiController@index');

src/MentionServiceProvider.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
<?php
22

3-
namespace Busayo\Mention;
3+
namespace Unicodeveloper\Mention;
44

5-
use Busayo\Mention\Factory\MentionBuilder;
65
use Illuminate\Support\ServiceProvider;
6+
use Unicodeveloper\Mention\Factory\MentionBuilder;
77

88
class MentionServiceProvider extends ServiceProvider
99
{

src/helper.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,6 @@
88
*/
99
function mention()
1010
{
11-
return app('\Busayo\Mention\Factory\MentionBuilder');
11+
return app('\Unicodeveloper\Mention\Factory\MentionBuilder');
1212
}
1313
}

tests/ExampleTest.php

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,10 @@
11
<?php
22

3-
namespace Busayo\Mention\Test;
3+
namespace Unicodeveloper\Mention\Test;
44

55
class ExampleTest extends \PHPUnit_Framework_TestCase
66
{
77

8-
98
/**
109
* Test that true does in fact equal true
1110
*/

0 commit comments

Comments
 (0)