Creating a laravel package, which has its own dependencies as well.
The package depends on another package: e.g. lets say I have the two packages .e.g:
package: Contractors:
Above package holds the Contractors details and all that info about the Contractors
pacakge: Accounting:
This package process the Contractors payments and all other payments of fed into it.
Kind of acts as the central money processing section.
With the above case scenario, When testing say whether hmm, say testCanWePayAllContractors
We'll need to create a dummy Contractor,
This could be if the Contractor
model was in the Accounting
package, we could just include this with:
first include your migrations in the setup() function in the base testCase something like:
$this->withFactories(__DIR__.'/../database/factories');
to therefore have: factory(Contractor::class)->create();
But this will not see the factories from the other Contractors
package that is in this case installed as a dependencies in the accounting package.