Using composer to create a vendor folder and then packaging your project for the public would leave some cruft like test folders and docs in there. It looks like some of these files are absent from your downloads (though twig has a Test folder).
I assume you run a deployment script to cleanup after your composer install? What's it look like?
What's your deployment script like?
Re: What's your deployment script like?
Oh. Derp. You have your build.xml in a build folder.
I see you're using phing target clean-vendor-dir to clean that. I do wish composer had an install flag to exclude those files.
Looks like twig moved things into a Lib folder and you should update <delete dir="${dir}/vendor/twig/twig/test" /> to target it.
I see you're using phing target clean-vendor-dir to clean that. I do wish composer had an install flag to exclude those files.
Looks like twig moved things into a Lib folder and you should update <delete dir="${dir}/vendor/twig/twig/test" /> to target it.
- DavidIQ
- Customisations Team Leader
- Posts: 1905
- Joined: Thu Mar 02, 2006 4:29 pm
- Location: Earth
- Contact:
Re: What's your deployment script like?
Should probably create a ticket for that so it doesn't get missed.