Skip to content

Commit 979c0e9

Browse files
committed
init
1 parent 37c7ac3 commit 979c0e9

10 files changed

+481094
-104
lines changed

README.md

+8
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,10 @@
11
# php-ds-array-benchmark
2+
23
A playground for benchmarking php-ds vector and native array
4+
5+
# Usage
6+
7+
./vendor/bin/phpbench run tests/Benchmark --file=report-default.xml --report=default
8+
./vendor/bin/phpbench run tests/Benchmark --file=report-aggregate.xml --report=aggregate
9+
10+

composer.json

+10-1
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,20 @@
99
"PhpDsArrayBenchmark\\": "src/"
1010
}
1111
},
12+
"autoload-dev": {
13+
"psr-4": {
14+
"PhpDsArrayBenchmark\\Tests\\": "tests/"
15+
}
16+
},
1217
"authors": [
1318
{
1419
"name": "Arda Beyazoglu",
1520
"email": "[email protected]"
1621
}
1722
],
18-
"minimum-stability": "stable"
23+
"minimum-stability": "stable",
24+
"require-dev": {
25+
"php": "^8.2",
26+
"phpunit/phpunit": "^11.0"
27+
}
1928
}

0 commit comments

Comments
 (0)