This repository contains the source-code for the new webpage of IO500. It is made in PHP using the CakePHP 4.x framework. The framework source code can be found here: cakephp/cakephp.
Feel free to contribute to this page by forking and making a merge request. You can find more information on how to contribute in the Wiki.
CI runs the same checks on every pull request. To reproduce them locally before pushing:
composer install # one-time, pulls phpcs and the CakePHP codesniffer
composer cs-check # PHP coding standard (CakePHP)
find src tests config templates -name '*.php' -print0 | xargs -0 -n1 php -l # PHP syntax
yamllint -d relaxed .github/ config/ # YAMLcomposer cs-fix will auto-fix most coding-standard violations.