Release – Composer Plugin for Load Testing
Ready for release – Composer Plugin. Composer is a Dependency Manager for PHP which allows you to install various packages before you run a load test. Users just need to install the Plugin (refer to our plugin instillation guide) and are then immediately able to get started using the plugin for custom PHP tests.
How to use
To include packages with your custom PHP test
- Include an extra file with your test called composer.json
- Enable the Composer plugin in your test (Advanced Settings)
Example Composer.json
The following example composer.json installs a package to help make websocket calls. To see all the packages available via composer you can browse them here.
{ "require": { "textalk/websocket": "1.0.*" } }
For more information, refer to the RedLine13 Composer plugin GitHub page.