├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── SUPPORT.md ├── app ├── Dockerfile ├── laravel.composer.lock └── zend │ ├── assert_output.php │ ├── bench.php │ ├── micro_bench.php │ ├── opcache.php │ ├── opcache_reset.php │ └── phpinfo.php ├── benchmark.sh ├── bin ├── benchmark.sh ├── build.sh ├── generate_results.sh ├── provision.sh └── setup.sh ├── composer.json ├── composer.lock ├── config ├── infra │ └── aws │ │ ├── arm64.ini.dist │ │ ├── x86_64-metal.ini.dist │ │ └── x86_64.ini.dist ├── php │ ├── master.ini.dist │ ├── master_jit.ini.dist │ ├── php_82.ini.dist │ ├── php_83.ini.dist │ ├── php_84.ini.dist │ └── php_85.ini.dist └── test │ ├── 1_laravel.expectation │ ├── 1_laravel.ini.dist │ ├── 2_symfony_main.expectation │ ├── 2_symfony_main.ini.dist │ ├── 3_symfony_blog.expectation │ ├── 3_symfony_blog.ini.dist │ ├── 4_wordpress.expectation │ ├── 4_wordpress.ini.dist │ ├── 5_bench.php.expectation │ ├── 5_bench.php.ini.dist │ ├── 6_micro_bench.php.expectation │ └── 6_micro_bench.php.ini.dist ├── docs ├── index.html └── results │ ├── 2021 │ └── 2021_11_25_10_08_1_aws_arm64_c6g_4xlarge │ │ ├── environment.tsv │ │ ├── result.md │ │ └── result.tsv │ ├── 2022 │ └── 2022_05_16_13_38_1_aws_arm64_c6g_4xlarge │ │ ├── environment.tsv │ │ ├── result.md │ │ └── result.tsv │ ├── 2024 │ ├── 2024_01_14_21_50_1_aws_x86_64_c5_4xlarge │ │ ├── environment.tsv │ │ ├── result.md │ │ └── result.tsv │ ├── 2024_01_15_14_13_1_aws_x86_64_c7i_metal_24xl │ │ ├── environment.tsv │ │ ├── result.md │ │ └── result.tsv │ ├── 2024_01_15_15_10_1_aws_x86_64_c7i_metal_24xl │ │ ├── environment.tsv │ │ ├── result.md │ │ └── result.tsv │ ├── 2024_03_20_23_00_1_aws_x86_64_c7i_metal_24xl │ │ ├── environment.tsv │ │ ├── result.md │ │ └── result.tsv │ └── 2024_06_23_09_39_1_aws_x86_64_c7i_metal_24xl │ │ ├── environment.tsv │ │ ├── result.md │ │ └── result.tsv │ ├── 2025 │ ├── 2025_07_28_21_50_44_1_aws_x86_64_c7i_4xlarge │ │ ├── environment.tsv │ │ ├── result.md │ │ └── result.tsv │ └── database.tsv │ └── database.tsv └── stat_compare.php /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kocsismate/php-version-benchmarks/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kocsismate/php-version-benchmarks/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kocsismate/php-version-benchmarks/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kocsismate/php-version-benchmarks/HEAD/README.md -------------------------------------------------------------------------------- /SUPPORT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kocsismate/php-version-benchmarks/HEAD/SUPPORT.md -------------------------------------------------------------------------------- /app/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kocsismate/php-version-benchmarks/HEAD/app/Dockerfile -------------------------------------------------------------------------------- /app/laravel.composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kocsismate/php-version-benchmarks/HEAD/app/laravel.composer.lock -------------------------------------------------------------------------------- /app/zend/assert_output.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kocsismate/php-version-benchmarks/HEAD/app/zend/assert_output.php -------------------------------------------------------------------------------- /app/zend/bench.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kocsismate/php-version-benchmarks/HEAD/app/zend/bench.php -------------------------------------------------------------------------------- /app/zend/micro_bench.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kocsismate/php-version-benchmarks/HEAD/app/zend/micro_bench.php -------------------------------------------------------------------------------- /app/zend/opcache.php: -------------------------------------------------------------------------------- 1 | "; 4 | 5 | print_r(opcache_get_status()); 6 | -------------------------------------------------------------------------------- /app/zend/opcache_reset.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kocsismate/php-version-benchmarks/HEAD/app/zend/opcache_reset.php -------------------------------------------------------------------------------- /app/zend/phpinfo.php: -------------------------------------------------------------------------------- 1 |