Download the PHP package bolt/session without Composer

On this page you can find all versions of the php package bolt/session. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.

FAQ

After the download, you have to make one include require_once('vendor/autoload.php');. After that you have to import the classes with use statements.

Example:
If you use only one package a project is not needed. But if you use more then one package, without a project it is not possible to import the classes with use statements.

In general, it is recommended to use always a project to download your libraries. In an application normally there is more than one library needed.
Some PHP packages are not free to download and because of that hosted in private repositories. In this case some credentials are needed to access such packages. Please use the auth.json textarea to insert credentials, if a package is coming from a private repository. You can look here for more information.

  • Some hosting areas are not accessible by a terminal or SSH. Then it is not possible to use Composer.
  • To use Composer is sometimes complicated. Especially for beginners.
  • Composer needs much resources. Sometimes they are not available on a simple webspace.
  • If you are using private repositories you don't need to share your credentials. You can set up everything on our site and then you provide a simple download link to your team member.
  • Simplify your Composer build process. Use our own command line tool to download the vendor folder as binary. This makes your build process faster and you don't need to expose your credentials for private repositories.
Please rate this library. Is it a good library?

Informations about the package session

Bolt Session

PHP session handler built on Symfony components and supporting Silex v1 & v2.

Supports session storage with:

Service Providers

Silex 1

Silex 2

Browser cookies

By default, Bolt will inherit the settings cookies_lifetime, cookies_domain, and enforce_ssl (for cookie_secure) should no override options be set, as per the order of precedence explained in the introduction.

However, there are several override settings available, should you need more fine-grained control.

Life time

Time in seconds, that a cookie will be valid for. Setting this value to 0 means "until the browser is closed".

Key Default
cookie_lifetime 1209600 Integer >= 0

In .php.ini this setting is session.cookie_lifetime.

Base URI path

Specifies URI path to set in the session cookie.

Key Default
cookie_path / URI string

In .php.ini this setting is session.cookie_path.

Override domain name

Specifies the domain to set in the session cookie. Default is null, meaning the host name of the server which generated the cookie.

Key Default
cookie_domain HTTP(S) request host name A fully qualified domain name

In .php.ini this setting is session.cookie_domain.

Enforce HTTPS requests

Setting this to true will enforce a HTTPS connection requirement to set, and use, the session cookie.

Key Default
cookie_secure false Boolean on/off toggle

In .php.ini this setting is session.cookie_secure.

Restricting request to the HTTP protocol

Marks the cookie as accessible only through the HTTP protocol, blocking access to requests by things such as JavaScript.

This setting can effectively help to reduce identity theft through XSS attacks, although browser support may vary.

Key Default
cookie_httponly true Boolean on/off toggle

Setting in your config.yml:

In .php.ini this setting is session.cookie_httponly.

Session ID generation

Session IDs are randomly generated to uniquely identify a user's session. Bolt internally handles this generation in a fashion close to how PHP 7.1+ now does to better ensure the uniqueness of the generated ID.

By default, both PHP & Bolt use an ID length of 32, which should provide only a small chance of collisions, or predictability, of the generated ID.

On hosts with a consistent amount of available CPU resources, and a focus on security, you should consider a number of 48 or greater. However, this will increase the server load, and amount of time taken to generate session IDs.

An example of generating 1,000 session IDs on PHP 7.0 and an Intel i5-5200:

ID length milliseconds
32 0.002059
48 0.002560
64 0.003031
128 0.003016
256 0.004132

Maximum value supported is 256.

Key Default
sid_length 32 Integer between 32 & 256

In PHP 7.1+ the .php.ini this setting is session.sid_length.

Session storage handler

Session storage handling, by default, is our filesystem layer. However, we also support Redis & Memcached for more advanced use-cases.

Key Default
save_handler filesystem filesystem, redis, memcached

Setting in your config.yml:

In .php.ini this setting is session.save_handler.

