Sylvain PHILIP f343eb645c Add Piko framework (#10160) 1 tydzień temu
..
amp 8ac6fdbfa7 Quiet composer install 9 miesięcy temu
cakephp 3991208a20 [php] Update for Workerman/5 (#9881) 5 miesięcy temu
codeigniter e96c213b98 [PHP/Codeigniter] Update PHP version 8.4 (#9408) (#9692) 7 miesięcy temu
comet 59274ba6d0 [php] Update date for headers (#9731) 7 miesięcy temu
duckphp 258ea16a34 [php] Duck update to PHP 8.4 (#9413) 11 miesięcy temu
fat-free 0a9ab06df8 [php] Fat-free update to PHP/8.4 (#9517) 9 miesięcy temu
flight 3991208a20 [php] Update for Workerman/5 (#9881) 5 miesięcy temu
fomo 756600eaa2 Fomo framework for PHP (#9584) 7 miesięcy temu
fuel 5f9d3e0097 Add JIT in php-fpm (#7687) 2 lat temu
hhvm 0096f84ee9 Config for the new toolset (#6259) 4 lat temu
hyperf da629180d2 Update hyperf benchmark (#6279) 4 lat temu
hypervel 6b5a3025f5 Adds support for Hypervel (#10058) 2 miesięcy temu
imi 59274ba6d0 [php] Update date for headers (#9731) 7 miesięcy temu
kumbiaphp 7db8f7e1e3 [php] Udate Adapterman with JIT (#9990) 3 miesięcy temu
laravel d5e556f571 [php] Laravel-s update to PHP 8.4 and Laravel 12 (#10136) 3 tygodni temu
leaf cb0be72c06 [php] Leaf Adapterman add JIT (#10016) 2 miesięcy temu
mako dcc7e59f47 [php] Mako update to PHP 8.3 (#8616) 1 rok temu
mark 59274ba6d0 [php] Update date for headers (#9731) 7 miesięcy temu
mixphp 84c5243906 [php] Mixphp update to PHP/8.4 (#10005) 3 miesięcy temu
nette 7113d24eec [php] Nette update to PHP/8.4 9 miesięcy temu
one 316536c23d up one php to 8.1 (#7785) 2 lat temu
openswoole 8da5eeb21f [php] OpenSwoole update to PHP/8.4 (#9943) 4 miesięcy temu
peachpie e0757ae57f Peachpie update to v1.0.25 (#8719) 1 rok temu
phalcon f02224fd93 [php] Fix Phalcon and update with PHP/8.4 (#9937) 4 miesięcy temu
php b5b7ff512f Reduce the build time for h2o_mruby and php-h2o (#10173) 1 tydzień temu
php-ngx 8b34594ec6 [php] Ngx-php update to PHP/8.4 (#9524) 9 miesięcy temu
phpixie 6aca8ddd4b [php] Phpixie add Adapterman variant (#10026) 2 miesięcy temu
piko f343eb645c Add Piko framework (#10160) 1 tydzień temu
reactphp 27012ed38a Merge pull request #9538 from WyriHaximus-labs/reactphp-handle-uncaught-errors 9 miesięcy temu
ripple aa6ff279c7 Sync the update of the Ripple (#10142) 3 tygodni temu
simps f2a87b6080 [php] Fix Swoole and faster docker builds (#9169) 1 rok temu
slim 874181534e [php] Slim pgsql update to Adapterman/0.7 (#10007) 3 miesięcy temu
spiral 1c894c9d0d php/spiral: cleanup (#9682) 7 miesięcy temu
swoole c304a3fbd5 update swoole version to 6.0.2 (#9951) 4 miesięcy temu
symfony f9ab8cdbf5 [php] Symfony add ReactPHP runtime (#10110) 1 miesiąc temu
ubiquity 7a4a9525be [php] Fix ubiquity-workerman-mongo (#10021) 2 miesięcy temu
webman 59274ba6d0 [php] Update date for headers (#9731) 7 miesięcy temu
wolff d4b92e91fd [php] Wolff simplify code (#10061) 2 miesięcy temu
workerman 59274ba6d0 [php] Update date for headers (#9731) 7 miesięcy temu
yii2 bdf4a684a5 [php] Yii2 Adapterman add JIT (#10006) 3 miesięcy temu
README.md 05c8be09fd minor update of php's readme.md (#4976) 6 lat temu

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.