zfcampus / zf-apigility-admin

Admin API and UI for Apigility
BSD 3-Clause "New" or "Revised" License
90 stars 64 forks source link

Use realpath to get modules. Fixes packaging on IBM i. #398

Closed jbh closed 5 years ago

jbh commented 5 years ago

When trying to package APIs on IBM i, there is an issue with the glob() method. glob() on IBM i needs the full path and not a relative one. To fix this, I use realpath() and basename().

weierophinney commented 5 years ago

Thanks, @jbh!