Copying small startups, test #1

It’s all going to take a while to work out. I’ve got an old online campsite booking tool that I charge the original customer $1k/year to keep switched on. It looks, feels and quacks like a SaaS, so will be useful to get some re-exposure to a lot of the side pieces to running the […]

Swagger to Laravel Library

Given an OpenAPI API endpoint, if you can export the OpenAPI JSON specification, it can easily be turned into a client library for use in laravel. Download the swagger.json file to the current folder. Run: docker run –rm -v ${PWD}:/local openapitools/openapi-generator-cli generate -i “/local/swagger.json” -g php -o /local/out/php Under the ./out/ folder is now a […]