Skip to content

Commit ac906c6

Browse files
committed
Cambio de nombre de repositorio
1 parent ea9482d commit ac906c6

File tree

6 files changed

+13
-13
lines changed

6 files changed

+13
-13
lines changed

composer.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"name": "wcadena/laravel-string-blade-compiler",
2+
"name": "wcadena/string-blade-compiler",
33
"description": "Render Blade templates from a string",
44
"keywords": ["laravel", "blade", "compiler", "eloquent", "model"],
55
"license": "MIT",
@@ -33,13 +33,13 @@
3333
},
3434
"autoload": {
3535
"psr-4": {
36-
"Bilaliqbalr\\StringBladeCompiler\\": "src/"
36+
"Wcadena\\StringBladeCompiler\\": "src/"
3737
}
3838
},
3939
"extra": {
4040
"laravel": {
4141
"providers": [
42-
"Bilaliqbalr\\StringBladeCompiler\\StringBladeCompilerServiceProvider"
42+
"Wcadena\\StringBladeCompiler\\StringBladeCompilerServiceProvider"
4343
]
4444
}
4545
}

readme.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -8,17 +8,17 @@ This package generates and returns a compiled view from a provided string
88

99
### Installation (Laravel 5.4.x)
1010

11-
Require this package in your composer.json and run composer update (or run `composer require bilaliqbalr/laravel-string-blade-compiler:1.*` directly):
11+
Require this package in your composer.json and run composer update (or run `composer require wcadena/string-blade-compiler:1.*` directly):
1212

13-
"bilaliqbalr/laravel-string-blade-compiler": "1.*"
13+
"wcadena/string-blade-compiler": "1.*"
1414

1515
After updating composer, add the ServiceProvider to the providers array in app/config/app.php
1616

17-
Bilaliqbalr\StringBladeCompiler\StringBladeCompilerServiceProvider::class,
17+
Wcadena\StringBladeCompiler\StringBladeCompilerServiceProvider::class,
1818

1919
and the Facade to the aliases array in the same file
2020

21-
'StringView' => Bilaliqbalr\StringBladeCompiler\Facades\StringView::class,
21+
'StringView' => Wcadena\StringBladeCompiler\Facades\StringView::class,
2222

2323
You have to also publish the config-file
2424

@@ -34,4 +34,4 @@ This package offers a `StringView` facade with the same syntax as `View` but acc
3434

3535
### License
3636

37-
laravel-string-blade-compiler is open-sourced software licensed under the [MIT license](http://opensource.org/licenses/MIT)
37+
string-blade-compiler is open-sourced software licensed under the [MIT license](http://opensource.org/licenses/MIT)

src/Bilaliqbalr/StringBladeCompiler/Facades/StringView.php renamed to src/Wcadena/StringBladeCompiler/Facades/StringView.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<?php
2-
namespace Bilaliqbalr\StringBladeCompiler\Facades;
2+
namespace Wcadena\StringBladeCompiler\Facades;
33

44
use Illuminate\Support\Facades\Facade;
55
use Illuminate\Support\Facades\Log;

src/Bilaliqbalr/StringBladeCompiler/StringBladeCompiler.php renamed to src/Wcadena/StringBladeCompiler/StringBladeCompiler.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<?php
2-
namespace Bilaliqbalr\StringBladeCompiler;
2+
namespace Wcadena\StringBladeCompiler;
33

44
use Illuminate\Support\Facades\Log;
55
use Illuminate\View\Compilers\BladeCompiler;

src/Bilaliqbalr/StringBladeCompiler/StringBladeCompilerServiceProvider.php renamed to src/Wcadena/StringBladeCompiler/StringBladeCompilerServiceProvider.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<?php
2-
namespace Bilaliqbalr\StringBladeCompiler;
2+
namespace Wcadena\StringBladeCompiler;
33

44
use Illuminate\Support\Facades\Log;
55
use Illuminate\Support\ServiceProvider;
@@ -53,7 +53,7 @@ public function register()
5353
$this->app->booting(function () {
5454
Log::info('Entroa aca!!!!!');
5555
$loader = \Illuminate\Foundation\AliasLoader::getInstance();
56-
$loader->alias('StringView', 'Bilaliqbalr\StringBladeCompiler\Facades\StringView');
56+
$loader->alias('StringView', 'Wcadena\StringBladeCompiler\Facades\StringView');
5757
});
5858
}
5959

src/Bilaliqbalr/StringBladeCompiler/StringView.php renamed to src/Wcadena/StringBladeCompiler/StringView.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<?php
2-
namespace Bilaliqbalr\StringBladeCompiler;
2+
namespace Wcadena\StringBladeCompiler;
33

44
use Illuminate\Support\Facades\Log;
55
use View;

0 commit comments

Comments
 (0)