RiktaD/timed-loop

View on GitHub
composer.json

Summary

Maintainability
Test Coverage
{
    "name": "rikta/timed-loop",
    "description": "Run an endless loop until it returns something different, but limit it by time",
    "version": "1.0.1",
    "scripts": {
        "release": "conventional-changelog --commit",
        "style": "./vendor/bin/php-cs-fixer fix --diff -v",
        "test": "./vendor/bin/phpunit tests"
    },
    "require-dev": {
        "friendsofphp/php-cs-fixer": "^3.1",
        "marcocesarato/php-conventional-changelog": "^1.12",
        "phpunit/phpunit": "^9.5"
    },
    "license": "MIT",
    "authors": [
        {
            "name": "Dennis Richter",
            "email": "richter@vivaldi.net"
        }
    ],
    "autoload": {
        "psr-4": {
            "Rikta\\TimedLoop\\": "src/"
        }
    },
    "autoload-dev": {
        "psr-4": {
            "Rikta\\TimedLoop\\Tests\\": "tests/"
        }
    },
    "type": "library"
}