Using a terminal, I suppose you could do:
php apigen.phar generate --source xxx --destination xxx --exclude folder_to_excluse --exlude yet_another_folder
(its the same behavior with multiple sources)
I am trying to exclude multiple folders in a .conf file, when I have an answer, I will update this answer: D, hope this helps.
- Update -
To add multiple sources and / or multiple exceptions to a configuration file:
source:
- ../sys
- ../anotherfolder
destination: 'C:\xampp\htdocs\yourfolder'
extensions: [php]
exclude:
- '../sys/vendor'
- '..sys/core'
And to run the configuration file:
apigen generate --config file.conf
source
share