File tree 1 file changed +4
-3
lines changed
1 file changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -35,7 +35,7 @@ public function install()
35
35
// well as add the Spark "repository" to the configuration so Composer knows
36
36
// where Spark is located. Spark will get installed using the path option.
37
37
$ composer = $ this ->addRepository (
38
- $ this ->addSparkDependency ($ composer )
38
+ $ this ->addSparkDependencies ($ composer )
39
39
);
40
40
41
41
$ this ->writeComposerFile ($ composer );
@@ -54,14 +54,15 @@ protected function getComposerConfiguration()
54
54
}
55
55
56
56
/**
57
- * Add the Spark Composer dependency .
57
+ * Add the Spark Composer dependencies .
58
58
*
59
59
* @param array $composer
60
60
* @return array
61
61
*/
62
- protected function addSparkDependency ($ composer )
62
+ protected function addSparkDependencies ($ composer )
63
63
{
64
64
$ composer ['require ' ]['laravel/spark-aurelius ' ] = '*@dev ' ;
65
+ $ composer ['require ' ]['laravel/ui ' ] = '^2.0 ' ;
65
66
66
67
return $ composer ;
67
68
}
You can’t perform that action at this time.
0 commit comments