Skip to content

Commit

Permalink
fix(planner/php): Add app to context
Browse files Browse the repository at this point in the history
  • Loading branch information
pan93412 committed Jun 24, 2023
1 parent 29c21cd commit 06d6b6a
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions internal/php/identify.go
Original file line number Diff line number Diff line change
Expand Up @@ -29,11 +29,13 @@ func (i *identify) PlanMeta(options plan.NewPlannerOptions) types.PlanMeta {
framework := DetermineProjectFramework(options.Source)
phpVersion := GetPHPVersion(options.Source)
deps := DetermineAptDependencies(options.Source)
app := DetermineApplication(options.Source)

return types.PlanMeta{
"framework": string(framework),
"phpVersion": phpVersion,
"deps": strings.Join(deps, " "),
"app": string(app),
}
}

Expand Down

0 comments on commit 06d6b6a

Please sign in to comment.