Home
Docs
GitHub
Pricing
Blog
Log In

Run Sandworm Audit for your App

Get started
Hold on, we're currently generating a fresh version of this report
This package has been abandoned.
Generated on Apr 28, 2024 via composer

doctrine/doctrine-cache-bundle 1.4.0

Symfony Bundle for Doctrine Cache
Package summary
Share
1
issue
1
high severity
meta
1
1
license
14
MIT
Package created
21 Feb 2014
Version published
29 Nov 2019
Maintainers
2
Total deps
14
Direct deps
3
License
MIT

Issues

1

1 high severity issue

high
via: doctrine/doctrine-cache-bundle@1.4.0
Collapse
Expand

Licenses

MIT License

Permissive
OSI Approved
This is a human-readable summary of (and not a substitute for) the license. Disclaimer.
Can
commercial-use
modify
distribute
sublicense
private-use
Cannot
hold-liable
Must
include-copyright
include-license
14 Packages, Including:
doctrine/cache@1.13.0
doctrine/deprecations@1.1.3
doctrine/doctrine-cache-bundle@1.4.0
doctrine/event-manager@1.2.0
doctrine/inflector@1.4.4
doctrine/persistence@3.3.2
psr/cache@3.0.0
psr/container@1.1.2
symfony/deprecation-contracts@v3.4.0
symfony/doctrine-bridge@v4.4.48
symfony/polyfill-ctype@v1.29.0
symfony/polyfill-mbstring@v1.29.0
symfony/polyfill-php80@v1.29.0
symfony/service-contracts@v2.5.3
Disclaimer

This deed highlights only some of the key features and terms of the actual license. It is not a license and has no legal value. You should carefully review all of the terms and conditions of the actual license before using the licensed material.

Sandworm is not a law firm and does not provide legal services. Distributing, displaying, or linking to this deed or the license that it summarizes does not create a lawyer-client or any other relationship.

Direct Dependencies

3
All Dependencies CSV
β“˜ This is a list of doctrine/doctrine-cache-bundle 's direct dependencies. Data on all dependencies, including transitive ones, is available via CSV download.
NameVersionSizeLicenseTypeVulnerabilities
doctrine/cache1.13.0-MIT
prod
doctrine/inflector1.4.4-MIT
prod
symfony/doctrine-bridgev4.4.48-MIT
prod

Visualizations

Frequently Asked Questions

What does doctrine/doctrine-cache-bundle do?

DoctrineCacheBundle or doctrine/doctrine-cache-bundle is a Symfony bundle designed to integrate Doctrine Cache into your Symfony project. The bundle provides convenient means for using caching mechanisms popular in PHP, like APC, Memcache, and Redis among others, to help boost performance. However, it's important to note that this bundle is deprecated and won't be updated for Symfony 5 and beyond, and the developers recommend using Symfony's built-in caching component symfony/cache instead.

How do you use doctrine/doctrine-cache-bundle?

How to use DoctrineCacheBundle usually involves installing it via composer and then enabling it in the kernel of your Symfony project. Here's a simple example:

  1. Installation via Composer:
composer require doctrine/doctrine-cache-bundle
  1. Enable it in the AppKernel class:
class AppKernel extends Kernel
{
    public function registerBundles()
    {
        $bundles = array(
            ...
            new Doctrine\Bundle\DoctrineCacheBundle\DoctrineCacheBundle(),
            ...
        );
    }
}

However, due its deprecation, the developers recommend configuring your caching services manually or switching to symfony/cache.

Where are the doctrine/doctrine-cache-bundle docs?

Currently no official, separate documentation for DoctrineCacheBundle exists. Information is contained within the README file in the GitHub repository: DoctrineCacheBundle GitHub. As the bundle is deprecated and won't be updated further, users are encouraged to use Symfony's official cache component and consult corresponding Symfony Cache documentation.