Home
Docs
GitHub
Pricing
Blog
Log In

Run Sandworm Audit for your App

Get started
Generated on Jun 1, 2024 via composer

pear/pear-core-minimal v1.10.1

Minimal set of PEAR core files to be used as composer dependency
Package summary
Share
0
issues
2
licenses
2
BSD-2-Clause
1
BSD-3-Clause
Package created
10 Feb 2015
Version published
17 Oct 2015
Maintainers
3
Total deps
3
Direct deps
2
License
BSD-3-Clause

Issues

0
This package has no issues

Licenses

BSD 2-Clause "Simplified" 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
hold-liable
Must
include-copyright
include-license
2 Packages, Including:
pear/console_getopt@v1.4.3
pear/pear_exception@v1.0.2

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:
pear/pear-core-minimal@v1.10.1
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

2
All Dependencies CSV
β“˜ This is a list of pear/pear-core-minimal 's direct dependencies. Data on all dependencies, including transitive ones, is available via CSV download.
NameVersionSizeLicenseTypeVulnerabilities
pear/console_getoptv1.4.39.93 kBBSD-2-Clause
prod
pear/pear_exceptionv1.0.25.79 kBBSD-2-Clause
prod

Visualizations

Frequently Asked Questions

What does pear/pear-core-minimal do?

The pear/pear-core-minimal is a Composer package that serves as a minimal set of the PEAR core files often utilized in PEAR packages. This lightweight version of the PEAR core follows the pear-core repository and receives updates whenever a new PEAR version is released. By introducing a subset of crucial elements, this package is designed to function efficiently as a Composer package dependency.

How do you use pear/pear-core-minimal?

To utilize pear/pear-core-minimal, you first need to incorporate it as a dependency in your Composer package. This can be done through the Composer command line interface. For example, you can run:

composer require pear/pear-core-minimal

Following the installation, you'll often find that these core files: OS/Guess.php, PEAR.php, PEAR/Error.php, PEAR/ErrorStack.php, and System.php will make up part of your development toolset. Note that PEAR/Error.php is just a dummy file that includes PEAR.php to ensure uninterrupted functioning of autoloaders.

Therefore, you can now use the PEAR functionality or any other class from the core minimal set like this:

require 'vendor/autoload.php';

use PEAR;

// now you can use PEAR methods
PEAR::someMethod();

Where are the pear/pear-core-minimal docs?

The core documentation for pear/pear-core-minimal can be found in its GitHub repository at https://github.com/pear/pear-core-minimal.git. Here, you can access detailed information about the package including its unique functionalities and the updates that follow each new PEAR version release. However, since this is a minimal set, it takes reference from the main pear-core repository, which might provide deeper insight into how the full core works. Ensure to check the README file in the aforementioned repository for basic info and usage. For more detailed usage, refer to the PEAR documentation at http://pear.php.net/manual/.