PHP Classes

File: composer.json

Recommend this page to a friend!
  Classes of Eric Sizemore   PHP Benchmark Time and Memory Usage   composer.json   Download  
File: composer.json
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: PHP Benchmark Time and Memory Usage
Measure the time and memory that a PHP script uses
Author: By
Last change: Update of composer.json
Date: 5 months ago
Size: 1,657 bytes
 

Contents

Class file image Download
{ "name": "esi/bench", "description": "Micro PHP library for benchmarking", "license": "MIT", "type": "library", "keywords": [ "benchmark", "bench", "library", "micro" ], "authors": [ { "name": "Eric Sizemore", "email": "admin@secondversion.com", "homepage": "https://www.secondversion.com/", "role": "Fork Developer" }, { "name": "Jeremy Perret", "email": "jeremy@devster.org", "role": "Original Developer" } ], "homepage": "https://github.com/ericsizemore/bench", "support": { "issues": "https://github.com/ericsizemore/bench/issues", "forum": "https://github.com/ericsizemore/bench/discussions", "source": "https://github.com/ericsizemore/bench/tree/master", "security": "https://github.com/ericsizemore/bench/security/policy" }, "require": { "php": "^8.2 <8.5" }, "require-dev": { "phpstan/phpstan": "^1.11", "phpstan/phpstan-phpunit": "^1.4", "phpstan/phpstan-strict-rules": "^1.6", "phpunit/phpunit": "^11.0" }, "minimum-stability": "dev", "prefer-stable": true, "autoload": { "psr-4": { "Esi\\Bench\\": "src/" } }, "autoload-dev": { "psr-4": { "Esi\\Bench\\Tests\\": "tests/" } }, "extra": { "branch-alias": { "dev-master": "3.0-dev" } }, "scripts": { "phpstan": "vendor/bin/phpstan analyse -c phpstan.neon", "test": "phpunit" } }