Install
Via Composer
$ composer create-project laminas-api-tools/api-tools-skeleton
To install a specific version, add the version to the package name when creating the project. For example, to request specifically version 1.5.2:
$ composer create-project laminas-api-tools/api-tools-skeleton:1.5.2
Via Cloning
$ git clone https://github.com/laminas-api-tools/api-tools-skeleton.git
$ cd api-tools-skeleton
$ composer install
Finally, enable development mode:
$ composer development-enable
Get started with the web UI
$ php -S 0.0.0.0:8080 -t public public/index.php
At this point, you can open your browser to http://localhost:8080.
Use any port
While the above command uses port 8080, you can substitute any available port on your system.