@@ -8,36 +8,36 @@ This package generates and returns a compiled view from a blade-syntax field in
88
99### Installation (Laravel v < 5)
1010
11- Require this package in your composer.json and run composer update (or run ` composer require dducro /db-blade-compiler:1.* ` directly):
11+ Require this package in your composer.json and run composer update (or run ` composer require flynsarmy /db-blade-compiler:1.* ` directly):
1212
13- "dducro /db-blade-compiler": "1.*"
13+ "flynsarmy /db-blade-compiler": "1.*"
1414
1515After updating composer, add the ServiceProvider to the providers array in app/config/app.php
1616
17- 'dducro \DbBladeCompiler\DbBladeCompilerServiceProvider',
17+ 'Flynsarmy \DbBladeCompiler\DbBladeCompilerServiceProvider',
1818
1919and the Facade to the aliases array in the same file
2020
21- 'DbView' => 'dducro \DbBladeCompiler\Facades\DbView',
21+ 'DbView' => 'Flynsarmy \DbBladeCompiler\Facades\DbView',
2222
2323You can also optionally publish the config-file
2424
25- php artisan config:publish dducro /db-blade-compiler
25+ php artisan config:publish flynsarmy /db-blade-compiler
2626
2727
2828### Installation (Laravel 5.x)
2929
30- Require this package in your composer.json and run composer update (or run ` composer require dducro /db-blade-compiler:2.* ` directly):
30+ Require this package in your composer.json and run composer update (or run ` composer require flynsarmy /db-blade-compiler:2.* ` directly):
3131
32- "dducro /db-blade-compiler": "2.*"
32+ "flynsarmy /db-blade-compiler": "2.*"
3333
3434After updating composer, add the ServiceProvider to the providers array in app/config/app.php
3535
36- 'dducro \DbBladeCompiler\DbBladeCompilerServiceProvider',
36+ 'Flynsarmy \DbBladeCompiler\DbBladeCompilerServiceProvider',
3737
3838and the Facade to the aliases array in the same file
3939
40- 'DbView' => 'dducro \DbBladeCompiler\Facades\DbView',
40+ 'DbView' => 'Flynsarmy \DbBladeCompiler\Facades\DbView',
4141
4242You have to also publish the config-file
4343
0 commit comments