Home
Docs
GitHub
Pricing
Blog
Log In

Run Sandworm Audit for your App

Get started
Generated on May 5, 2024 via composer

symfony/polyfill-intl-normalizer v1.28.0

Symfony polyfill for intl's Normalizer class and related functions
Package summary
Share
0
issues
1
license
1
MIT
Package created
25 Oct 2015
Version published
26 Jan 2023
Maintainers
1
Total deps
1
Direct deps
0
License
MIT

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
1 Packages, Including:
symfony/polyfill-intl-normalizer@v1.28.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

0
All Dependencies CSV
โ“˜ This is a list of symfony/polyfill-intl-normalizer 's direct dependencies. Data on all dependencies, including transitive ones, is available via CSV download.
NameVersionSizeLicenseTypeVulnerabilities

Visualizations

Frequently Asked Questions

What does symfony/polyfill-intl-normalizer do?

The Symfony/polyfill-intl-normalizer provides a fallback implementation for the Normalizer class and related functions provided by the Intl PHP extension. This functionality is essential for internationalization and globalization in web applications as it helps to convert text into a normalized form, which is an important step for many Unicode algorithms.

How do you use symfony/polyfill-intl-normalizer?

To use the Symfony/polyfill-intl-normalizer, you can start by installing it through Composer by running this command:

composer require symfony/polyfill-intl-normalizer

After that, the Normalizer class and functions would be available globally in your PHP application, and you can utilize them the same way youโ€™d work with the original Normalizer class and functions from the Intl extension. Please refer to the PHP official documentation for Normalizer class to understand how to use its methods.

For example, you can normalize a string to the Canonical Decomposition form as follows:

$string = 'Your string here';
$normalizedString = \Normalizer::normalize($string, \Normalizer::FORM_D);

Where are the symfony/polyfill-intl-normalizer docs?

The documentation for Symfony/polyfill-intl-normalizer can be found in the README file of the main Symfony polyfill project on Github. It provides a general overview and usage information about all polyfills provided by Symfony including the intl-normalizer. For more specific usage examples and details about the functionality, you can refer to the PHP official documentation for the Intl extension and the Normalizer class.