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
Generated on May 7, 2024 via composer

beberlei/doctrineextensions v1.4.0

A set of extensions to Doctrine 2 that add support for additional query functions available in MySQL, Oracle, PostgreSQL and SQLite.
Package summary
Share
0
issues
2
licenses
24
MIT
1
BSD-3-Clause
Package created
25 Jan 2012
Version published
5 Feb 2024
Maintainers
1
Total deps
25
Direct deps
1
License
BSD-3-Clause

Issues

0
This package has no issues

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
24 Packages, Including:
doctrine/cache@2.2.0
doctrine/collections@2.2.2
doctrine/common@3.4.4
doctrine/dbal@3.8.4
doctrine/deprecations@1.1.3
doctrine/event-manager@2.0.0
doctrine/inflector@2.0.10
doctrine/instantiator@2.0.0
doctrine/lexer@3.0.1
doctrine/orm@2.19.5
doctrine/persistence@3.3.2
psr/cache@3.0.0
psr/container@2.0.2
psr/log@3.0.0
symfony/console@v7.0.7
symfony/deprecation-contracts@v3.5.0
symfony/polyfill-ctype@v1.29.0
symfony/polyfill-intl-grapheme@v1.29.0
symfony/polyfill-intl-normalizer@v1.29.0
symfony/polyfill-mbstring@v1.29.0
symfony/polyfill-php72@v1.29.0
symfony/polyfill-php80@v1.29.0
symfony/service-contracts@v3.5.0
symfony/string@v7.0.7

BSD 3-Clause "New" or "Revised" License

Permissive
OSI Approved
This is a human-readable summary of (and not a substitute for) the license. Disclaimer.
Can
commercial-use
modify
distribute
place-warranty
Cannot
use-trademark
hold-liable
Must
include-copyright
include-license
1 Packages, Including:
beberlei/doctrineextensions@v1.4.0
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

1
All Dependencies CSV
ⓘ This is a list of beberlei/doctrineextensions 's direct dependencies. Data on all dependencies, including transitive ones, is available via CSV download.
NameVersionSizeLicenseTypeVulnerabilities
doctrine/orm2.19.5-MIT
prod

Visualizations

Frequently Asked Questions

What does beberlei/doctrineextensions do?

The Beberlei DoctrineExtensions pack is a set of extensions to Doctrine 2 that provide additional support for query functions available in MySQL, Oracle, PostgreSQL, and SQLite. This package extends Doctrine’s functionality to include a wide range of functions specific to these databases, ranging from date and time functions to mathematical and comparison operations.

How do you use beberlei/doctrineextensions?

Using Beberlei DoctrineExtensions is relatively straightforward. After installing the package via Composer by running composer require beberlei/doctrineextensions, it can be incorporated into your project. If you are using DoctrineExtensions with Symfony, you can follow the guidance presented in Symfony's documentation on how to register custom DQL functions.

Here is a sample code for using the DoctrineExtensions standalone:

<?php

$classLoader = new \Doctrine\Common\ClassLoader('DoctrineExtensions', '/path/to/extensions');
$classLoader->register();

This snippet is used to initialize the autoloader. For more comprehensive use cases, it is recommended to refer to the Doctrine DQL User Defined Functions documentation.

Where are the beberlei/doctrineextensions docs?

The Beberlei DoctrineExtensions documentation is not explicitly hosted on a separate platform. Instead, all the necessary information including installation, usage, and notes is available in the README file of its GitHub repository. The repository does provide a config directory with sample Symfony configurations. For a more detailed explanation of how to use DoctrineExtensions and user-defined functions, the official Doctrine DQL User Defined Functions documentation is also a useful resource.