[SalesForce] No CONTROLLER named changeset deployment error

I'm trying to deploy a few lightning components but I am getting an error

No CONTROLLER named apex://CreateQuoteRequestController found : [markup://c:createQuoteRequestApp, markup://c:createQuoteRequest]

I have a lightning app named createQuoteRequestApp that displays a lightning component to a visualforce page

<aura:application access="GLOBAL" extends="ltng:outApp">
    <aura:dependency resource="c:createQuoteRequest"/>
</aura:application>

I also have the CreateQuoteRequestController apex controller included in the change set. How can I resolve this issue?

Related Topic