Skip to content

Commit 8344241

Browse files
committed
actualizacion de paquete como master dev
1 parent 0de127b commit 8344241

File tree

6 files changed

+3
-22
lines changed

6 files changed

+3
-22
lines changed

composer.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@
88
"email": "[email protected]"
99
}
1010
],
11-
"minimum-stability": "dev",
1211
"require": {
1312
"php": ">=7"
1413
},

phpunit.xml

Lines changed: 0 additions & 18 deletions
This file was deleted.

src/StringBladeCompilerServiceProvider.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,10 +21,10 @@ class StringBladeCompilerServiceProvider extends ServiceProvider
2121
*/
2222
public function boot()
2323
{
24-
$config_path = __DIR__ . '/../../../config/string-blade-compiler.php';
24+
$config_path = __DIR__ . '/config/string-blade-compiler.php';
2525
$this->publishes([$config_path => config_path('string-blade-compiler.php')], 'config');
2626

27-
$views_path = __DIR__ . '/../../../config/.gitkeep';
27+
$views_path = __DIR__ . '/config/.gitkeep';
2828
$this->publishes([$views_path => storage_path('app/string-blade-compiler/views/.gitkeep')]);
2929
}
3030

@@ -35,7 +35,7 @@ public function boot()
3535
*/
3636
public function register()
3737
{
38-
$config_path = __DIR__ . '/../../../config/string-blade-compiler.php';
38+
$config_path = __DIR__ . '/config/string-blade-compiler.php';
3939
$this->mergeConfigFrom($config_path, 'string-blade-compiler');
4040

4141
$this->app->singleton('StringView', function ($app) {
File renamed without changes.
File renamed without changes.

tests/.gitkeep

Whitespace-only changes.

0 commit comments

Comments
 (0)