Joan Miquel 597b2d0316 [php] CakePHP update to PHP 8.5 (#10337) 4 days ago
..
amp d129b2bedf [php] Amp update to PHP 8.5 (#10307) 2 weeks ago
cakephp 597b2d0316 [php] CakePHP update to PHP 8.5 (#10337) 4 days ago
codeigniter 95038a3736 [php] CodeIgniter update to PHP 8.5 (#10311) 2 weeks ago
comet 4f48c6f5eb [php] Comet update to PHP 8.5 (#10309) 2 weeks ago
duckphp ec593b6855 [php] DuckPHP update to PHP 8.5 (#10338) 2 weeks ago
fat-free 7e0be4b02e [php] Fat free update to PHP 8.5 (#10339) 2 weeks ago
flight a8258631ec Update the set of broken implementations (#10366) 1 week ago
fomo a050d10624 Update the set of broken implementations (#10268) 1 month ago
fuel a050d10624 Update the set of broken implementations (#10268) 1 month ago
hhvm 0096f84ee9 Config for the new toolset (#6259) 5 years ago
hyperf da629180d2 Update hyperf benchmark (#6279) 5 years ago
hypervel 6b5a3025f5 Adds support for Hypervel (#10058) 3 months ago
imi 59274ba6d0 [php] Update date for headers (#9731) 8 months ago
kumbiaphp 0a9a48403f [php] KumbiaPHP update to 8.5 (#10305) 2 weeks ago
laravel 7c714bec90 [php] Laravel update to PHP 8.5 (#10323) 2 weeks ago
leaf b0f2f174b1 [php] Leaf update to v4 (#10371) 1 week ago
mako d690f9e3ce [php] Mako update to PHP 8.5 (#10329) 2 weeks ago
mark 14508660aa [php] Mark update to PHP 8.5 (#10310) 2 weeks ago
mixphp 84c5243906 [php] Mixphp update to PHP/8.4 (#10005) 4 months ago
nette dbe23a6024 [php] Nette update to PHP 8.5 (#10314) 2 weeks ago
one 316536c23d up one php to 8.1 (#7785) 3 years ago
openswoole 8da5eeb21f [php] OpenSwoole update to PHP/8.4 (#9943) 6 months ago
peachpie e0757ae57f Peachpie update to v1.0.25 (#8719) 1 year ago
phalcon f02224fd93 [php] Fix Phalcon and update with PHP/8.4 (#9937) 6 months ago
php 416ff2309e [php] Update plain PHP to 8.5 (#10304) 2 weeks ago
php-ngx 8b34594ec6 [php] Ngx-php update to PHP/8.4 (#9524) 11 months ago
phpixie 6aca8ddd4b [php] Phpixie add Adapterman variant (#10026) 4 months ago
piko 9ec43b9f3d [php] Piko update to PHP 8.5 (#10315) 2 weeks ago
reactphp aaf150ff68 [php] ReactPHP update to PHP 8.5 (#10316) 2 weeks ago
ripple 2219f26b77 [php] Ripple update to PHP 8.5 (#10326) 2 weeks ago
simps f2a87b6080 [php] Fix Swoole and faster docker builds (#9169) 1 year ago
slim 76190d7038 [php] Slim update to PHP 8.5 (#10317) 2 weeks ago
spiral 2c4a992d46 [php] Spiral update to PHP 8.5 (#10325) 2 weeks ago
swoole c304a3fbd5 update swoole version to 6.0.2 (#9951) 6 months ago
symfony 844f0c8d57 [php] Symfony update to PHP 8.5 (#10322) 2 weeks ago
ubiquity 7a4a9525be [php] Fix ubiquity-workerman-mongo (#10021) 4 months ago
webman 0dedb6f51c [php] Webman update to PHP 8.5 (#10308) 2 weeks ago
wolff 2cf7b9d7f4 [php] Wolff update to PHP 8.5 (#10319) 2 weeks ago
workerman 1a2496b27c [php] Workerman update to PHP 8.5 (#10306) 2 weeks ago
yii2 60effe1cf4 [php] Yii2 update to PHP 8.5 (#10320) 2 weeks 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.