Skip to content

Commit d762f01

Browse files
committed
include laravel/ui
1 parent 2ac6796 commit d762f01

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

src/Installation/UpdateComposerFile.php

+4-3
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ public function install()
3535
// well as add the Spark "repository" to the configuration so Composer knows
3636
// where Spark is located. Spark will get installed using the path option.
3737
$composer = $this->addRepository(
38-
$this->addSparkDependency($composer)
38+
$this->addSparkDependencies($composer)
3939
);
4040

4141
$this->writeComposerFile($composer);
@@ -54,14 +54,15 @@ protected function getComposerConfiguration()
5454
}
5555

5656
/**
57-
* Add the Spark Composer dependency.
57+
* Add the Spark Composer dependencies.
5858
*
5959
* @param array $composer
6060
* @return array
6161
*/
62-
protected function addSparkDependency($composer)
62+
protected function addSparkDependencies($composer)
6363
{
6464
$composer['require']['laravel/spark-aurelius'] = '*@dev';
65+
$composer['require']['laravel/ui'] = '^2.0';
6566

6667
return $composer;
6768
}

0 commit comments

Comments
 (0)