Joan Miquel 59274ba6d0 [php] Update date for headers (#9731) 5 months ago
..
amp 8ac6fdbfa7 Quiet composer install 7 months ago
cakephp 59274ba6d0 [php] Update date for headers (#9731) 5 months ago
codeigniter e96c213b98 [PHP/Codeigniter] Update PHP version 8.4 (#9408) (#9692) 5 months ago
comet 59274ba6d0 [php] Update date for headers (#9731) 5 months ago
cyberphp 59274ba6d0 [php] Update date for headers (#9731) 5 months ago
duckphp 258ea16a34 [php] Duck update to PHP 8.4 (#9413) 9 months ago
fat-free 0a9ab06df8 [php] Fat-free update to PHP/8.4 (#9517) 7 months ago
flight a1957e0a7b [php] Update Flight and add Workerman variant (#9598) 6 months ago
fomo 756600eaa2 Fomo framework for PHP (#9584) 6 months 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 59274ba6d0 [php] Update date for headers (#9731) 5 months ago
kumbiaphp 710731695c [php] Kumbia update to PHP8.4 7 months ago
laravel 59274ba6d0 [php] Update date for headers (#9731) 5 months ago
leaf 59274ba6d0 [php] Update date for headers (#9731) 5 months ago
mako dcc7e59f47 [php] Mako update to PHP 8.3 (#8616) 1 year ago
mark 59274ba6d0 [php] Update date for headers (#9731) 5 months ago
mixphp f2a87b6080 [php] Fix Swoole and faster docker builds (#9169) 1 year ago
nette 7113d24eec [php] Nette update to PHP/8.4 7 months 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 e0757ae57f Peachpie update to v1.0.25 (#8719) 1 year ago
phalcon 40db94432c [php] Phalcon update to PHP 8.3 (#8720) 1 year ago
php 17cb029df4 Remove unnecessary file-exists checks. 7 months ago
php-ngx 8b34594ec6 [php] Ngx-php update to PHP/8.4 (#9524) 7 months ago
phpixie 38ca563d59 [php] Update some fw to Ubuntu 22.04 (#8085) 2 years ago
reactphp 27012ed38a Merge pull request #9538 from WyriHaximus-labs/reactphp-handle-uncaught-errors 7 months ago
ripple e331817682 [PHP/ripple] Replace deprecated functions in ripple (#9599) 6 months ago
simps f2a87b6080 [php] Fix Swoole and faster docker builds (#9169) 1 year ago
slim 59274ba6d0 [php] Update date for headers (#9731) 5 months ago
spiral 1c894c9d0d php/spiral: cleanup (#9682) 5 months ago
sw-fw-less 37ae1377c5 [php] Mark broken PHP frameworks (#7945) 2 years ago
swoole 20d6f6dfe0 update swoole version (#9596) 6 months ago
symfony 59274ba6d0 [php] Update date for headers (#9731) 5 months ago
ubiquity 2f74dafb4c [php] Ubiquity update to PHP/8.4 7 months ago
webman 59274ba6d0 [php] Update date for headers (#9731) 5 months ago
wolff c4a097c8d5 [php] Wolff update to PHP 8.4 (#9415) 9 months ago
workerman 59274ba6d0 [php] Update date for headers (#9731) 5 months ago
yii2 59274ba6d0 [php] Update date for headers (#9731) 5 months 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.