Home
Docs
GitHub
Pricing
Blog
Log In

Run Sandworm Audit for your App

Get started
This package has been abandoned. Use laminas/laminas-uri instead.
Generated on Oct 12, 2023 via composer

zendframework/zend-uri 2.7.1

A component that aids in manipulating and validating Β» Uniform Resource Identifiers (URIs)
Package summary
Share
5
issues
5
high severity
meta
5
2
licenses
4
BSD-3-Clause
2
MIT
Package created
7 Feb 2013
Version published
7 Oct 2019
Maintainers
1
Total deps
6
Direct deps
2
License
BSD-3-Clause

Issues

5

5 high severity issues

high
via: zendframework/zend-validator@2.13.0
via: zendframework/zend-escaper@2.6.1
via: zendframework/zend-validator@2.13.0
via: zendframework/zend-uri@2.7.1
via: zendframework/zend-validator@2.13.0
Collapse
Expand

Licenses

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
4 Packages, Including:
zendframework/zend-escaper@2.6.1
zendframework/zend-stdlib@3.2.1
zendframework/zend-uri@2.7.1
zendframework/zend-validator@2.13.0

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
2 Packages, Including:
container-interop/container-interop@1.2.0
psr/container@1.1.2
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 zendframework/zend-uri 's direct dependencies. Data on all dependencies, including transitive ones, is available via CSV download.
NameVersionSizeLicenseTypeVulnerabilities
zendframework/zend-escaper2.6.18.68 kBBSD-3-Clause
prod
1
zendframework/zend-validator2.13.0295.62 kBBSD-3-Clause
prod
3

Visualizations

Frequently Asked Questions

What does zendframework/zend-uri do?

The zendframework/zend-uri is a PHP composer package that helps in the manipulation and validation of Uniform Resource Identifiers or URIs. This high-functional tool primarily assists other components like zend-http while being useful as a standalone utility. Its primary function is to ensure URI correctness and utility in customized applications.

How do you use zendframework/zend-uri?

To use the zendframework/zend-uri package, you should first install it via composer. Open your terminal and navigate to your project directory, then execute the following command:

$ composer require zendframework/zend-uri

Once the package is installed, you can utilize it within your PHP code to manipulate or validate any URIs you're working with. For example:

<?php
// You can create a new Uri and check some of its properties
use Zend\Uri\Uri;

$uri = new Uri('http://username:password@hostname:9090/path?arg=value#anchor');
echo $uri->getScheme(); // prints 'http'
echo $uri->getUser(); // prints 'username'

Where are the zendframework/zend-uri docs?

You can find the documentation for zendframework/zend-uri online at this URL: https://docs.zendframework.com/zend-uri/. This comprehensive and user-friendly guide provides detailed help on getting started with the package, its methods, and various ways to implement it efficiently in your projects.