Joan Miquel f90a353a58 [php] Fatfree update to PHP 8.3 (#8623) 1 year ago
..
amp da5be74b5b [php] Amp update to PHP 8.3 (#8615) 1 year ago
cakephp b2ceb4493e [php] Cakephp update to PHP 8.3 (#8585) 1 year ago
codeigniter 4a5ac4b114 [php] Codeigniter & Duckphp update to PHP 8.3 (#8586) 1 year ago
comet 98aedf5643 [php] Comet update to PHP 8.3 (#8587) 1 year ago
duckphp 4a5ac4b114 [php] Codeigniter & Duckphp update to PHP 8.3 (#8586) 1 year ago
fat-free f90a353a58 [php] Fatfree update to PHP 8.3 (#8623) 1 year ago
flight 566ee8826b [php] Flight update to PHP 8.3 (#8588) 1 year ago
fuel 5f9d3e0097 Add JIT in php-fpm (#7687) 2 years ago
hamlet 46f2c4650e [hamlet] Add broken tags (#7238) 3 years ago
hhvm 0096f84ee9 Config for the new toolset (#6259) 4 years ago
hyperf da629180d2 Update hyperf benchmark (#6279) 4 years ago
imi 9fe9e211b0 [php] Imi update to PHP 8.3 (#8589) 1 year ago
kumbiaphp d0067c2665 [php] Kumbiaphp update to PHP 8.3 (#8632) 1 year ago
laravel 871af3ac3e [php] Laravel update to PHP 8.3 (#8584) 1 year ago
leaf f231f90816 [php] Leaf update to PHP 8.3 (#8590) 1 year ago
lumen fcf80f96bc [php] Lumen update to PHP 8.3 (#8591) 1 year ago
mako dcc7e59f47 [php] Mako update to PHP 8.3 (#8616) 1 year ago
mark bdbcc0cd08 [php] Mark update to PHP 8.3 (#8592) 1 year ago
mixphp 1adf7805ba [php] Mixphp update to PHP 8.3 (#8593) 1 year ago
nette 52a9d34304 [php] Nette update to PHP 8.3 (#8594) 1 year ago
one 316536c23d up one php to 8.1 (#7785) 2 years ago
openswoole bfe3d6afb4 [php] Openswoole update to PHP 8.3 (#8595) 1 year ago
peachpie 87439fd4c2 Upgrade peachpie to net 7.0 (#7771) 2 years ago
phalcon 9056ad0d6e [php] Phalcon update to PHP 8.2 (#8089) 2 years ago
php ee15f9016f [php] Update plain PHP to v8.3 (#8580) 1 year ago
php-ngx af859183d6 [php] Update ngx-php to PHP 8.3 (#8614) 1 year ago
phpixie 38ca563d59 [php] Update some fw to Ubuntu 22.04 (#8085) 2 years ago
reactphp 012c34040f [php] ReactPHP update to PHP 8.2 (#8083) 2 years ago
simps 2f59b5d17e [php] Simps update to PHP 8.3 (#8596) 1 year ago
slim 334bc6d072 [php] Slim update to PHP 8.3 (#8597) 1 year ago
spiral c3b8875b6c [php] Spiral update to PHP 8.3 (#8598) 1 year ago
sw-fw-less 37ae1377c5 [php] Mark broken PHP frameworks (#7945) 2 years ago
swoole 9cd97a212c [php] Swoole update to PHP 8.3 (#8599) 1 year ago
symfony 0b8566bce4 [php] Symfony update to PHP 8.3 (#8583) 1 year ago
ubiquity 208c9895d0 [php] Ubiquity update to PHP 8.3 (#8600) 1 year ago
webman 0e87edef9d [php] Webman & Wolff update to PHP 8.3 (#8601) 1 year ago
wolff 7bf940e632 [php] Wolff update to v4.1 (#8617) 1 year ago
workerman 4fa08fe582 [php] Workerman testing event 3.1.0RC1 (#8633) 1 year ago
yii2 7c7aae3229 [php] Yii2 update to PHP 8.3 (#8602) 1 year ago
zend 55f78e1c13 Revert PHP to ubuntu 20.04 (#6775) 4 years ago
README.md 05c8be09fd minor update of php's readme.md (#4976) 6 years ago

README.md

PHP Frameworks

php logo

The information below contains information specific to PHP. For further guidance, review the documentation.

Infrastructure Software Versions

PHP Versions

PHP 7.3.*, PHP 5.6.* and HHVM 3.30.

Adding New PHP-based Frameworks

PHP Acceleration and Caching

Caching the output of the PHP bytecode compiler is expressly allowed by this benchmark. As we use PHP 5.5, which comes with opcache built in, we recommend you use this. However, some frameworks utilize APC instead as switching can be problematic (e.g. APC allows arbitrary data caching, while opcache does not).

Caching the output of parsing your configuration files is also expressly allowed (e.g. file caching, metadata caching). Some frameworks use APCu or memcached to achieve this.

Caching of the classloader (often referred to as optimizing the classloader) is also allowed. Most frameworks have their own methods of doing this.

Caching of any data fetched from the database is not allowed. Specifically, things such as Doctrine's Result Cache are inadmissible.

However, if you are using an ORM that prepares SQL statements in some way, such as how Doctrine translates DQL into SQL, this translated form can be cached, as long as you are dynamically accepting query parameters.

Caching any data using databases (Redis, MongoDB, etc) is discouraged, as 1) our databases run on a separate computer across the network, so you won't see much benefit 2) your usage of the DB may impact other framework's tests, which we cannot allow. You may launch a DB locally on the application server as part of your setup.sh scripts and utilize it for caching the allowable cache items, if you so desire, but it's normally much easier to use systems such as APCu.

Ask if you are not certain.

Dependency Management Using Composer

Many PHP apps use Composer for dependency management, which greatly simplifies downloading the framework, loading the framework, and upgrading the framework version in the future.

Get Help

PHP Experts

There aren't any PHP experts listed, yet. If you're an expert, add yourself!

Resources & Interesting Links

If you find some interesting links related to the PHP tests, add them here.