Mike Smith e9c5880983 Merge pull request #9532 from joanhey/amp-php8.4 před 9 měsíci
..
amp 8ac6fdbfa7 Quiet composer install před 9 měsíci
cakephp cff810230e [php] CakePHP update to PHP-8.4 (#9411) před 10 měsíci
codeigniter ebff4c456b [php] Fix codeigniter 4.4 (#9086) před 1 rokem
comet b70bdad3d1 [php] Comet update to PHP-8.4 (#9412) před 10 měsíci
duckphp 258ea16a34 [php] Duck update to PHP 8.4 (#9413) před 10 měsíci
fat-free 0a9ab06df8 [php] Fat-free update to PHP/8.4 (#9517) před 9 měsíci
flight bbf0585b15 [php] Update Flight to v3 (#9470) před 9 měsíci
fuel 5f9d3e0097 Add JIT in php-fpm (#7687) před 2 roky
hamlet 46f2c4650e [hamlet] Add broken tags (#7238) před 3 roky
hhvm 0096f84ee9 Config for the new toolset (#6259) před 4 roky
hyperf da629180d2 Update hyperf benchmark (#6279) před 4 roky
imi 9fe9e211b0 [php] Imi update to PHP 8.3 (#8589) před 1 rokem
kumbiaphp 710731695c [php] Kumbia update to PHP8.4 před 9 měsíci
laravel ccd87b851f [php] Laravel update to PHP8.4 před 9 měsíci
leaf 90837f309f Update also for Workerman před 9 měsíci
lumen a42b0a160c Update also Lumen před 9 měsíci
mako dcc7e59f47 [php] Mako update to PHP 8.3 (#8616) před 1 rokem
mark 121b08e983 [php] Mark update to PHP 8.4 (#9414) před 10 měsíci
mixphp f2a87b6080 [php] Fix Swoole and faster docker builds (#9169) před 1 rokem
nette 7113d24eec [php] Nette update to PHP/8.4 před 9 měsíci
one 316536c23d up one php to 8.1 (#7785) před 2 roky
openswoole bfe3d6afb4 [php] Openswoole update to PHP 8.3 (#8595) před 1 rokem
peachpie e0757ae57f Peachpie update to v1.0.25 (#8719) před 1 rokem
phalcon 40db94432c [php] Phalcon update to PHP 8.3 (#8720) před 1 rokem
php 062171c7eb [php] Update plain PHP-Workerman to PHP8.4 před 9 měsíci
php-ngx 8b34594ec6 [php] Ngx-php update to PHP/8.4 (#9524) před 9 měsíci
phpixie 38ca563d59 [php] Update some fw to Ubuntu 22.04 (#8085) před 2 roky
reactphp e53161275f [php] Reactphp update to PHP/8.4 před 9 měsíci
ripple f897d20573 [PHP/ripple] Added ripple coroutine engine. (#9377) před 11 měsíci
simps f2a87b6080 [php] Fix Swoole and faster docker builds (#9169) před 1 rokem
slim 4d19d4527a [php] Slim update to PHP/8.4 před 9 měsíci
spiral b283599b18 [php] Fix #9021 fail to build grpc (#9032) před 1 rokem
sw-fw-less 37ae1377c5 [php] Mark broken PHP frameworks (#7945) před 2 roky
swoole a18e737919 update php and swoole version (#9465) před 10 měsíci
symfony cbb69522b6 Remove polyfills před 9 měsíci
ubiquity 2f74dafb4c [php] Ubiquity update to PHP/8.4 před 9 měsíci
webman 082b573713 [php] Simplify the code for Webman Workerman (#9474) před 9 měsíci
wolff c4a097c8d5 [php] Wolff update to PHP 8.4 (#9415) před 10 měsíci
workerman 082b573713 [php] Simplify the code for Webman Workerman (#9474) před 9 měsíci
yii2 7c0e406860 [php] Yii2 raw update to PHP/8.4 (#9518) před 9 měsíci
zend 55f78e1c13 Revert PHP to ubuntu 20.04 (#6775) před 4 roky
README.md 05c8be09fd minor update of php's readme.md (#4976) před 6 roky

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.