Note: Some web hosting providers may implement alternative session handling that is not compatible with Bolt Session.

Should you encounter exceptions from SessionServiceProvider indicating problems with PHP's system save path, set save_handler: filesystem, and the save_path option shown below.

Using the Redis handler

When using Redis as the handler, the following options are also under the connections subkey, of the session options:

Key Default
host localhost Host name or I.P. address of Redis server
port 6379 TCP port of Redis server
timeout 0.0 A float value in seconds (0.0 meanings unlimited)
persistent null Boolean to toggle persistent connections
password null (optional) Authenticate the connection using a password. Warning: The password is sent in plain-text over the network.
prefix null (optional) Prefix string used on all keys
database null Integer of the database index to connect to

If the native \Redis library is available, it will be used as the handler for Redis, if not available, it will instead check for the PHP implementation of the native library, \Predis\Client and use that.

Using the Memcached handler

When using Memcached as the handler, the following options are also under the connections subkey, of the session options:

Key Default
host localhost String host name or I.P. address of Memcached server
port 11211 TCP port of Memcached server
weight 0 (optional) The weight of the server relative to the total weight of all the servers in the pool. This controls the probability of the server being selected for operations.
expiretime 86400 (optional) Life time in seconds of stored keys
prefix sf2s (optional) Prefix string used on all keys

Saved session file path

Session data is cached in between requests, and is not cleared by the normal cache clearing functionality.

Instead, it uses garbage collection to manage deletion of expired sessions. See the section below on garbage collection for details on configuration.

Key Default
save_path cache://.sessions Path passed to the save_handler

Note: Manually deleting session data on a live server is never advised. Should this ever be required on a live server, ensure all users are logged off, and place the site into maintenance mode first.

In .php.ini this setting is session.save_path.

Using the Filesystem handler

When using the default filesystem handler, the save_path parameter needs to be in the form of {mount point}://{path}.

See the Overview of Bolt's Filesystem page for details on the mount points available in Bolt.

Warning: If you set this to a world-readable directory, such as /tmp, other users on the server may be able to hijack sessions, or extract potentially sensitive data.

Using the Redis handler

When using Redis as the handler, save_path should be defined in the format tcp://IPADDRESS:PORT, with a default of tcp://127.0.0.1:6379.

Using the Memcached handler

When using Memcached as the handler, save_path should be defined in the format IPADDRESS:PORT, with a default of 127.0.0.1:11211.

Garbage collection

Session garbage collection is the removal of sessions older than the configured maximum life time.

The need to perform garbage collection is determined based on a random probability calculation during the initialisation of each session.

Maximum life time

The maximum life time setting specifies the number of seconds after which session data will be seen as 'garbage' and potentially cleaned up.

Key Default
gc_maxlifetime 1209600 Integer of seconds

In .php.ini this setting is session.gc_maxlifetime.

Probability & divisor

The setting gc_divisor coupled with gc_probability define the probability that the garbage collection (GC) process is performed.

In Bolt's session storage handler, the probability is calculated by generating a random number between 0 and gc_divisor. If the value of gc_probability is greater than the random number, garbage collection will be performed, and session files older than the maximum configured life time are removed.

Note: To disable garbage collection, set gc_probability to -1.

Key Default
gc_probability 1 Integer
gc_divisor 1000 Integer

In .php.ini these settings are:



All versions of session with dependencies

PHP Build Version
Package Version
Requires bolt/common Version ^1.0
php Version ^5.5 || ^7.0
symfony/event-dispatcher Version ^2.8 || ^3.0 || ^4.0
symfony/http-foundation Version ^2.8 || ^3.0 || ^4.0
symfony/http-kernel Version ^2.8 || ^3.0 || ^4.0
symfony/polyfill-php70 Version ^1.0
Composer command for our command line client (download client) This client runs in each environment. You don't need a specific PHP version etc. The first 20 API calls are free. Standard composer command

The package bolt/session contains the following files

Loading the files please wait ....