Joan Miquel cff810230e [php] CakePHP update to PHP-8.4 (#9411) 9 hónapja
..
amp 29d5c7df2c [php] Update all frameworks using event to v3.1.3 (#8941) 1 éve
cakephp cff810230e [php] CakePHP update to PHP-8.4 (#9411) 9 hónapja
codeigniter ebff4c456b [php] Fix codeigniter 4.4 (#9086) 1 éve
comet b70bdad3d1 [php] Comet update to PHP-8.4 (#9412) 9 hónapja
duckphp 258ea16a34 [php] Duck update to PHP 8.4 (#9413) 9 hónapja
fat-free f90a353a58 [php] Fatfree update to PHP 8.3 (#8623) 1 éve
flight 566ee8826b [php] Flight update to PHP 8.3 (#8588) 1 éve
fuel 5f9d3e0097 Add JIT in php-fpm (#7687) 2 éve
hamlet 46f2c4650e [hamlet] Add broken tags (#7238) 3 éve
hhvm 0096f84ee9 Config for the new toolset (#6259) 4 éve
hyperf da629180d2 Update hyperf benchmark (#6279) 4 éve
imi 9fe9e211b0 [php] Imi update to PHP 8.3 (#8589) 1 éve
kumbiaphp 05655dd0b7 Update to Kumbiaphp/1.2.1 (#9026) 1 éve
laravel 072be3bbd9 [Laravel/ripple] added the command for publishing configuration (#9324) 11 hónapja
leaf 8afa827e93 [php] Fix Leaf v3.6 dockerfiles (#9250) 1 éve
lumen 4408f2eade [php] Lumen update to v11 (#9199) 1 éve
mako dcc7e59f47 [php] Mako update to PHP 8.3 (#8616) 1 éve
mark 121b08e983 [php] Mark update to PHP 8.4 (#9414) 9 hónapja
mixphp f2a87b6080 [php] Fix Swoole and faster docker builds (#9169) 1 éve
nette 52a9d34304 [php] Nette update to PHP 8.3 (#8594) 1 éve
one 316536c23d up one php to 8.1 (#7785) 2 éve
openswoole bfe3d6afb4 [php] Openswoole update to PHP 8.3 (#8595) 1 éve
peachpie e0757ae57f Peachpie update to v1.0.25 (#8719) 1 éve
phalcon 40db94432c [php] Phalcon update to PHP 8.3 (#8720) 1 éve
php 990e313269 Update H2O to revision c54c63285 (#9205) 1 éve
php-ngx 6affc5917d [php] Ngx-php update to Nginx/1.26.0 (#9040) 1 éve
phpixie 38ca563d59 [php] Update some fw to Ubuntu 22.04 (#8085) 2 éve
reactphp 4325dbbf56 [php] React fix deprecation (#8681) 1 éve
ripple f897d20573 [PHP/ripple] Added ripple coroutine engine. (#9377) 10 hónapja
simps f2a87b6080 [php] Fix Swoole and faster docker builds (#9169) 1 éve
slim 29d5c7df2c [php] Update all frameworks using event to v3.1.3 (#8941) 1 éve
spiral b283599b18 [php] Fix #9021 fail to build grpc (#9032) 1 éve
sw-fw-less 37ae1377c5 [php] Mark broken PHP frameworks (#7945) 2 éve
swoole 9613221774 update swoole version to 5.1.5 (#9364) 10 hónapja
symfony f2a87b6080 [php] Fix Swoole and faster docker builds (#9169) 1 éve
ubiquity f2a87b6080 [php] Fix Swoole and faster docker builds (#9169) 1 éve
webman 7ccad708d0 [php] Enable jit for workerman and webman (#9258) 10 hónapja
wolff c4a097c8d5 [php] Wolff update to PHP 8.4 (#9415) 9 hónapja
workerman c086685b30 [php] Workeman update to PHP 8.4 (#9417) 9 hónapja
yii2 29d5c7df2c [php] Update all frameworks using event to v3.1.3 (#8941) 1 éve
zend 55f78e1c13 Revert PHP to ubuntu 20.04 (#6775) 4 éve
README.md 05c8be09fd minor update of php's readme.md (#4976) 6 éve

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.