cakephp/core

CakePHP Framework Core classes

Maintainers

👁 cakephp

Package info

github.com/cakephp/core

Homepage

Issues

Forum

pkg:composer/cakephp/core

Statistics

Installs: 28 445 112

Dependents: 27

Suggesters: 0

Stars: 61

5.4.0-RC1 2026-04-04 07:25 UTC

Requires

Requires (Dev)

None

Suggests

Conflicts

None

Replaces

None

MIT 162bf2db6af357cde84df8f5b0d95b50118cd84b

frameworkcakephpcore

This package is auto-updated.

Last update: 2026-06-09 03:16:13 UTC


README

👁 Total Downloads
👁 License

CakePHP Core Classes

A set of classes used for configuration files reading and storing. This repository contains the classes that are used as glue for creating the CakePHP framework.

Usage

You can use the Configure class to store arbitrary configuration data:

use Cake\Core\Configure;
use Cake\Core\Configure\Engine\PhpConfig;

Configure::write('Company.name','Pizza, Inc.');
Configure::read('Company.name'); // Returns: 'Pizza, Inc.'

It also possible to load configuration from external files:

Configure::config('default', new PhpConfig('/path/to/config/folder'));
Configure::load('app', 'default', false);
Configure::load('other_config', 'default');

And write the configuration back into files:

Configure::dump('my_config', 'default');

Documentation

Please make sure you check the official documentation